From a97d4b6af5acf7b410d950717d198a9a7ceab45d Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Fri, 3 Feb 2017 12:48:03 +0100 Subject: [PATCH 01/53] lv_dispi: consider an object dragged only if it is really moved --- lv_obj/lv_dispi.c | 28 +++++++++++++++++++--------- lv_obj/lv_dispi.h | 1 + 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/lv_obj/lv_dispi.c b/lv_obj/lv_dispi.c index efdde9feb..1dd643277 100644 --- a/lv_obj/lv_dispi.c +++ b/lv_obj/lv_dispi.c @@ -177,6 +177,7 @@ static void dispi_proc_point(lv_dispi_t * dispi_p, cord_t x, cord_t y) if(lv_dispi_reset_now != false) { dispi_p->act_obj = NULL; dispi_p->last_obj = NULL; + dispi_p->drag_range_out = 0; dispi_p->drag_in_prog = 0; dispi_p->long_press_sent = 0; dispi_p->press_time_stamp = 0; @@ -219,7 +220,7 @@ static void dispi_proc_press(lv_dispi_t * dispi_p) pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } /*If there is last object but it can not be dragged also search*/ - else if(lv_obj_get_drag(dispi_p->act_obj) == false) {/*Now act_obj != NULL*/ + else if(dispi_p->drag_in_prog == 0) {/*Now act_obj != NULL*/ pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } /*If a dragable object was the last then keep it*/ @@ -244,6 +245,7 @@ static void dispi_proc_press(lv_dispi_t * dispi_p) * It is necessary to count the long press time.*/ dispi_p->press_time_stamp = systick_get(); dispi_p->long_press_sent = 0; + dispi_p->drag_range_out = 0; dispi_p->drag_in_prog = 0; dispi_p->vect_sum.x = 0; dispi_p->vect_sum.y = 0; @@ -402,7 +404,7 @@ static void dispi_drag(lv_dispi_t * dispi_p) if(lv_obj_get_drag(drag_obj) == false) return; /*If still there is no drag then count the movement*/ - if(dispi_p->drag_in_prog == 0) { + if(dispi_p->drag_range_out == 0) { dispi_p->vect_sum.x += dispi_p->vect.x; dispi_p->vect_sum.y += dispi_p->vect.y; @@ -410,21 +412,29 @@ static void dispi_drag(lv_dispi_t * dispi_p) if(MATH_ABS(dispi_p->vect_sum.x) >= LV_DISPI_DRAG_LIMIT || MATH_ABS(dispi_p->vect_sum.y) >= LV_DISPI_DRAG_LIMIT) { - dispi_p->drag_in_prog = 1; - drag_obj->signal_f(drag_obj, - LV_SIGNAL_DRAG_BEGIN, dispi_p); + dispi_p->drag_range_out = 1; } } /*If the drag limit is stepped over then handle the dragging*/ - if(dispi_p->drag_in_prog != 0) { + if(dispi_p->drag_range_out != 0) { /*Set new position if the vector is not zero*/ if(dispi_p->vect.x != 0 || dispi_p->vect.y != 0) { /*Get the coordinates of the object end modify them*/ - cord_t act_x = lv_obj_get_x(drag_obj) + dispi_p->vect.x; - cord_t act_y = lv_obj_get_y(drag_obj) + dispi_p->vect.y; - lv_obj_set_pos(drag_obj, act_x, act_y); + cord_t act_x = lv_obj_get_x(drag_obj); + cord_t act_y = lv_obj_get_y(drag_obj); + + lv_obj_set_pos(drag_obj, act_x + dispi_p->vect.x, act_y + dispi_p->vect.y); + + /*Set the drag in progress flag if the object is really moved*/ + if(lv_obj_get_x(drag_obj) != act_x || lv_obj_get_y(drag_obj) != act_y) { + if(dispi_p->drag_range_out == 0) { /*Send the drag begin signal on first move*/ + drag_obj->signal_f(drag_obj, LV_SIGNAL_DRAG_BEGIN, dispi_p); + } + dispi_p->drag_in_prog = 1; + } + } } } diff --git a/lv_obj/lv_dispi.h b/lv_obj/lv_dispi.h index 51915c264..39243d1be 100644 --- a/lv_obj/lv_dispi.h +++ b/lv_obj/lv_dispi.h @@ -31,6 +31,7 @@ typedef struct uint32_t lpr_rep_time_stamp; /*Flags*/ + uint8_t drag_range_out :1; uint8_t drag_in_prog :1; uint8_t long_press_sent :1; uint8_t wait_release :1; From 7f799100921f112bd0c2b503512e8b9f88f59e3d Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Fri, 3 Feb 2017 12:48:22 +0100 Subject: [PATCH 02/53] lv_pb: slider function added --- lv_objx/lv_pb.c | 186 ++++++++++++++++++++++++++++++++++++++++++------ lv_objx/lv_pb.h | 27 ++++--- 2 files changed, 181 insertions(+), 32 deletions(-) diff --git a/lv_objx/lv_pb.c b/lv_objx/lv_pb.c index bee074166..8bf222153 100644 --- a/lv_objx/lv_pb.c +++ b/lv_objx/lv_pb.c @@ -20,6 +20,8 @@ *********************/ #define LV_PB_TXT_MAX_LENGTH 64 #define LV_PB_DEF_FORMAT "%d %%" +#define LV_PB_DEF_WIDTH (120 * LV_DOWNSCALE) +#define LV_PB_DEF_HEIGHT (40 * LV_DOWNSCALE) /********************** * TYPEDEFS @@ -35,6 +37,7 @@ static void lv_pbs_init(void); * STATIC VARIABLES **********************/ static lv_pbs_t lv_pbs_def; +static lv_pbs_t lv_pbs_slider; static lv_design_f_t ancestor_design_f; /********************** @@ -67,6 +70,8 @@ lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy) ext->min_value = 0; ext->max_value = 100; ext->act_value = 0; + ext->tmp_value = 0; + ext->set_in_prog = 0; ext->format_str = NULL; ext->label = NULL; @@ -85,6 +90,7 @@ lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy) ext->label = lv_label_create(new_pb, NULL); lv_rect_set_layout(new_pb, LV_RECT_LAYOUT_CENTER); + lv_obj_set_size(new_pb, LV_PB_DEF_WIDTH, LV_PB_DEF_HEIGHT); lv_obj_set_style(new_pb, lv_pbs_get(LV_PBS_DEF, NULL)); lv_pb_set_value(new_pb, ext->act_value); @@ -124,6 +130,8 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) if(valid != false) { lv_pb_ext_t * ext = lv_obj_get_ext(pb); lv_pbs_t * style = lv_obj_get_style(pb); + point_t p; + char buf[LV_PB_TXT_MAX_LENGTH]; switch(sign) { case LV_SIGNAL_CORD_CHG: @@ -136,6 +144,42 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) case LV_SIGNAL_STYLE_CHG: lv_obj_set_style(ext->label, &style->label); lv_pb_set_value(pb, lv_pb_get_value(pb)); + break; + case LV_SIGNAL_PRESSING: + ext->set_in_prog = 1; + lv_dispi_get_point(param, &p); + if(lv_obj_get_width(pb) > lv_obj_get_height(pb)) { + p.x -= pb->cords.x1 + style->btn_size / 2; + ext->tmp_value = (int32_t) ((int32_t) p.x * (ext->max_value - ext->min_value + 1)) / + (lv_obj_get_width(pb) - style->btn_size); + } else { + p.y -= pb->cords.y1 + style->btn_size / 2; + ext->tmp_value = (int32_t) ((int32_t) p.y * (ext->max_value - ext->min_value + 1)) / + (lv_obj_get_height(pb) - style->btn_size); + + /*Invert the value: greater y means smaller value + * because it on a lower position on the screen*/ + ext->tmp_value = ext->max_value - ext->tmp_value; + } + + ext->tmp_value = ext->tmp_value > ext->max_value ? ext->max_value : ext->tmp_value; + ext->tmp_value = ext->tmp_value < ext->min_value ? ext->min_value : ext->tmp_value; + + sprintf(buf, ext->format_str, ext->tmp_value); + lv_label_set_text(ext->label, buf); + + lv_obj_inv(pb); + break; + case LV_SIGNAL_PRESS_LOST: + ext->set_in_prog = 0; + ext->tmp_value = ext->act_value; + sprintf(buf, ext->format_str, ext->act_value); + lv_label_set_text(ext->label, buf); + lv_obj_inv(pb); + break; + case LV_SIGNAL_RELEASED: + lv_pb_set_value(pb, ext->tmp_value); + ext->set_in_prog = 0; break; default: break; @@ -154,11 +198,13 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) * @param pb pointer to a progress bar object * @param value new value */ -void lv_pb_set_value(lv_obj_t * pb, uint16_t value) +void lv_pb_set_value(lv_obj_t * pb, int16_t value) { lv_pb_ext_t * ext = lv_obj_get_ext(pb); ext->act_value = value > ext->max_value ? ext->max_value : value; + ext->act_value = ext->act_value < ext->min_value ? ext->min_value : ext->act_value; + ext->tmp_value = ext->act_value; char buf[LV_PB_TXT_MAX_LENGTH]; sprintf(buf, ext->format_str, ext->act_value); lv_label_set_text(ext->label, buf); @@ -172,7 +218,7 @@ void lv_pb_set_value(lv_obj_t * pb, uint16_t value) * @param min minimum value * @param max maximum value */ -void lv_pb_set_min_max_value(lv_obj_t * pb, uint16_t min, uint16_t max) +void lv_pb_set_min_max_value(lv_obj_t * pb, int16_t min, int16_t max) { lv_pb_ext_t * ext = lv_obj_get_ext(pb); ext->max_value = max; @@ -207,7 +253,7 @@ void lv_pb_set_format_str(lv_obj_t * pb, const char * format) * @param pb pointer to a progress bar object * @return the value of the progress bar */ -uint16_t lv_pb_get_value(lv_obj_t * pb) +int16_t lv_pb_get_value(lv_obj_t * pb) { lv_pb_ext_t * ext = lv_obj_get_ext(pb); return ext->act_value; @@ -235,6 +281,9 @@ lv_pbs_t * lv_pbs_get(lv_pbs_builtin_t style, lv_pbs_t * copy) case LV_PBS_DEF: style_p = &lv_pbs_def; break; + case LV_PBS_SLIDER: + style_p = &lv_pbs_slider; + break; default: style_p = &lv_pbs_def; } @@ -273,47 +322,138 @@ static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mo ancestor_design_f(pb, mask, mode); lv_pb_ext_t * ext = lv_obj_get_ext(pb); + lv_pbs_t * style = lv_obj_get_style(pb); area_t bar_area; + area_t tmp_area; uint32_t tmp; area_cpy(&bar_area, &pb->cords); + area_cpy(&tmp_area, &pb->cords); cord_t w = lv_obj_get_width(pb); cord_t h = lv_obj_get_height(pb); if(w >= h) { - tmp = (uint32_t)ext->act_value * w; - tmp = (uint32_t) tmp / (ext->max_value - ext->min_value); - bar_area.x2 = bar_area.x1 + (cord_t) tmp; + tmp = (int32_t)ext->act_value * (w - style->btn_size); + tmp = (int32_t) tmp / (ext->max_value - ext->min_value); + bar_area.x2 = bar_area.x1 + style->btn_size + (cord_t) tmp; + + tmp = (int32_t)ext->tmp_value * (w - style->btn_size); + tmp = (int32_t) tmp / (ext->max_value - ext->min_value); + tmp_area.x2 = tmp_area.x1 + style->btn_size + (cord_t) tmp; } else { - tmp = (uint32_t)ext->act_value * h; - tmp = (uint32_t) tmp / (ext->max_value - ext->min_value); - bar_area.y1 = bar_area.y2 - (cord_t) tmp; + tmp = (int32_t)ext->act_value * (h - style->btn_size); + tmp = (int32_t) tmp / (ext->max_value - ext->min_value); + bar_area.y1 = bar_area.y2 - style->btn_size - (cord_t) tmp; + + tmp = (int32_t)ext->tmp_value * (h - style->btn_size); + tmp = (int32_t) tmp / (ext->max_value - ext->min_value); + tmp_area.y1 = tmp_area.y2 - style->btn_size - (cord_t) tmp; } - lv_pbs_t * style_p = lv_obj_get_style(pb); - lv_draw_rect(&bar_area, mask, &style_p->bar, OPA_COVER); + + /*Draw the main bar*/ + opa_t opa = lv_obj_get_opa(pb); + lv_draw_rect(&bar_area, mask, &style->bar, opa); + + /*Draw a "phantom" bar when setting by a display input*/ + if(ext->set_in_prog != 0) { + lv_rects_t tmp_rects; + memcpy(&tmp_rects, &style->bar, sizeof(lv_rects_t)); + tmp_rects.objs.color = style->tmp_bar_mcolor; + tmp_rects.gcolor = style->tmp_bar_gcolor; + lv_draw_rect(&tmp_area, mask, &tmp_rects, (opa * style->tmp_bar_opa) / 100); + } + + /*Draw a button if its size is not 0*/ + if(style->btn_size != 0) { + lv_rects_t tmp_rects; + memcpy(&tmp_rects, &style->btn, sizeof(lv_rects_t)); + + if(w >= h) { + tmp_area.x1 = tmp_area.x2 - style->btn_size ; + + if(tmp_area.x1 < pb->cords.x1) { + tmp_area.x1 = pb->cords.x1; + tmp_area.x2 = tmp_area.x1 + style->btn_size; + } + + if(tmp_area.x2 > pb->cords.x2) { + tmp_area.x2 = pb->cords.x2; + tmp_area.x1 = tmp_area.x2 - style->btn_size; + } + } else { + tmp_area.y2 = tmp_area.y1 + style->btn_size ; + + if(tmp_area.y1 < pb->cords.y1) { + tmp_area.y1 = pb->cords.y1; + tmp_area.y2 = tmp_area.y1 + style->btn_size; + } + + if(tmp_area.y2 > pb->cords.y2) { + tmp_area.y2 = pb->cords.y2; + tmp_area.y1 = tmp_area.y2 - style->btn_size; + } + + } + lv_draw_rect(&tmp_area, mask, &tmp_rects, opa ); + } } return true; } /** - * Initialize the progess bar styles + * Set a new temporal (ghost) value on the progress bar + * @param pb pointer to a progress bar object + * @param value new value + */ +void lv_pb_set_tmp_value(lv_obj_t * pb, int16_t value) +{ + lv_pb_ext_t * ext = lv_obj_get_ext(pb); + ext->act_value = value > ext->max_value ? ext->max_value : value; + + char buf[LV_PB_TXT_MAX_LENGTH]; + sprintf(buf, ext->format_str, ext->act_value); + lv_label_set_text(ext->label, buf); + + lv_obj_inv(pb); +} + +/** + * Initialize the progress bar styles */ static void lv_pbs_init(void) { /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bg); /*Background*/ - lv_pbs_def.bg.objs.color = COLOR_WHITE; - lv_pbs_def.bg.gcolor = COLOR_SILVER, - lv_pbs_def.bg.bcolor = COLOR_BLACK; + lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bg); /*Background*/ + lv_pbs_def.bg.objs.color = COLOR_WHITE; + lv_pbs_def.bg.gcolor = COLOR_SILVER, + lv_pbs_def.bg.bcolor = COLOR_BLACK; - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bar); /*Bar*/ - lv_pbs_def.bar.objs.color = COLOR_LIME; - lv_pbs_def.bar.gcolor = COLOR_GREEN; - lv_pbs_def.bar.bcolor = COLOR_BLACK; + lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bar); /*Bar*/ + lv_pbs_def.bar.objs.color = COLOR_LIME; + lv_pbs_def.bar.gcolor = COLOR_GREEN; + lv_pbs_def.bar.bcolor = COLOR_BLACK; - lv_labels_get(LV_LABELS_DEF, &lv_pbs_def.label); - lv_pbs_def.label.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); - lv_pbs_def.label.line_space = 0; + lv_pbs_def.tmp_bar_mcolor = COLOR_YELLOW; + lv_pbs_def.tmp_bar_gcolor = COLOR_LIME; + lv_pbs_def.tmp_bar_opa = 80; + + lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.btn); /*Button*/ + lv_pbs_def.btn.objs.color = COLOR_WHITE; + lv_pbs_def.btn.gcolor = COLOR_GRAY; + lv_pbs_def.btn.bcolor = COLOR_GRAY; + lv_pbs_def.btn_size = 0; + + lv_labels_get(LV_LABELS_DEF, &lv_pbs_def.label); /*Label*/ + lv_pbs_def.label.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); + lv_pbs_def.label.line_space = 0; + + /*Slider style*/ + memcpy(&lv_pbs_slider, &lv_pbs_def, sizeof(lv_pbs_t)); + lv_pbs_slider.bg.round = LV_RECT_CIRCLE; + lv_pbs_slider.bar.round = LV_RECT_CIRCLE; + lv_pbs_slider.btn.round = LV_RECT_CIRCLE; + lv_pbs_slider.btn_size = 40 * LV_DOWNSCALE; + lv_pbs_def.tmp_bar_opa = 80; } #endif diff --git a/lv_objx/lv_pb.h b/lv_objx/lv_pb.h index 20f0f8d28..cbf540a57 100644 --- a/lv_objx/lv_pb.h +++ b/lv_objx/lv_pb.h @@ -23,6 +23,7 @@ #include "../lv_obj/lv_obj.h" #include "lv_rect.h" +#include "lv_btn.h" #include "lv_label.h" /********************* @@ -38,11 +39,13 @@ typedef struct { lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * label; /*Pointer to the label on the progress bar*/ - uint16_t act_value; /*Current value of the progress bar*/ - uint16_t min_value; /*Minimum value of the progress bar*/ - uint16_t max_value; /*Maximum value of the progress bar*/ - char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ + lv_obj_t * label; /*Pointer to the label on the progress bar*/ + int16_t act_value; /*Current value of the progress bar*/ + int16_t tmp_value; /*Value when settings from a display input*/ + int16_t min_value; /*Minimum value of the progress bar*/ + int16_t max_value; /*Maximum value of the progress bar*/ + char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ + uint8_t set_in_prog :1;/*Indicates the setting by display input is in progress*/ }lv_pb_ext_t; /*Style of progress bar*/ @@ -50,13 +53,19 @@ typedef struct { lv_rects_t bg; /*Style of the background (inherited)*/ lv_rects_t bar; /*Style of the bar*/ - lv_labels_t label; /*Style of the label*/ + lv_labels_t label; /*Style of the label*/ + lv_rects_t btn; /*Style of the button (it is rectangle but acts as a button)*/ + color_t tmp_bar_mcolor; /*Main color of temporal bar when settings by hand*/ + color_t tmp_bar_gcolor; /*Gradient color of temporal bar when settings by hand*/ + cord_t btn_size; /*Width or height of the button (depending on the orientation of the pb)*/ + uint8_t tmp_bar_opa; /*Opacity of temporal bar in percentage of the object opacity [%]*/ }lv_pbs_t; /*Built-in styles of progress bar*/ typedef enum { LV_PBS_DEF, + LV_PBS_SLIDER, }lv_pbs_builtin_t; /********************** @@ -84,7 +93,7 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param); * @param pb pointer to a progress bar object * @param value new value */ -void lv_pb_set_value(lv_obj_t * pb, uint16_t value); +void lv_pb_set_value(lv_obj_t * pb, int16_t value); /** * Set minimum and the maximum values of a progress bar @@ -92,7 +101,7 @@ void lv_pb_set_value(lv_obj_t * pb, uint16_t value); * @param min minimum value * @param max maximum value */ -void lv_pb_set_min_max_value(lv_obj_t * pb, uint16_t min, uint16_t max); +void lv_pb_set_min_max_value(lv_obj_t * pb, int16_t min, int16_t max); /** * Set format string for the label of the progress bar @@ -106,7 +115,7 @@ void lv_pb_set_format_str(lv_obj_t * pb, const char * format); * @param pb pointer to a progress bar object * @return the value of the progress bar */ -uint16_t lv_pb_get_value(lv_obj_t * pb); +int16_t lv_pb_get_value(lv_obj_t * pb); /** * Return with a pointer to a built-in style and/or copy it to a variable From 7c77ebe6e51671058a0891badd794096922f9469 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Fri, 3 Feb 2017 21:47:11 +0100 Subject: [PATCH 03/53] lv_pb: set default click = false --- lv_objx/lv_pb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lv_objx/lv_pb.c b/lv_objx/lv_pb.c index 8bf222153..109d7f095 100644 --- a/lv_objx/lv_pb.c +++ b/lv_objx/lv_pb.c @@ -90,6 +90,7 @@ lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy) ext->label = lv_label_create(new_pb, NULL); lv_rect_set_layout(new_pb, LV_RECT_LAYOUT_CENTER); + lv_obj_set_click(new_pb, false); lv_obj_set_size(new_pb, LV_PB_DEF_WIDTH, LV_PB_DEF_HEIGHT); lv_obj_set_style(new_pb, lv_pbs_get(LV_PBS_DEF, NULL)); From 13f75de6ee9630b4c50252a168ff509a4d98aef6 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Fri, 3 Feb 2017 21:48:13 +0100 Subject: [PATCH 04/53] lv_app_notice: max notice num added --- lv_app/lv_app_util/lv_app_notice.c | 20 ++++++++++++++++++++ lv_conf_temp.h | 1 + 2 files changed, 21 insertions(+) diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index bb9d1d57a..b0e03e3d5 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -18,6 +18,18 @@ /********************* * DEFINES *********************/ +/*Add the required configurations*/ +#ifndef LV_APP_NOTICE_SHOW_TIME +#define LV_APP_NOTICE_SHOW_TIME 4000 +#endif + +#ifndef LV_APP_NOTICE_MAX_NUM +#define LV_APP_NOTICE_MAX_NUM 6 +#endif + +#ifndef LV_APP_NOTICE_MAX_LEN +#define LV_APP_NOTICE_MAX_LEN 256 +#endif /********************** * TYPEDEFS @@ -81,6 +93,14 @@ lv_obj_t * lv_app_notice_add(const char * format, ...) lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME); #endif + /*Delete the last children if there are too many*/ + uint32_t child_num = lv_obj_get_child_num(notice_h); + if(child_num > LV_APP_NOTICE_MAX_NUM) { + lv_obj_t * last_child = ll_get_tail(¬ice_h->child_ll); + lv_obj_del(last_child); + } + + /*make sure the notices are on the top*/ lv_obj_set_parent(notice_h, lv_scr_act()); return mbox; diff --git a/lv_conf_temp.h b/lv_conf_temp.h index 7568c4bca..d034ec0d8 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -194,6 +194,7 @@ /* App. utility settings */ #define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ +#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/ #define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ /*================== * LV APP X USAGE From 253fbe0ee5f4c480e1a16b25f877ddab13adba0f Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 08:52:59 +0100 Subject: [PATCH 05/53] lv_label: lv_label_append_text added --- lv_objx/lv_label.c | 26 ++++++++++++++++++++++++++ lv_objx/lv_label.h | 6 ++++++ 2 files changed, 32 insertions(+) diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index b0126b731..345d33dc2 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -236,6 +236,32 @@ void lv_label_set_text_static(lv_obj_t * label, const char * text) lv_label_refr_text(label); } + +/** + * Append a text to the label. The label current label text can not be static. + * @param label pointer to label object + * @param text pointe rto the new text + */ +void lv_label_append_text(lv_obj_t * label, const char * text) +{ + lv_label_ext_t * ext = lv_obj_get_ext(label); + + /*Can not append to static text*/ + if(ext->static_txt != 0) return; + + lv_obj_inv(label); + + /*Allocate space for the new text*/ + uint32_t old_len = strlen(ext->txt); + uint32_t app_len = strlen(text); + uint32_t new_len = app_len + old_len; + ext->txt = dm_realloc(ext->txt, new_len + 1); + memcpy(ext->txt + old_len, text, app_len); + ext->txt[new_len] = '\0'; + + lv_label_refr_text(label); +} + /** * Set the behavior of the label with longer text then the object size * @param label pointer to a label object diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index fcaaf11eb..330b0ba43 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -111,6 +111,12 @@ void lv_label_set_text_array(lv_obj_t * label, const char * array, uint16_t size */ void lv_label_set_text_static(lv_obj_t * label, const char * text); +/** + * Append a text to the label. The label current label text can not be static. + * @param label pointer to label object + * @param text pointe rto the new text + */ +void lv_label_append_text(lv_obj_t * label, const char * text); /** * Set the behavior of the label with longer text then the object size * @param label pointer to a label object From bff43f09a0dbc9d7bd5ade86a2f2777060a69aae Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 08:53:44 +0100 Subject: [PATCH 06/53] anim: template anim_t initilizaton added in anim.h --- lv_misc/anim.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lv_misc/anim.h b/lv_misc/anim.h index a617b57a7..3789d7a81 100644 --- a/lv_misc/anim.h +++ b/lv_misc/anim.h @@ -48,6 +48,21 @@ typedef struct uint8_t playback_now :1; /*Play back is in progress*/ }anim_t; +/*Example initialization +anim_t a; +a.var = obj; +a.start = lv_obj_get_height(obj); +a.end = new_height; +a.fp = (anim_fp_t)lv_obj_set_height; +a.path = anim_get_path(ANIM_PATH_LIN); +a.end_cb = NULL; +a.act_time = 0; +a.time = 200; +a.playback = 0; +a.playback_pause = 0; +a.repeat = 0; +a.repeat_pause = 0; + */ /********************** * GLOBAL PROTOTYPES **********************/ From 6abcbe01cda435b79b2e6f1450dff3ad4b4420d5 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 08:55:06 +0100 Subject: [PATCH 07/53] lv_win: lv_win_close_action bugfix --- lv_objx/lv_win.c | 8 ++++---- lv_objx/lv_win.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 577e883f0..c1a63df0c 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -219,15 +219,15 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ * A release action which can be assigned to a window control button to close it * @param btn pointer to the released button * @param dispi pointer to the caller display input - * @return always false because the button is deleted with the window + * @return always LV_ACTION_RES_INV because the button is deleted with the window */ -bool lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi) +lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi) { lv_obj_t * win = lv_win_get_from_ctrl_btn(btn); lv_obj_del(win); - return false; + return LV_ACTION_RES_INV; } /** @@ -368,7 +368,7 @@ static void lv_wins_init(void) lv_rects_get(LV_RECTS_TRANSP, &lv_wins_def.ctrl_holder); lv_wins_def.ctrl_holder.hpad = 0; lv_wins_def.ctrl_holder.vpad = 0; - lv_wins_def.ctrl_holder.opad = 10 * LV_DOWNSCALE; + lv_wins_def.ctrl_holder.opad = 5 * LV_DOWNSCALE; lv_btns_get(LV_BTNS_DEF, &lv_wins_def.ctrl_btn); lv_wins_def.ctrl_btn.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xD0, 0xE0, 0xF0); diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index c7b615c7d..85f2e480a 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -121,7 +121,7 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ * @param dispi pointer to the caller display input * @return always false because the button is deleted with the window */ -bool lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); +lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); /** * Set the title of a window From 5da17ebf5066ce04c24c05d84a5f8125a1c2995f Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 10:06:18 +0100 Subject: [PATCH 08/53] lv_ddlist: drop down list new object type added --- lv_objx/lv_ddlist.c | 410 ++++++++++++++++++++++++++++++++++++++++++++ lv_objx/lv_ddlist.h | 113 ++++++++++++ 2 files changed, 523 insertions(+) create mode 100644 lv_objx/lv_ddlist.c create mode 100644 lv_objx/lv_ddlist.h diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c new file mode 100644 index 000000000..83954065a --- /dev/null +++ b/lv_objx/lv_ddlist.c @@ -0,0 +1,410 @@ +/** + * @file lv_ddlist.c + * + */ + + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_DDLIST != 0 + +#include "lv_ddlist.h" +#include "../lv_draw/lv_draw.h" +#include "../lv_misc/anim.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_mode_t mode); +static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * dispi); +static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en); +static void lv_ddlist_pos_act_option(lv_obj_t * ddlist); +static void lv_ddlists_init(void); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_ddlists_t lv_ddlists_def; /*Default drop down list style*/ +static lv_design_f_t ancestor_design_f; +static const char * def_options[] = {"Option 1", "Option 2", "Option 3", ""}; +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a drop down list objects + * @param par pointer to an object, it will be the parent of the new drop down list + * @param copy pointer to a drop down list object, if not NULL then the new object will be copied from it + * @return pointer to the created drop down list + */ +lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor drop down list*/ + lv_obj_t * new_ddlist = lv_page_create(par, copy); + dm_assert(new_ddlist); + + /*Allocate the drop down list type specific extended data*/ + lv_ddlist_ext_t * ext = lv_obj_alloc_ext(new_ddlist, sizeof(lv_ddlist_ext_t)); + dm_assert(ext); + + /*Initialize the allocated 'ext' */ + ext->opt_label = NULL; + ext->cb = NULL; + ext->opened = 0; + ext->act_opt = 0; + + /*The signal and design functions are not copied so set them here*/ + if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_ddlist); + + lv_obj_set_signal_f(new_ddlist, lv_ddlist_signal); + lv_obj_set_design_f(new_ddlist, lv_ddlist_design); + + /*Init the new drop down list drop down list*/ + if(copy == NULL) { + ext->opt_label = lv_label_create(new_ddlist, NULL); + lv_rect_set_fit(new_ddlist, true, false); + lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); + lv_obj_set_style(new_ddlist, lv_ddlists_get(LV_DDLISTS_DEF, NULL)); + lv_ddlist_set_options(new_ddlist, def_options); + } + /*Copy an existing drop down list*/ + else { + lv_ddlist_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->opt_label = lv_label_create(new_ddlist, copy_ext->opt_label); + lv_label_set_text(ext->opt_label, lv_label_get_text(copy_ext->opt_label)); + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_ddlist); + } + + return new_ddlist; +} + +/** + * Signal function of the drop down list + * @param ddlist pointer to a drop down list object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_page_signal(ddlist, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_ddlists_t * style = lv_obj_get_style(ddlist); + + switch(sign) { + case LV_SIGNAL_CLEANUP: + /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ + break; + case LV_SIGNAL_STYLE_CHG: + lv_obj_set_style(ext->opt_label, &style->list_labels); + lv_ddlist_refr_size(ddlist, false); + break; + default: + break; + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set the options in a drop down list + * @param ddlist pointer to drop down list object + * @param options an array of strings wit the text of the options. + * The lest element has to be "" (empty string) + * E.g. const char * opts[] = {"apple", "banana", "orange", ""}; + */ +void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + lv_label_set_text(ext->opt_label, ""); + uint16_t i = 0; + while(options[i][0] != '\0') { + lv_label_append_text(ext->opt_label, options[i]); + if(options[i + 1][0] != '\0') lv_label_append_text(ext->opt_label, "\n"); + i++; + } + + lv_ddlist_refr_size(ddlist, false); +} + +/** + * Set a function to call when a new option is chosen + * @param ddlist pointer to drop down list + * @param cb pointer to a call back function. Its prototype is: + * parameter 1: pointer to the drop down list + * parameter 2: id of the chosen item (0 ... number of options - 1) + * return LV_ACTION_RES_INV if the drop down list is deleted in the function else LV_ACTION_RES_OK + */ +void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, uint16_t)) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->cb = cb; +} + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the options of a drop down list + * @param ddlist pointer to drop down list object + * @return the options separated by '\n'-s (E.g. "Option1\nOption2\nOption3") + */ +const char * lv_ddlist_get_options(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + return lv_label_get_text(ext->opt_label); +} + +/** + * Return with a pointer to a built-in style and/or copy it to a variable + * @param style a style name from lv_ddlists_builtin_t enum + * @param copy copy the style to this variable. (NULL if unused) + * @return pointer to an lv_ddlists_t style + */ +lv_ddlists_t * lv_ddlists_get(lv_ddlists_builtin_t style, lv_ddlists_t * copy) +{ + static bool style_inited = false; + + /*Make the style initialization if it is not done yet*/ + if(style_inited == false) { + lv_ddlists_init(); + style_inited = true; + } + + lv_ddlists_t *style_p; + + switch(style) { + case LV_DDLISTS_DEF: + style_p = &lv_ddlists_def; + break; + default: + style_p = &lv_ddlists_def; + } + + if(copy != NULL) { + if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_ddlists_t)); + else memcpy(copy, &lv_ddlists_def, sizeof(lv_ddlists_t)); + } + + return style_p; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Handle the drawing related tasks of the drop down lists + * @param ddlist pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_mode_t mode) +{ + /*Return false if the object is not covers the mask_p area*/ + if(mode == LV_DESIGN_COVER_CHK) { + return ancestor_design_f(ddlist, mask, mode); + } + /*Draw the object*/ + else if(mode == LV_DESIGN_DRAW_MAIN) { + ancestor_design_f(ddlist, mask, mode); + + /*If the list is opened draw a rectangle below the selected item*/ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + if(ext->opened != 0) { + lv_ddlists_t * style = lv_obj_get_style(ddlist); + const font_t * font = font_get(style->list_labels.font); + area_t rect_area; + rect_area.y1 = ext->opt_label->cords.y1; + rect_area.y1 += ext->act_opt * (font_get_height(font) + style->list_labels.line_space); + rect_area.y1 -= style->sel_rects.vpad; + + rect_area.y2 = rect_area.y1 + font_get_height(font) + 2 * style->sel_rects.vpad; + rect_area.x1 = ext->opt_label->cords.x1 - style->pages.scrl_rects.hpad; + rect_area.x2 = rect_area.x1 + lv_obj_get_width(lv_page_get_scrl(ddlist)); + + lv_draw_rect(&rect_area, mask, &style->sel_rects, OPA_COVER); + } + } + /*Post draw when the children are drawn*/ + else if(mode == LV_DESIGN_DRAW_POST) { + ancestor_design_f(ddlist, mask, mode); + + } + + return true; +} + +/** + * Called when a drop down list is released to open it or set new option + * @param ddlist pointer to a drop down list object + * @param dispi pointer to the called display input + * @return LV_ACTION_RES_INV if the ddlist it deleted in the user callback else LV_ACTION_RES_OK + */ +static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * dispi) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + if(ext->opened == 0) { /*Open the list*/ + ext->opened = 1; + lv_obj_set_drag(lv_page_get_scrl(ddlist), true); + } else { + ext->opened = 0; + /*Search the clicked option*/ + point_t p; + lv_dispi_get_point(dispi, &p); + p.x -= ext->opt_label->cords.x1; + p.y -= ext->opt_label->cords.y1; + uint16_t letter_i; + letter_i = lv_label_get_letter_on(ext->opt_label, &p); + + uint16_t new_opt = 0; + const char * txt = lv_label_get_text(ext->opt_label); + uint16_t i; + for(i = 0; i < letter_i; i++) { + if(txt[i] == '\n') new_opt ++; + } + + ext->act_opt = new_opt; + + if(ext->cb != NULL) { + ext->cb(ddlist, ext->act_opt); + } + } +#if LV_DDLIST_ANIM_TIME == 0 + lv_ddlist_refr_size(ddlist, false); +#else + lv_ddlist_refr_size(ddlist, true); +#endif + + return LV_ACTION_RES_OK; + +} + +/** + * Refresh the size of drop down list according its start (open or closed) + * @param ddlist poinr to a drop down list object + * @param anim_en true: refresh the size with an animation, false: do not use animations + */ +static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_ddlists_t * style = lv_obj_get_style(ddlist); + cord_t new_height; + if(ext->opened != 0) { /*Open the list*/ + new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->pages.bg_rects.vpad; + lv_obj_t * parent = lv_obj_get_parent(ddlist); + if(new_height + ddlist->cords.y1 > parent->cords.y2) { + new_height = parent->cords.y2 - ddlist->cords.y1; + } + } else { /*Close the list*/ + const font_t * font = font_get(style->list_labels.font); + new_height = font_get_height(font) + 2 * style->sel_rects.vpad; + } + if(anim_en == false) { + lv_obj_set_height(ddlist, new_height); + lv_ddlist_pos_act_option(ddlist); + } else { + anim_t a; + a.var = ddlist; + a.start = lv_obj_get_height(ddlist); + a.end = new_height; + a.fp = (anim_fp_t)lv_obj_set_height; + a.path = anim_get_path(ANIM_PATH_LIN); + a.end_cb = (anim_cb_t)lv_ddlist_pos_act_option; + a.act_time = 0; + a.time = LV_DDLIST_ANIM_TIME; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + + anim_create(&a); + } +} + +/** + * Set the position of list when it is closed to show the selected item + * @param ddlist pointer to a drop down list + */ +static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_ddlists_t * style = lv_obj_get_style(ddlist); + const font_t * font = font_get(style->list_labels.font); + + lv_obj_set_y(lv_page_get_scrl(ddlist), + -(ext->act_opt * (font_get_height(font) + style->list_labels.line_space) + + style->pages.scrl_rects.vpad) + style->sel_rects.vpad); + +} + +/** + * Initialize the built-in drop down list styles + */ +static void lv_ddlists_init(void) +{ + /*Default style*/ + lv_pages_get(LV_PAGES_SIMPLE, &lv_ddlists_def.pages); + lv_ddlists_def.pages.bg_rects.objs.color = COLOR_WHITE; + lv_ddlists_def.pages.bg_rects.gcolor = COLOR_SILVER; + lv_ddlists_def.pages.bg_rects.bcolor = COLOR_GRAY; + + lv_ddlists_def.pages.bg_rects.hpad = 0 * LV_DOWNSCALE; + lv_ddlists_def.pages.bg_rects.vpad = 0 * LV_DOWNSCALE; + lv_ddlists_def.pages.bg_rects.opad = 0; + + lv_ddlists_def.pages.scrl_rects.hpad = 5 * LV_DOWNSCALE; + lv_ddlists_def.pages.scrl_rects.vpad = 5 * LV_DOWNSCALE; + lv_ddlists_def.pages.scrl_rects.opad = 0 * LV_DOWNSCALE; + + lv_ddlists_def.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + + lv_labels_get(LV_LABELS_DEF, &lv_ddlists_def.list_labels); + lv_ddlists_def.list_labels.line_space = 15 * LV_DOWNSCALE; + + lv_rects_get(LV_RECTS_DEF, &lv_ddlists_def.sel_rects); + lv_ddlists_def.sel_rects.bwidth = 0; + lv_ddlists_def.sel_rects.round = 0; + lv_ddlists_def.sel_rects.vpad = 5 * LV_DOWNSCALE; +} + +#endif diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h new file mode 100644 index 000000000..a793e8942 --- /dev/null +++ b/lv_objx/lv_ddlist.h @@ -0,0 +1,113 @@ +/** + * @file lv_ddlist.h + * + */ + +#ifndef LV_DDLIST_H +#define LV_DDLIST_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_DDLIST != 0 + +#include "../lv_obj/lv_obj.h" +#include "../lv_objx/lv_page.h" +#include "../lv_objx/lv_label.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/*Data of drop down list*/ +typedef struct +{ + lv_page_ext_t page; /*Ext. of ancestor*/ + /*New data for this type */ + lv_obj_t * opt_label; /*Label for the options*/ + lv_action_res_t (*cb)(lv_obj_t *, uint16_t); + uint16_t act_opt; + uint8_t opened :1; +}lv_ddlist_ext_t; + +/*Style of drop down list*/ +typedef struct +{ + lv_pages_t pages; /*Style of ancestor*/ + /*New style element for this type */ + lv_rects_t sel_rects; + lv_labels_t list_labels; +}lv_ddlists_t; + +/*Built-in styles of drop down list*/ +typedef enum +{ + LV_DDLISTS_DEF, +}lv_ddlists_builtin_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a drop down list objects + * @param par pointer to an object, it will be the parent of the new drop down list + * @param copy pointer to a drop down list object, if not NULL then the new object will be copied from it + * @return pointer to the created drop down list + */ +lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the drop down list + * @param ddlist pointer to a drop down list object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param); + +/** + * Set the options in a drop down list + * @param ddlist pointer to drop down list object + * @param options an array of strings wit the text of the options. + * The lest element has to be "" (empty string) + * E.g. const char * opts[] = {"apple", "banana", "orange", ""}; + */ +void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options); + +/** + * Set a function to call when a new option is chosen + * @param ddlist pointer to drop down list + * @param cb pointer to a call back function. Its prototype is: + * parameter 1: pointer to the drop down list + * parameter 2: id of the chosen item (0 ... number of options - 1) + * return LV_ACTION_RES_INV if the drop down list is deleted in the function else LV_ACTION_RES_OK + */ +void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, uint16_t)); + +/** + * Get the options of a drop down list + * @param ddlist pointer to drop down list object + * @return the options separated by '\n'-s (E.g. "Option1\nOption2\nOption3") + */ +const char * lv_ddlist_get_options(lv_obj_t * ddlist); + +/** + * Return with a pointer to a built-in style and/or copy it to a variable + * @param style a style name from lv_ddlists_builtin_t enum + * @param copy copy the style to this variable. (NULL if unused) + * @return pointer to an lv_ddlists_t style + */ +lv_ddlists_t * lv_ddlists_get(lv_ddlists_builtin_t style, lv_ddlists_t * copy); + +/********************** + * MACROS + **********************/ + +#endif + +#endif From ca9b423f7003bb8a0468418d45835916ebfbc941 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 10:07:25 +0100 Subject: [PATCH 09/53] Minor updates after ddlist added --- lv_conf_temp.h | 6 ++++++ lv_objx/lv_objx_templ.c | 9 +++++++++ lvgl.h | 1 + 3 files changed, 16 insertions(+) diff --git a/lv_conf_temp.h b/lv_conf_temp.h index d034ec0d8..0c37d4cd4 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -139,6 +139,12 @@ /*Button matrix (dependencies: lv_rect, lv_label)*/ #define USE_LV_BTNM 1 +/*Drop down list (dependencies: lv_page, lv_btn_t, lv_label_t)*/ +#define USE_LV_DDLIST 1 +#if USE_LV_DDLIST != 0 +#define LV_DDLIST_ANIM_TIME 100 /*DDL open/close animation in milliseconds (0: disable animation)*/ +#endif + /*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/ #define USE_LV_WIN 1 diff --git a/lv_objx/lv_objx_templ.c b/lv_objx/lv_objx_templ.c index ed17d2cb6..fc83e8615 100644 --- a/lv_objx/lv_objx_templ.c +++ b/lv_objx/lv_objx_templ.c @@ -121,11 +121,20 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param) * Setter functions *====================*/ +/* + * New object specific "set" function comes here + */ + /*===================== * Getter functions *====================*/ +/* + * New object specific "get" function comes here + */ + + /** * Return with a pointer to a built-in style and/or copy it to a variable * @param style a style name from lv_templs_builtin_t enum diff --git a/lvgl.h b/lvgl.h index 850121bf2..6e7d7a04c 100644 --- a/lvgl.h +++ b/lvgl.h @@ -41,6 +41,7 @@ #include "lv_objx/lv_pb.h" #include "lv_objx/lv_led.h" #include "lv_objx/lv_btnm.h" +#include "lv_objx/lv_ddlist.h" #include "lv_objx/lv_ta.h" #include "lv_objx/lv_win.h" #include "lv_objx/lv_mbox.h" From a2173ea4fea68e934c1cffb58dc8bc84bbb26c81 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 16:05:02 +0100 Subject: [PATCH 10/53] lv_ddlist: imporvement and bugfixes --- lv_objx/lv_ddlist.c | 81 ++++++++++++++++++++++++++++++++++++++++----- lv_objx/lv_ddlist.h | 35 ++++++++++++++++++-- 2 files changed, 105 insertions(+), 11 deletions(-) diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 83954065a..929497abb 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -69,7 +69,8 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) ext->opt_label = NULL; ext->cb = NULL; ext->opened = 0; - ext->act_opt = 0; + ext->auto_size = 0; + ext->sel_opt = 0; /*The signal and design functions are not copied so set them here*/ if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_ddlist); @@ -79,6 +80,8 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new drop down list drop down list*/ if(copy == NULL) { + lv_obj_set_drag(lv_page_get_scrl(new_ddlist), false); + ext->opt_label = lv_label_create(new_ddlist, NULL); lv_rect_set_fit(new_ddlist, true, false); lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); @@ -90,6 +93,10 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) lv_ddlist_ext_t * copy_ext = lv_obj_get_ext(copy); ext->opt_label = lv_label_create(new_ddlist, copy_ext->opt_label); lv_label_set_text(ext->opt_label, lv_label_get_text(copy_ext->opt_label)); + ext->sel_opt = copy_ext->sel_opt; + ext->auto_size = copy_ext->auto_size; + ext->cb = copy_ext->cb; + /*Refresh the style with new signal function*/ lv_obj_refr_style(new_ddlist); } @@ -159,9 +166,26 @@ void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options) lv_ddlist_refr_size(ddlist, false); } +/** + * Set the selected option + * @param ddlist pointer to drop down list object + * @param sel_opt id of the selected option (0 ... number of option - 1); + */ +void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + ext->sel_opt = sel_opt; + + /*Move the list to show the current option*/ + if(ext->opened == 0) { + lv_ddlist_pos_act_option(ddlist); + } +} + /** * Set a function to call when a new option is chosen - * @param ddlist pointer to drop down list + * @param ddlist pointer to a drop down list * @param cb pointer to a call back function. Its prototype is: * parameter 1: pointer to the drop down list * parameter 2: id of the chosen item (0 ... number of options - 1) @@ -173,6 +197,18 @@ void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, u ext->cb = cb; } +/** + * Set the auto size attribute. If enabled the height will reduced to be visible on the parent. + * In this case the drop down list can be scrolled. + * @param ddlist pointer to a drop down list + * @param auto_size true: enable auto size, false: disable + */ +void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->auto_size = auto_size == false ? 0 : 1; +} + /*===================== * Getter functions *====================*/ @@ -188,6 +224,29 @@ const char * lv_ddlist_get_options(lv_obj_t * ddlist) return lv_label_get_text(ext->opt_label); } +/** + * Get the selected option + * @param ddlist pointer to drop down list object + * @return id of the selected option (0 ... number of option - 1); + */ +uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + + return ext->sel_opt; +} + +/** + * Get the auto size attribute. + * @param ddlist pointer to a drop down list + * @return true: the auto_size is enabled, false: disabled + */ +bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + return ext->auto_size == 0 ? false : true; +} + /** * Return with a pointer to a built-in style and/or copy it to a variable * @param style a style name from lv_ddlists_builtin_t enum @@ -254,7 +313,7 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m const font_t * font = font_get(style->list_labels.font); area_t rect_area; rect_area.y1 = ext->opt_label->cords.y1; - rect_area.y1 += ext->act_opt * (font_get_height(font) + style->list_labels.line_space); + rect_area.y1 += ext->sel_opt * (font_get_height(font) + style->list_labels.line_space); rect_area.y1 -= style->sel_rects.vpad; rect_area.y2 = rect_area.y1 + font_get_height(font) + 2 * style->sel_rects.vpad; @@ -288,6 +347,8 @@ static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * disp lv_obj_set_drag(lv_page_get_scrl(ddlist), true); } else { ext->opened = 0; + lv_obj_set_drag(lv_page_get_scrl(ddlist), false); + /*Search the clicked option*/ point_t p; lv_dispi_get_point(dispi, &p); @@ -303,10 +364,10 @@ static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * disp if(txt[i] == '\n') new_opt ++; } - ext->act_opt = new_opt; + ext->sel_opt = new_opt; if(ext->cb != NULL) { - ext->cb(ddlist, ext->act_opt); + ext->cb(ddlist, ext->sel_opt); } } #if LV_DDLIST_ANIM_TIME == 0 @@ -332,8 +393,10 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) if(ext->opened != 0) { /*Open the list*/ new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->pages.bg_rects.vpad; lv_obj_t * parent = lv_obj_get_parent(ddlist); - if(new_height + ddlist->cords.y1 > parent->cords.y2) { + /*Reduce the height is enabler and required*/ + if(ext->auto_size != 0 && new_height + ddlist->cords.y1 > parent->cords.y2) { new_height = parent->cords.y2 - ddlist->cords.y1; + } } else { /*Close the list*/ const font_t * font = font_get(style->list_labels.font); @@ -372,7 +435,7 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) const font_t * font = font_get(style->list_labels.font); lv_obj_set_y(lv_page_get_scrl(ddlist), - -(ext->act_opt * (font_get_height(font) + style->list_labels.line_space) + + -(ext->sel_opt * (font_get_height(font) + style->list_labels.line_space) + style->pages.scrl_rects.vpad) + style->sel_rects.vpad); } @@ -393,7 +456,7 @@ static void lv_ddlists_init(void) lv_ddlists_def.pages.bg_rects.opad = 0; lv_ddlists_def.pages.scrl_rects.hpad = 5 * LV_DOWNSCALE; - lv_ddlists_def.pages.scrl_rects.vpad = 5 * LV_DOWNSCALE; + lv_ddlists_def.pages.scrl_rects.vpad = 10 * LV_DOWNSCALE; lv_ddlists_def.pages.scrl_rects.opad = 0 * LV_DOWNSCALE; lv_ddlists_def.pages.sb_mode = LV_PAGE_SB_MODE_OFF; @@ -404,7 +467,7 @@ static void lv_ddlists_init(void) lv_rects_get(LV_RECTS_DEF, &lv_ddlists_def.sel_rects); lv_ddlists_def.sel_rects.bwidth = 0; lv_ddlists_def.sel_rects.round = 0; - lv_ddlists_def.sel_rects.vpad = 5 * LV_DOWNSCALE; + lv_ddlists_def.sel_rects.vpad = 7 * LV_DOWNSCALE; } #endif diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index a793e8942..2c60f1f19 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -30,8 +30,9 @@ typedef struct /*New data for this type */ lv_obj_t * opt_label; /*Label for the options*/ lv_action_res_t (*cb)(lv_obj_t *, uint16_t); - uint16_t act_opt; + uint16_t sel_opt; uint8_t opened :1; + uint8_t auto_size :1; }lv_ddlist_ext_t; /*Style of drop down list*/ @@ -79,9 +80,16 @@ bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param); */ void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options); +/** + * Set the selected option + * @param ddlist pointer to drop down list object + * @param sel_opt id of the selected option (0 ... number of option - 1); + */ +void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt); + /** * Set a function to call when a new option is chosen - * @param ddlist pointer to drop down list + * @param ddlist pointer to a drop down list * @param cb pointer to a call back function. Its prototype is: * parameter 1: pointer to the drop down list * parameter 2: id of the chosen item (0 ... number of options - 1) @@ -89,6 +97,15 @@ void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options); */ void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, uint16_t)); + +/** + * Set the auto size attribute. If enabled the height will reduced to be visible on the parent. + * In this case the drop down list can be scrolled. + * @param ddlist pointer to a drop down list + * @param auto_size true: enable auto size, false: disable + */ +void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size); + /** * Get the options of a drop down list * @param ddlist pointer to drop down list object @@ -96,6 +113,20 @@ void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, u */ const char * lv_ddlist_get_options(lv_obj_t * ddlist); +/** + * Get the selected option + * @param ddlist pointer to drop down list object + * @return id of the selected option (0 ... number of option - 1); + */ +uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist); + +/** + * Get the auto size attribute. + * @param ddlist pointer to a drop down list + * @return true: the auto_size is enabled, false: disabled + */ +bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size); + /** * Return with a pointer to a built-in style and/or copy it to a variable * @param style a style name from lv_ddlists_builtin_t enum From ef591b7af1d76d556b5262292dcaf8f15821b679 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 16:09:46 +0100 Subject: [PATCH 11/53] app conf: app configuration added (terminal, files) --- lv_app/lv_app.c | 71 ++++++++++++++-- lv_app/lv_app.h | 4 +- lv_appx/lv_app_files.c | 172 ++++++++++++++++---------------------- lv_appx/lv_app_terminal.c | 147 ++++++++++++++++++++++---------- lv_appx/lv_app_terminal.h | 6 ++ 5 files changed, 250 insertions(+), 150 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 659ce8e8b..de4687f92 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -9,6 +9,8 @@ #include "lv_app.h" #if LV_APP_ENABLE != 0 +#include + #include "lv_app_util/lv_app_kb.h" #include "lv_app_util/lv_app_notice.h" #include "lv_app_util/lv_app_fsel.h" @@ -19,6 +21,7 @@ #include "../lv_appx/lv_app_sysmon.h" #include "../lv_appx/lv_app_terminal.h" #include "../lv_appx/lv_app_files.h" +#include "../lv_appx/lv_app_visual.h" /********************* * DEFINES @@ -45,7 +48,8 @@ static lv_action_res_t lv_app_sc_page_rel_action(lv_obj_t * sc, lv_dispi_t * dis static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi); static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi); static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t * dispi); -static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_t * dispi); +static lv_action_res_t lv_app_win_minim_action(lv_obj_t * minim_btn, lv_dispi_t * dispi); +static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * dispi); static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app); static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app); @@ -105,6 +109,10 @@ LV_IMG_DECLARE(img_ok); LV_IMG_DECLARE(img_right); #endif +#if USE_IMG_SETTINGS != 0 +LV_IMG_DECLARE(img_settings); +#endif + #if USE_IMG_UP != 0 LV_IMG_DECLARE(img_up); #endif @@ -162,6 +170,11 @@ void lv_app_init(void) dsc = ll_ins_head(&app_dsc_ll); *dsc = lv_app_files_init(); #endif + +#if USE_LV_APP_VISUAL != 0 + dsc = ll_ins_head(&app_dsc_ll); + *dsc = lv_app_visual_init(); +#endif } /** @@ -301,10 +314,14 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) lv_rect_set_fit(win_content, false, true); lv_obj_set_width(win_content, LV_HOR_RES - 2 * app_style.win_style.pages.bg_rects.hpad); - lv_win_add_ctrl_btn(app->win, "U:/icon_down" ,lv_app_win_minim_action); - lv_win_add_ctrl_btn(app->win, "U:/icon_close" ,lv_app_win_close_action); + if(app->dsc->conf_open != NULL) { + lv_win_add_ctrl_btn(app->win, "U:/icon_settings", lv_app_win_conf_action); + } + lv_win_add_ctrl_btn(app->win, "U:/icon_down", lv_app_win_minim_action); + lv_win_add_ctrl_btn(app->win, "U:/icon_close",lv_app_win_close_action); app->win_data = dm_alloc(app->dsc->win_data_size); + app->dsc->win_open(app, app->win); return app->win; @@ -327,6 +344,7 @@ void lv_app_win_close(lv_app_inst_t * app) dm_free(app->win_data); app->win_data = NULL; } + /** * Send data to other applications * @param app_send pointer to the application which is sending the message @@ -475,8 +493,7 @@ lv_app_inst_t * lv_app_get_next(lv_app_inst_t * prev, lv_app_dsc_t * dsc) if(next->dsc == dsc || dsc == NULL) return next; prev = next; - - }; + } return NULL; } @@ -795,13 +812,13 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t /** * Called when the minimization button of window is released - * @param close_minimointer to the minim. button + * @param minim_btn pointer to the minim. button * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK or LV_ACTION_RES_INC depending on LV_APP_EFFECT_... settings type */ -static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_t * dispi) +static lv_action_res_t lv_app_win_minim_action(lv_obj_t * minim_btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(close_minim); + lv_obj_t * win = lv_win_get_from_ctrl_btn(minim_btn); lv_app_inst_t * app = lv_obj_get_free_p(win); lv_app_kb_close(false); @@ -813,6 +830,40 @@ static lv_action_res_t lv_app_win_minim_action(lv_obj_t * close_minim, lv_dispi_ return res; } +/** + * Open the settings of an application in a window (use the set_open function of the application) + * @param set_btn pointer to the settings button + * @param dispi pointer to the caller display input + * @return always LV_ACTION_RES_OK because the button is not deleted here + */ +static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * dispi) +{ + /*Close the app list if opened*/ + if(app_list != NULL) { + lv_obj_del(app_list); + app_list = NULL; + } + + lv_obj_t * win = lv_win_get_from_ctrl_btn(set_btn); + lv_app_inst_t * app = lv_obj_get_free_p(win); + + app->conf_win = lv_win_create(lv_scr_act(), NULL); + lv_obj_set_free_p(app->conf_win, app); + lv_obj_set_style(app->conf_win, &app_style.win_style); + char buf[256]; + sprintf(buf, "%s settings", app->dsc->name); + lv_win_set_title(app->conf_win, buf); + lv_obj_t * set_content = lv_page_get_scrl(app->conf_win); + lv_rect_set_fit(set_content, false, true); + lv_rect_set_layout(set_content, LV_RECT_LAYOUT_COL_L); + lv_obj_set_width(set_content, LV_HOR_RES - 2 * app_style.win_style.pages.bg_rects.hpad); + + lv_win_add_ctrl_btn(app->conf_win, "U:/icon_close" ,lv_win_close_action); + + app->dsc->conf_open(app, app->conf_win); + + return LV_ACTION_RES_OK; +} /*----------------------- ANIMATIONS ------------------------*/ @@ -1133,6 +1184,10 @@ static void lv_app_init_icons(void) lv_img_create_file("icon_right", img_right); #endif +#if USE_IMG_SETTINGS != 0 + lv_img_create_file("icon_settings", img_settings); +#endif + #if USE_IMG_UP != 0 lv_img_create_file("icon_up", img_up); #endif diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index 01b8e3adf..97378ae02 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -30,7 +30,7 @@ typedef enum typedef enum { - LV_APP_COM_TYPE_CHAR, /*Stream of characters. Always '\0' terminated*/ + LV_APP_COM_TYPE_CHAR, /*Stream of characters. Not '\0' terminated*/ LV_APP_COM_TYPE_INT, /*Stream of 'int32_t' numbers*/ LV_APP_COM_TYPE_LOG, /*String about an event to log*/ LV_APP_COM_TYPE_TRIG, /*A trigger to do some specific action (data is ignored)*/ @@ -47,6 +47,7 @@ typedef struct lv_obj_t * sc; lv_obj_t * sc_title; lv_obj_t * win; + lv_obj_t * conf_win; void * app_data; void * sc_data; void * win_data; @@ -63,6 +64,7 @@ typedef struct __LV_APP_DSC_T void (*sc_close) (lv_app_inst_t *); void (*win_open) (lv_app_inst_t *, lv_obj_t *); void (*win_close) (lv_app_inst_t *); + void (*conf_open) (lv_app_inst_t *, lv_obj_t * ); uint16_t app_data_size; uint16_t sc_data_size; uint16_t win_data_size; diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index 758676434..7856c6ac9 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -45,7 +45,6 @@ typedef struct typedef struct { lv_obj_t * file_list; - lv_obj_t * send_set_h; }my_win_data_t; /*Application specific data for a shortcut of this application*/ @@ -73,6 +72,7 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc); static void my_sc_close(lv_app_inst_t * app); static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); static void my_win_close(lv_app_inst_t * app); +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win); static void win_load_file_list(lv_app_inst_t * app); static void win_create_list(lv_app_inst_t * app); @@ -83,7 +83,6 @@ static lv_action_res_t win_drv_action(lv_obj_t * drv, lv_dispi_t * dispi); static lv_action_res_t win_folder_action(lv_obj_t * folder, lv_dispi_t * dispi); static lv_action_res_t win_file_action(lv_obj_t * file, lv_dispi_t * dispi); static lv_action_res_t win_send_rel_action(lv_obj_t * send, lv_dispi_t * dispi); -static lv_action_res_t win_send_lpr_action(lv_obj_t * send, lv_dispi_t * dispi); static lv_action_res_t win_send_settings_element_rel_action(lv_obj_t * element, lv_dispi_t * dispi); static lv_action_res_t win_back_action(lv_obj_t * back, lv_dispi_t * dispi); static lv_action_res_t win_del_rel_action(lv_obj_t * del, lv_dispi_t * dispi); @@ -107,6 +106,7 @@ static lv_app_dsc_t my_app_dsc = .win_close = my_win_close, .sc_open = my_sc_open, .sc_close = my_sc_close, + .conf_open = my_conf_open, .app_data_size = sizeof(my_app_data_t), .sc_data_size = sizeof(my_sc_data_t), .win_data_size = sizeof(my_win_data_t), @@ -247,7 +247,6 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) app_data->file_cnt = 0; win_data->file_list = NULL; - win_data->send_set_h = NULL; lv_win_set_title(win, app_data->path); @@ -263,6 +262,77 @@ static void my_win_close(lv_app_inst_t * app) } +/** + * Create objects to configure the applications + * @param app pointer to an application which settings should be created + * @param conf_win pointer to a window where the objects can be created + * (the window has the proper layout) + */ +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) +{ + my_app_data_t * app_data = app->app_data; + + /*Create check boxes*/ + lv_obj_t * cb; + + /*Send file name check box*/ + cb = lv_cb_create(conf_win, NULL); + lv_cb_set_text(cb, "Send file name"); + lv_obj_set_free_num(cb, SEND_SETTINGS_FN); + lv_obj_set_free_p(cb, app); + lv_btn_set_rel_action(cb, win_send_settings_element_rel_action); + if(app_data->send_fn != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + else lv_btn_set_state(cb, LV_BTN_STATE_REL); + + /*Send size check box*/ + cb = lv_cb_create(conf_win, cb); + lv_cb_set_text(cb, "Send size"); + lv_obj_set_free_num(cb, SEND_SETTINGS_SIZE); + if(app_data->send_size != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + else lv_btn_set_state(cb, LV_BTN_STATE_REL); + + /*Send CRC check box*/ + cb = lv_cb_create(conf_win, cb); + lv_cb_set_text(cb, "Send CRC"); + lv_obj_set_free_num(cb, SEND_SETTINGS_CRC); + if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + else lv_btn_set_state(cb, LV_BTN_STATE_REL); + + /*Create a text area the type chunk size*/ + lv_obj_t * val_set_h; + val_set_h = lv_rect_create(conf_win, NULL); + lv_obj_set_style(val_set_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); + lv_obj_set_click(val_set_h, false); + lv_rect_set_fit(val_set_h, true, true); + lv_rect_set_layout(val_set_h, LV_RECT_LAYOUT_ROW_M); + + lv_obj_t * label; + label = lv_label_create(val_set_h, NULL); + lv_label_set_text(label, "Chunk size"); + + lv_obj_t * ta; + char buf[32]; + ta = lv_ta_create(val_set_h, NULL); + lv_obj_set_style(ta, lv_tas_get(LV_TAS_SIMPLE, NULL)); + lv_rect_set_fit(ta, false, true); + lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); + lv_obj_set_free_p(ta, app); + lv_page_set_rel_action(ta, win_send_settings_element_rel_action); + sprintf(buf, "%d", app_data->chunk_size); + lv_ta_set_text(ta, buf); + + /*Create a text area to type the chunk delay*/ + val_set_h = lv_rect_create(conf_win, val_set_h); + + label = lv_label_create(val_set_h, NULL); + lv_label_set_text(label, "Inter-chunk delay"); + + ta = lv_ta_create(val_set_h, ta); + lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_DELAY); + sprintf(buf, "%d", app_data->chunk_delay); + lv_ta_set_text(ta, buf); +} + /*-------------------- * OTHER FUNCTIONS ---------------------*/ @@ -522,8 +592,6 @@ static lv_action_res_t win_file_action(lv_obj_t * file, lv_dispi_t * dispi) /*Send button*/ liste = lv_list_add(win_data->file_list, NULL, "Send", win_send_rel_action); lv_obj_set_free_p(liste, app); - lv_btn_set_lpr_action(liste, win_send_lpr_action); - lv_obj_set_free_p(liste, app); /*Delete button*/ liste = lv_list_add(win_data->file_list, NULL, "Delete", win_del_rel_action); @@ -573,100 +641,6 @@ static lv_action_res_t win_send_rel_action(lv_obj_t * send, lv_dispi_t * dispi) return LV_ACTION_RES_OK; } -/** - * Called when the Send list element is long pressed to show/hide send settings - * @param send pointer to the Up button - * @param dispi pointer to the caller display input - * @return LV_ACTION_RES_OK because the list is NOT deleted in the function - */ -static lv_action_res_t win_send_lpr_action(lv_obj_t * send, lv_dispi_t * dispi) -{ - lv_app_inst_t * app = lv_obj_get_free_p(send); - my_app_data_t * app_data = app->app_data; - my_win_data_t * win_data = app->win_data; - - /*Close the settings if it is opened*/ - if(win_data->send_set_h != NULL) { - lv_obj_del(win_data->send_set_h); - win_data->send_set_h = NULL; - lv_dispi_wait_release(dispi); - lv_btn_set_state(send, LV_BTN_STATE_REL); - return LV_ACTION_RES_OK; - } - - /*Create the settings*/ - lv_btn_set_state(send, LV_BTN_STATE_REL); - lv_rect_set_layout(send, LV_RECT_LAYOUT_COL_L); - - /*Create holder for the settings*/ - win_data->send_set_h = lv_rect_create(send, NULL); - lv_obj_set_style(win_data->send_set_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); - lv_obj_set_click(win_data->send_set_h, false); - lv_rect_set_fit(win_data->send_set_h, true, true); - lv_rect_set_layout(win_data->send_set_h, LV_RECT_LAYOUT_COL_L); - - /*Create check boxes*/ - lv_obj_t * cb; - - /*Send file name check box*/ - cb = lv_cb_create(win_data->send_set_h, NULL); - lv_cb_set_text(cb, "Send file name"); - lv_obj_set_free_num(cb, SEND_SETTINGS_FN); - lv_obj_set_free_p(cb, app); - lv_btn_set_rel_action(cb, win_send_settings_element_rel_action); - if(app_data->send_fn != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); - else lv_btn_set_state(cb, LV_BTN_STATE_REL); - - /*Send size check box*/ - cb = lv_cb_create(win_data->send_set_h, cb); - lv_cb_set_text(cb, "Send size"); - lv_obj_set_free_num(cb, SEND_SETTINGS_SIZE); - if(app_data->send_size != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); - else lv_btn_set_state(cb, LV_BTN_STATE_REL); - - /*Send CRC check box*/ - cb = lv_cb_create(win_data->send_set_h, cb); - lv_cb_set_text(cb, "Send CRC"); - lv_obj_set_free_num(cb, SEND_SETTINGS_CRC); - if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); - else lv_btn_set_state(cb, LV_BTN_STATE_REL); - - /*Create a text area the type chunk size*/ - lv_obj_t * val_set_h; - val_set_h = lv_rect_create(win_data->send_set_h, NULL); - lv_obj_set_style(val_set_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); - lv_obj_set_click(val_set_h, false); - lv_rect_set_fit(val_set_h, true, true); - lv_rect_set_layout(val_set_h, LV_RECT_LAYOUT_ROW_M); - - lv_obj_t * label; - label = lv_label_create(val_set_h, NULL); - lv_label_set_text(label, "Chunk size"); - - lv_obj_t * ta; - char buf[32]; - ta = lv_ta_create(val_set_h, NULL); - lv_obj_set_style(ta, lv_tas_get(LV_TAS_SIMPLE, NULL)); - lv_rect_set_fit(ta, false, true); - lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); - lv_obj_set_free_p(ta, app); - lv_page_set_rel_action(ta, win_send_settings_element_rel_action); - sprintf(buf, "%d", app_data->chunk_size); - lv_ta_set_text(ta, buf); - - /*Create a text area to type the chunk delay*/ - val_set_h = lv_rect_create(win_data->send_set_h, val_set_h); - - label = lv_label_create(val_set_h, NULL); - lv_label_set_text(label, "Inter-chunk delay"); - - ta = lv_ta_create(val_set_h, ta); - lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_DELAY); - sprintf(buf, "%d", app_data->chunk_delay); - lv_ta_set_text(ta, buf); - - return LV_ACTION_RES_OK; -} /** * Called when a send settings element is released * @param element pointer to a chekbox or text area diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index ce429f14f..85a700e51 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -6,7 +6,23 @@ /********************* * INCLUDES *********************/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include "lv_app_terminal.h" + #if LV_APP_ENABLE != 0 && USE_LV_APP_TERMINAL != 0 #include "lvgl/lv_app/lv_app_util/lv_app_kb.h" @@ -20,11 +36,13 @@ * TYPEDEFS **********************/ + /*Application specific data for an instance of this application*/ typedef struct { char txt[LV_APP_TERMINAL_LENGTH + 1]; lv_app_com_type_t com_type; + lv_app_terminal_format_t format; lv_app_inst_t * last_sender; }my_app_data_t; @@ -33,7 +51,6 @@ typedef struct { lv_obj_t * label; lv_obj_t * ta; - lv_obj_t * com_type_btn; lv_obj_t * clear_btn; }my_win_data_t; @@ -53,10 +70,12 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc); static void my_sc_close(lv_app_inst_t * app); static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); static void my_win_close(lv_app_inst_t * app); +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win); static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len); static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi); -static lv_action_res_t win_comch_rel_action(lv_obj_t * btn, lv_dispi_t * dispi); +static lv_action_res_t win_comtype_action(lv_obj_t * btn, uint16_t opt); +static lv_action_res_t win_format_action(lv_obj_t * btn, uint16_t opt); static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi); static void win_ta_kb_ok_action(lv_obj_t * ta); @@ -74,12 +93,15 @@ static lv_app_dsc_t my_app_dsc = .win_close = my_win_close, .sc_open = my_sc_open, .sc_close = my_sc_close, + .conf_open = my_conf_open, .app_data_size = sizeof(my_app_data_t), .sc_data_size = sizeof(my_sc_data_t), .win_data_size = sizeof(my_win_data_t), }; -const char * com_type_txt [LV_APP_COM_TYPE_NUM]; +const char * com_type_list_txt[] = {"Character", "Integer", "Log", "None", ""}; +lv_app_com_type_t com_type_list[] = {LV_APP_COM_TYPE_CHAR, LV_APP_COM_TYPE_INT, LV_APP_COM_TYPE_LOG, LV_APP_COM_TYPE_INV}; +const char * txt_format_list_txt[] = {"ASCII", "Hexadecimal", ""}; lv_objs_t sc_txt_bgs; lv_labels_t sc_txts; @@ -97,11 +119,6 @@ lv_labels_t sc_txts; */ const lv_app_dsc_t * lv_app_terminal_init(void) { - com_type_txt[LV_APP_COM_TYPE_INT] = "Ch: Num"; - com_type_txt[LV_APP_COM_TYPE_CHAR] = "Ch: Chars"; - com_type_txt[LV_APP_COM_TYPE_LOG] = "Ch: Log"; - com_type_txt[LV_APP_COM_TYPE_INV] = "Ch: None"; - lv_app_style_t * app_style = lv_app_style_get(); memcpy(&sc_txts, &app_style->sc_txt_style, sizeof(lv_labels_t)); @@ -132,6 +149,7 @@ static void my_app_run(lv_app_inst_t * app, void * conf) /*Initialize the application*/ my_app_data_t * app_data = app->app_data; app_data->com_type = LV_APP_COM_TYPE_CHAR; + app_data->format = LV_APP_TERMINAL_FORMAT_ASCII; app_data->last_sender = NULL; memset(app_data->txt, 0, sizeof(app_data->txt)); } @@ -160,17 +178,27 @@ static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, { my_app_data_t * app_data = app_rec->app_data; - /*Add the recevied data if the type is matches*/ + /*Add the received data if the type is matches*/ if(type == app_data->com_type) { /*Insert the name of the sender application if it is not the last*/ if(app_data->last_sender != app_send) { - if(app_data->txt[0] != '\0') add_data(app_rec, "\n", 1); add_data(app_rec, "@", 1); add_data(app_rec, app_send->name, strlen(app_send->name)); add_data(app_rec, "\n", 1); } - add_data(app_rec, data, size); + + if(app_data->format == LV_APP_TERMINAL_FORMAT_HEX) { + char hex_buf[8]; + const char * data_buf = data; + uint32_t i; + for(i = 0; i < size; i++) { + sprintf(hex_buf, "%02x", data_buf[i]); + add_data(app_rec, hex_buf, 2); + } + } else { + add_data(app_rec, data, size); + } } app_data->last_sender = app_send; @@ -245,25 +273,15 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_obj_set_style(win_data->ta, lv_tas_get(LV_TAS_DEF, NULL)); lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); - - /*Create a button to set the communication type (char, integer etc.)*/ - win_data->com_type_btn = lv_btn_create(win, NULL); - lv_rect_set_fit(win_data->com_type_btn, true, true); - lv_obj_set_free_p(win_data->com_type_btn, app); - lv_btn_set_rel_action(win_data->com_type_btn, win_comch_rel_action); - lv_obj_t * btn_label = lv_label_create(win_data->com_type_btn, NULL); - lv_obj_set_style(btn_label, lv_labels_get(LV_LABELS_BTN, NULL)); - lv_label_set_text(btn_label, com_type_txt[app_data->com_type]); - lv_obj_align(win_data->com_type_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - - /*Create a clear button*/ - win_data->clear_btn = lv_btn_create(win, win_data->com_type_btn); + win_data->clear_btn = lv_btn_create(win, NULL); + lv_rect_set_fit(win_data->clear_btn, true, true); + lv_obj_set_free_p(win_data->clear_btn, app); lv_btn_set_rel_action(win_data->clear_btn, win_clear_rel_action); - btn_label = lv_label_create(win_data->clear_btn, NULL); + lv_obj_t * btn_label = lv_label_create(win_data->clear_btn, NULL); lv_obj_set_style(btn_label, lv_labels_get(LV_LABELS_BTN, NULL)); lv_label_set_text(btn_label, "Clear"); - lv_obj_align(win_data->clear_btn, win_data->com_type_btn, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); + lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); /*Align the window to see the text area on the bottom*/ lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, @@ -280,6 +298,37 @@ static void my_win_close(lv_app_inst_t * app) } +/** + * Create objects to configure the applications + * @param app pointer to an application which settings should be created + * @param conf_win pointer to a window where the objects can be created + * (the window has the proper layout) + */ +static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) +{ + my_app_data_t * app_data = app->app_data; + lv_app_style_t * app_style = lv_app_style_get(); + + lv_obj_t * label; + label = lv_label_create(conf_win, NULL); + lv_label_set_text(label, "Communication type"); + lv_obj_set_style(label, &app_style->win_txt_style); + + lv_obj_t * ddl; + ddl = lv_ddlist_create(conf_win, NULL); + lv_obj_set_free_p(ddl, app); + lv_ddlist_set_options(ddl, com_type_list_txt); + lv_ddlist_set_action(ddl, win_comtype_action); + lv_ddlist_set_selected(ddl, app_data->com_type); + + label = lv_label_create(conf_win, label); + lv_label_set_text(label, "\nText format"); /*First '\n' keeps space from the list above*/ + ddl = lv_ddlist_create(conf_win, ddl); + lv_ddlist_set_options(ddl, txt_format_list_txt); + lv_ddlist_set_selected(ddl, app_data->format); + lv_ddlist_set_action(ddl, win_format_action); +} + /*-------------------- * OTHER FUNCTIONS ---------------------*/ @@ -298,28 +347,44 @@ static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) } /** - * Called when the communication type button is released to change the type - * @param btn pointer to the comm. type button - * @param dispi pointer to the caller display input - * @return LV_ACTION_RES_OK because the button is not deleted + * Called when an option is chosen in the communication type drop down list on the configuration window + * @param ddl pointer to the drop down list + * @param opt id of the chosen option + * @return LV_ACTION_RES_OK because the list is not deleted */ -static lv_action_res_t win_comch_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) +static lv_action_res_t win_comtype_action(lv_obj_t * btn, uint16_t opt) { lv_app_inst_t * app = lv_obj_get_free_p(btn); my_app_data_t * app_data = app->app_data; - my_win_data_t * win_data = app->win_data; - if(app_data->com_type == LV_APP_COM_TYPE_CHAR) app_data->com_type = LV_APP_COM_TYPE_LOG; - else if(app_data->com_type == LV_APP_COM_TYPE_LOG) app_data->com_type = LV_APP_COM_TYPE_INT; - else if(app_data->com_type == LV_APP_COM_TYPE_INT) app_data->com_type = LV_APP_COM_TYPE_INV; - else app_data->com_type = LV_APP_COM_TYPE_CHAR; + app_data->com_type = com_type_list[opt]; - lv_label_set_text(lv_obj_get_child(win_data->com_type_btn, NULL), com_type_txt[app_data->com_type]); return LV_ACTION_RES_OK; } /** - * Called when the Clear button is released to clear the ex od the terminal + * Called when an option is chosen in the format drop down list on the configuration window + * @param ddl pointer to the drop down list + * @param opt id of the chosen option + * @return LV_ACTION_RES_OK because the list is not deleted + */ +static lv_action_res_t win_format_action(lv_obj_t * btn, uint16_t opt) +{ + lv_app_inst_t * app = lv_obj_get_free_p(btn); + my_app_data_t * app_data = app->app_data; + + if(strcmp(txt_format_list_txt[opt], "Hexadecimal") == 0) { + app_data->format = LV_APP_TERMINAL_FORMAT_HEX; + } else if (strcmp(txt_format_list_txt[opt], "ASCII") == 0) { + app_data->format = LV_APP_TERMINAL_FORMAT_ASCII; + } + + return LV_ACTION_RES_OK; +} + + +/** + * Called when the Clear button is released to clear the text of the terminal * @param btn pointer to the clear button * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK because the button is not deleted @@ -343,8 +408,7 @@ static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) cord_t opad = app_style->win_style.pages.scrl_rects.opad; lv_label_set_text_static(win_data->label, app_data->txt); lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); - lv_obj_align(win_data->com_type_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(win_data->clear_btn, win_data->com_type_btn, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); + lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - app_style->win_style.pages.scrl_rects.vpad); } @@ -430,8 +494,7 @@ static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len) cord_t opad = app_style->win_style.pages.scrl_rects.opad; lv_label_set_text_static(win_data->label, app_data->txt); lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); - lv_obj_align(win_data->com_type_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(win_data->clear_btn, win_data->com_type_btn, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); + lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - app_style->win_style.pages.scrl_rects.vpad); } diff --git a/lv_appx/lv_app_terminal.h b/lv_appx/lv_app_terminal.h index 8043b5153..70c32d91d 100644 --- a/lv_appx/lv_app_terminal.h +++ b/lv_appx/lv_app_terminal.h @@ -20,6 +20,12 @@ /********************** * TYPEDEFS **********************/ +typedef enum +{ + LV_APP_TERMINAL_FORMAT_ASCII, + LV_APP_TERMINAL_FORMAT_HEX, +}lv_app_terminal_format_t; + typedef struct { From e1fe92ffe7e1aa846d9cb299017abf1390deabd7 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 6 Feb 2017 16:10:41 +0100 Subject: [PATCH 12/53] icon_settigns added --- lv_icon/x1/img_settings.c | 32 +++++++++++++++++++++++++ lv_icon/x2/img_settings.c | 49 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 lv_icon/x1/img_settings.c create mode 100644 lv_icon/x2/img_settings.c diff --git a/lv_icon/x1/img_settings.c b/lv_icon/x1/img_settings.c new file mode 100644 index 000000000..d396437a0 --- /dev/null +++ b/lv_icon/x1/img_settings.c @@ -0,0 +1,32 @@ +#include "img_conf.h" +#include "lv_conf.h" + +#if USE_IMG_SETTINGS != 0 && LV_APP_USE_INTERNAL_ICONS == 1 + +#include +#include "misc/others/color.h" + +const color_int_t img_settings [] = { /*Width = 16, Height = 16*/ +16, /*Width*/ +16, /*Heigth*/ +16, /*Color depth = 16*/ +1, /*Flags: Transp = 1*/ +2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 35921, 6339, 40147, 12678, 0, 0, 0, 0, 19017, 2016, 16904, 2016, 2016, 2016, +2016, 2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, 2016, +2016, 2016, 27501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19049, 2016, 2016, +2016, 2016, 14791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10565, 2016, 2016, +2016, 2016, 0, 0, 0, 0, 21162, 2016, 2016, 19017, 0, 0, 0, 0, 2016, 2016, +23275, 12678, 0, 0, 0, 2145, 2016, 2016, 2016, 2016, 0, 0, 0, 0, 12710, 21162, +2145, 0, 0, 0, 0, 6371, 2016, 2016, 2016, 2016, 2113, 0, 0, 0, 0, 0, +2016, 25356, 0, 0, 0, 0, 44373, 2016, 2016, 38034, 0, 0, 0, 0, 31727, 2016, +2016, 2016, 0, 0, 0, 0, 0, 14791, 12710, 0, 0, 0, 0, 2145, 2016, 2016, +2016, 2016, 19017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35921, 2016, 2016, +2016, 2016, 6339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19049, 2016, 2016, +2016, 2016, 8452, 0, 21162, 2145, 0, 0, 0, 0, 0, 6371, 0, 10597, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 35953, 32, 0, 21130, 2016, 2016, 33808, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2145, 0, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +}; + +#endif diff --git a/lv_icon/x2/img_settings.c b/lv_icon/x2/img_settings.c new file mode 100644 index 000000000..75a0b09e3 --- /dev/null +++ b/lv_icon/x2/img_settings.c @@ -0,0 +1,49 @@ +#include "img_conf.h" +#include "lv_conf.h" + +#if USE_IMG_SETTINGS != 0 && LV_APP_USE_INTERNAL_ICONS == 2 + +#include +#include "misc/others/color.h" + +const color_int_t img_settings [] = { /*Width = 32, Height = 33*/ +32, /*Width*/ +33, /*Heigth*/ +16, /*Color depth = 16*/ +1, /*Flags: Transp = 1*/ +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27469, 10597, 10565, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 16936, 0, 0, 14791, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 21130, 23243, 2016, 2016, 29614, 19049, 12710, 6371, 2113, 0, 0, 32, 8452, 14823, 23275, 2016, 2016, 2016, 31727, 29614, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 16936, 2145, 4258, 25356, 27469, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 6339, 19017, 2016, 33808, 14791, 10597, 23275, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 14823, 0, 0, 32, 6339, 6339, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 4226, 8452, 8452, 2145, 32, 2113, 16904, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 14791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 31727, 14791, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 8452, 25388, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29614, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 29614, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 6339, 25356, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 21162, 4226, 32, 0, 0, 0, 0, 0, 2113, 4258, 8484, 10597, 10597, 8484, 4226, 32, 0, 0, 0, 0, 0, 0, 2113, 19017, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 2113, 8484, 21162, 38066, 46518, 46486, 35953, 19017, 6371, 32, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 31727, 6371, 0, 0, 0, 0, 0, 0, 6339, 23275, 40179, 57083, 2016, 2016, 54970, 35953, 19049, 4258, 0, 0, 0, 0, 0, 0, 6371, 31727, 2016, 2016, 2016, +2016, 29582, 23275, 14823, 2145, 0, 0, 0, 0, 0, 0, 12710, 44373, 61309, 2016, 2016, 2016, 2016, 59164, 40179, 10565, 0, 0, 0, 0, 0, 0, 2145, 16904, 25356, 27501, 2016, +27469, 10565, 6371, 4226, 32, 0, 0, 0, 0, 0, 0, 16936, 54970, 2016, 2016, 2016, 2016, 2016, 2016, 52825, 14791, 0, 0, 0, 0, 0, 0, 32, 4258, 6371, 8452, 23275, +16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, +21162, 4226, 2145, 2113, 0, 0, 0, 0, 0, 0, 32, 16936, 50744, 2016, 2016, 2016, 2016, 2016, 2016, 48631, 14791, 0, 0, 0, 0, 0, 0, 0, 2145, 4226, 2113, 16936, +2016, 29582, 21162, 12678, 2145, 0, 0, 0, 0, 0, 0, 10597, 40147, 59164, 2016, 2016, 2016, 2016, 54938, 35921, 8484, 0, 0, 0, 0, 0, 0, 4226, 16936, 25388, 29582, 2016, +2016, 2016, 2016, 23275, 4258, 0, 0, 0, 0, 0, 0, 4258, 25356, 40179, 52825, 2016, 2016, 50744, 35921, 21130, 4226, 0, 0, 0, 0, 0, 0, 6371, 31695, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 8452, 0, 0, 0, 0, 0, 0, 32, 4258, 12678, 23243, 27469, 27469, 21130, 10565, 4226, 32, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 14791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 8452, 6371, 4226, 0, 0, 0, 0, 0, 0, 0, 32, 4226, 23243, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 27469, 8452, 2113, 0, 0, 0, 0, 0, 0, 0, 32, 32, 32, 32, 0, 0, 0, 0, 0, 0, 0, 4258, 21162, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 27501, 10565, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6339, 25388, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 16904, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 14791, 0, 0, 0, 2113, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 8452, 27469, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 14823, 0, 0, 0, 10597, 12678, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 32, 0, 0, 2145, 21130, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 27501, 12710, 8484, 14791, 29582, 29614, 19017, 10597, 8452, 4226, 32, 0, 0, 0, 2113, 4226, 6339, 10597, 19017, 16936, 8452, 6371, 14791, 29614, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 21130, 4258, 0, 0, 2113, 8484, 19017, 29614, 2016, 2016, 2016, 29582, 27469, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 4226, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12678, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 4258, 2145, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, +}; + +#endif From b5b38ec6427970cfa614dfcb2b65d426f41d1349 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Sat, 11 Feb 2017 20:27:18 +0100 Subject: [PATCH 13/53] lv_pb: remove phantom bar when set --- lv_objx/lv_pb.c | 63 ++++++++++++++----------------------------------- lv_objx/lv_pb.h | 9 +++---- 2 files changed, 21 insertions(+), 51 deletions(-) diff --git a/lv_objx/lv_pb.c b/lv_objx/lv_pb.c index 109d7f095..aa776c2d8 100644 --- a/lv_objx/lv_pb.c +++ b/lv_objx/lv_pb.c @@ -71,7 +71,6 @@ lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy) ext->max_value = 100; ext->act_value = 0; ext->tmp_value = 0; - ext->set_in_prog = 0; ext->format_str = NULL; ext->label = NULL; @@ -147,7 +146,6 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) lv_pb_set_value(pb, lv_pb_get_value(pb)); break; case LV_SIGNAL_PRESSING: - ext->set_in_prog = 1; lv_dispi_get_point(param, &p); if(lv_obj_get_width(pb) > lv_obj_get_height(pb)) { p.x -= pb->cords.x1 + style->btn_size / 2; @@ -172,7 +170,6 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) lv_obj_inv(pb); break; case LV_SIGNAL_PRESS_LOST: - ext->set_in_prog = 0; ext->tmp_value = ext->act_value; sprintf(buf, ext->format_str, ext->act_value); lv_label_set_text(ext->label, buf); @@ -180,7 +177,6 @@ bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) break; case LV_SIGNAL_RELEASED: lv_pb_set_value(pb, ext->tmp_value); - ext->set_in_prog = 0; break; default: break; @@ -325,77 +321,58 @@ static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mo lv_pb_ext_t * ext = lv_obj_get_ext(pb); lv_pbs_t * style = lv_obj_get_style(pb); area_t bar_area; - area_t tmp_area; uint32_t tmp; area_cpy(&bar_area, &pb->cords); - area_cpy(&tmp_area, &pb->cords); cord_t w = lv_obj_get_width(pb); cord_t h = lv_obj_get_height(pb); if(w >= h) { - tmp = (int32_t)ext->act_value * (w - style->btn_size); - tmp = (int32_t) tmp / (ext->max_value - ext->min_value); - bar_area.x2 = bar_area.x1 + style->btn_size + (cord_t) tmp; - tmp = (int32_t)ext->tmp_value * (w - style->btn_size); tmp = (int32_t) tmp / (ext->max_value - ext->min_value); - tmp_area.x2 = tmp_area.x1 + style->btn_size + (cord_t) tmp; + bar_area.x2 = bar_area.x1 + style->btn_size + (cord_t) tmp; } else { - tmp = (int32_t)ext->act_value * (h - style->btn_size); - tmp = (int32_t) tmp / (ext->max_value - ext->min_value); - bar_area.y1 = bar_area.y2 - style->btn_size - (cord_t) tmp; - tmp = (int32_t)ext->tmp_value * (h - style->btn_size); tmp = (int32_t) tmp / (ext->max_value - ext->min_value); - tmp_area.y1 = tmp_area.y2 - style->btn_size - (cord_t) tmp; + bar_area.y1 = bar_area.y2 - style->btn_size - (cord_t) tmp; } /*Draw the main bar*/ opa_t opa = lv_obj_get_opa(pb); lv_draw_rect(&bar_area, mask, &style->bar, opa); - /*Draw a "phantom" bar when setting by a display input*/ - if(ext->set_in_prog != 0) { - lv_rects_t tmp_rects; - memcpy(&tmp_rects, &style->bar, sizeof(lv_rects_t)); - tmp_rects.objs.color = style->tmp_bar_mcolor; - tmp_rects.gcolor = style->tmp_bar_gcolor; - lv_draw_rect(&tmp_area, mask, &tmp_rects, (opa * style->tmp_bar_opa) / 100); - } - /*Draw a button if its size is not 0*/ if(style->btn_size != 0) { lv_rects_t tmp_rects; memcpy(&tmp_rects, &style->btn, sizeof(lv_rects_t)); if(w >= h) { - tmp_area.x1 = tmp_area.x2 - style->btn_size ; + bar_area.x1 = bar_area.x2 - style->btn_size ; - if(tmp_area.x1 < pb->cords.x1) { - tmp_area.x1 = pb->cords.x1; - tmp_area.x2 = tmp_area.x1 + style->btn_size; + if(bar_area.x1 < pb->cords.x1) { + bar_area.x1 = pb->cords.x1; + bar_area.x2 = bar_area.x1 + style->btn_size; } - if(tmp_area.x2 > pb->cords.x2) { - tmp_area.x2 = pb->cords.x2; - tmp_area.x1 = tmp_area.x2 - style->btn_size; + if(bar_area.x2 > pb->cords.x2) { + bar_area.x2 = pb->cords.x2; + bar_area.x1 = bar_area.x2 - style->btn_size; } } else { - tmp_area.y2 = tmp_area.y1 + style->btn_size ; + bar_area.y2 = bar_area.y1 + style->btn_size ; - if(tmp_area.y1 < pb->cords.y1) { - tmp_area.y1 = pb->cords.y1; - tmp_area.y2 = tmp_area.y1 + style->btn_size; + if(bar_area.y1 < pb->cords.y1) { + bar_area.y1 = pb->cords.y1; + bar_area.y2 = bar_area.y1 + style->btn_size; } - if(tmp_area.y2 > pb->cords.y2) { - tmp_area.y2 = pb->cords.y2; - tmp_area.y1 = tmp_area.y2 - style->btn_size; + if(bar_area.y2 > pb->cords.y2) { + bar_area.y2 = pb->cords.y2; + bar_area.y1 = bar_area.y2 - style->btn_size; } } - lv_draw_rect(&tmp_area, mask, &tmp_rects, opa ); + lv_draw_rect(&bar_area, mask, &tmp_rects, opa ); } } return true; @@ -434,14 +411,11 @@ static void lv_pbs_init(void) lv_pbs_def.bar.gcolor = COLOR_GREEN; lv_pbs_def.bar.bcolor = COLOR_BLACK; - lv_pbs_def.tmp_bar_mcolor = COLOR_YELLOW; - lv_pbs_def.tmp_bar_gcolor = COLOR_LIME; - lv_pbs_def.tmp_bar_opa = 80; - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.btn); /*Button*/ lv_pbs_def.btn.objs.color = COLOR_WHITE; lv_pbs_def.btn.gcolor = COLOR_GRAY; lv_pbs_def.btn.bcolor = COLOR_GRAY; + lv_pbs_def.btn.bopa = 100; lv_pbs_def.btn_size = 0; lv_labels_get(LV_LABELS_DEF, &lv_pbs_def.label); /*Label*/ @@ -454,7 +428,6 @@ static void lv_pbs_init(void) lv_pbs_slider.bar.round = LV_RECT_CIRCLE; lv_pbs_slider.btn.round = LV_RECT_CIRCLE; lv_pbs_slider.btn_size = 40 * LV_DOWNSCALE; - lv_pbs_def.tmp_bar_opa = 80; } #endif diff --git a/lv_objx/lv_pb.h b/lv_objx/lv_pb.h index cbf540a57..7de556963 100644 --- a/lv_objx/lv_pb.h +++ b/lv_objx/lv_pb.h @@ -45,7 +45,6 @@ typedef struct int16_t min_value; /*Minimum value of the progress bar*/ int16_t max_value; /*Maximum value of the progress bar*/ char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ - uint8_t set_in_prog :1;/*Indicates the setting by display input is in progress*/ }lv_pb_ext_t; /*Style of progress bar*/ @@ -53,12 +52,10 @@ typedef struct { lv_rects_t bg; /*Style of the background (inherited)*/ lv_rects_t bar; /*Style of the bar*/ - lv_labels_t label; /*Style of the label*/ + lv_labels_t label; /*Style of the label*/ lv_rects_t btn; /*Style of the button (it is rectangle but acts as a button)*/ - color_t tmp_bar_mcolor; /*Main color of temporal bar when settings by hand*/ - color_t tmp_bar_gcolor; /*Gradient color of temporal bar when settings by hand*/ - cord_t btn_size; /*Width or height of the button (depending on the orientation of the pb)*/ - uint8_t tmp_bar_opa; /*Opacity of temporal bar in percentage of the object opacity [%]*/ + cord_t btn_size; /*Width or height of the button (depending on the orientation of the pb)*/ + }lv_pbs_t; /*Built-in styles of progress bar*/ From 1cce542cd566d859ecec3386bf8e19be1626f1d7 Mon Sep 17 00:00:00 2001 From: Gabor Date: Fri, 17 Feb 2017 11:29:17 +0100 Subject: [PATCH 14/53] lv_draw: triangle draw added for experimental usage --- lv_draw/lv_draw.c | 136 ++++++++++++++++++++++++++++++++++++++++++++++ lv_draw/lv_draw.h | 13 +++++ 2 files changed, 149 insertions(+) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 8734b4638..c82d131df 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -48,6 +48,11 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h); #endif /*USE_LV_RECT != 0*/ + +#if USE_LV_TRIANGLE != 0 +static void point_swap(point_t * p1, point_t * p2); +#endif + /********************** * STATIC VARIABLES **********************/ @@ -115,6 +120,115 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, } #endif /*USE_LV_RECT != 0*/ +#if USE_LV_TRIANGLE != 0 +/** + * + * @param points pointer to an array with 3 points + * @param mask_p the triangle will be drawn only in this mask + * @param color color of the triangle + */ +void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t color) +{ + point_t tri[3]; + + memcpy(tri, points, sizeof(tri)); + + /*Sort the vertices according to their y coordinate (0: y max, 1: y mid, 2:y min)*/ + if(tri[1].y < tri[0].y) point_swap(&tri[1], &tri[0]); + if(tri[2].y < tri[1].y) point_swap(&tri[2], &tri[1]); + if(tri[1].y < tri[0].y) point_swap(&tri[1], &tri[0]); + + /*Return is the triangle is degenerated*/ + if(tri[0].x == tri[1].x && tri[0].y == tri[1].y) return; + if(tri[1].x == tri[2].x && tri[1].y == tri[2].y) return; + if(tri[0].x == tri[2].x && tri[0].y == tri[2].y) return; + + if(tri[0].x == tri[1].x && tri[1].x == tri[2].x) return; + if(tri[0].y == tri[1].y && tri[1].y == tri[2].y) return; + + /*Draw the triangle*/ + point_t edge1; + cord_t dx1 = MATH_ABS(tri[0].x - tri[1].x); + cord_t sx1 = tri[0].x < tri[1].x ? 1 : -1; + cord_t dy1 = MATH_ABS(tri[0].y - tri[1].y); + cord_t sy1 = tri[0].y < tri[1].y ? 1 : -1; + cord_t err1 = (dx1 > dy1 ? dx1 : -dy1) / 2; + cord_t err_tmp1; + + point_t edge2; + cord_t dx2 = MATH_ABS(tri[0].x - tri[2].x); + cord_t sx2 = tri[0].x < tri[2].x ? 1 : -1; + cord_t dy2 = MATH_ABS(tri[0].y - tri[2].y); + cord_t sy2 = tri[0].y < tri[2].y ? 1 : -1; + cord_t err2 = (dx1 > dy2 ? dx2 : -dy2) / 2; + cord_t err_tmp2; + + cord_t y1_tmp; + cord_t y2_tmp; + + edge1.x = tri[0].x; + edge1.y = tri[0].y; + edge2.x = tri[0].x; + edge2.y = tri[0].y; + area_t act_area; + area_t draw_area; + + while(1) { + act_area.x1 = edge1.x; + act_area.x2 = edge2.x ; + act_area.y1 = edge1.y; + act_area.y2 = edge2.y ; + + + draw_area.x1 = MATH_MIN(act_area.x1, act_area.x2); + draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); + draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); + draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); + draw_area.x2--; /*Do not draw most right pixel because it will be drawn by the adjacent triangle*/ + fill_fp(&draw_area, mask_p, color, OPA_50); + + /*Calc. the next point of edge1*/ + y1_tmp = edge1.y; + do { + if (edge1.x == tri[1].x && edge1.y == tri[1].y) { + + dx1 = MATH_ABS(tri[1].x - tri[2].x); + sx1 = tri[1].x < tri[2].x ? 1 : -1; + dy1 = MATH_ABS(tri[1].y - tri[2].y); + sy1 = tri[1].y < tri[2].y ? 1 : -1; + err1 = (dx1 > dy1 ? dx1 : -dy1) / 2; + } + else if (edge1.x == tri[2].x && edge1.y == tri[2].y) return; + err_tmp1 = err1; + if (err_tmp1 >-dx1) { + err1 -= dy1; + edge1.x += sx1; + } + if (err_tmp1 < dy1) { + err1 += dx1; + edge1.y += sy1; + } + } while(edge1.y == y1_tmp); + + /*Calc. the next point of edge2*/ + y2_tmp = edge2.y; + do { + if (edge2.x == tri[2].x && edge2.y == tri[2].y) return; + err_tmp2 = err2; + if (err_tmp2 > -dx2) { + err2 -= dy2; + edge2.x += sx2; + } + if (err_tmp2 < dy2) { + err2 += dx2; + edge2.y += sy2; + } + } while(edge2.y == y2_tmp); + } +} + +#endif + #if USE_LV_LABEL != 0 /** * Write a text @@ -935,3 +1049,25 @@ static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h) #endif /*USE_LV_RECT != 0*/ + +#if USE_LV_TRIANGLE != 0 +/** + * Swap two points + * p1 pointer to the first point + * p2 pointer to the second point + */ +static void point_swap(point_t * p1, point_t * p2) +{ + point_t tmp; + tmp.x = p1->x; + tmp.y = p1->y; + + p1->x = p2->x; + p1->y = p2->y; + + p2->x = tmp.x; + p2->y = tmp.y; + +} + +#endif diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index 088099755..728e9213a 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -42,6 +42,19 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); #endif + +/*Experimental use for 3D modeling*/ +#define USE_LV_TRIANGLE 0 +#if USE_LV_TRIANGLE != 0 +/** + * + * @param points pointer to an array with 3 points + * @param mask_p the triangle will be drawn only in this mask + * @param color color of the triangle + */ +void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t color); +#endif + /** * Write a text * @param cords_p coordinates of the label From 615eceb94bce0300bca0f40a27b29bf48fe23392 Mon Sep 17 00:00:00 2001 From: Gabor Date: Fri, 17 Feb 2017 11:30:40 +0100 Subject: [PATCH 15/53] lv_app_visual: skeleton added --- lv_appx/lv_app_visual.c | 210 ++++++++++++++++++++++++++++++++++++++++ lv_appx/lv_app_visual.h | 39 ++++++++ 2 files changed, 249 insertions(+) create mode 100644 lv_appx/lv_app_visual.c create mode 100644 lv_appx/lv_app_visual.h diff --git a/lv_appx/lv_app_visual.c b/lv_appx/lv_app_visual.c new file mode 100644 index 000000000..52b3f4915 --- /dev/null +++ b/lv_appx/lv_app_visual.c @@ -0,0 +1,210 @@ +/** + * @file lv_app_visual.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_app_example.h" +#if LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0 + +#include + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Application specific data for an instance of this application*/ +typedef struct +{ + +}my_app_data_t; + +/*Application specific data a window of this application*/ +typedef struct +{ + +}my_win_data_t; + +/*Application specific data for a shortcut of this application*/ +typedef struct +{ + lv_obj_t * label; +}my_sc_data_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void my_app_run(lv_app_inst_t * app, void * conf); +static void my_app_close(lv_app_inst_t * app); +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, lv_app_com_type_t type , const void * data, uint32_t size); +static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc); +static void my_sc_close(lv_app_inst_t * app); +static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); +static void my_win_close(lv_app_inst_t * app); + +static lv_action_res_t ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi); +static void kb_ok_action(lv_obj_t * ta); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_app_dsc_t my_app_dsc = +{ + .name = "Visualizer", + .mode = LV_APP_MODE_NONE, + .app_run = my_app_run, + .app_close = my_app_close, + .com_rec = my_com_rec, + .win_open = my_win_open, + .win_close = my_win_close, + .sc_open = my_sc_open, + .sc_close = my_sc_close, + .app_data_size = sizeof(my_app_data_t), + .sc_data_size = sizeof(my_sc_data_t), + .win_data_size = sizeof(my_win_data_t), +}; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Initialize the application + * @return pointer to the application descriptor of this application + */ +const lv_app_dsc_t * lv_app_visual_init(void) +{ + return &my_app_dsc; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Run an application according to 'app_dsc' + * @param app_dsc pointer to an application descriptor + * @param conf pointer to a lv_app_example_conf_t structure with configuration data or NULL if unused + * @return pointer to the opened application or NULL if any error occurred + */ +static void my_app_run(lv_app_inst_t * app, void * conf) +{ + /*Initialize the application*/ +} + +/** + * Close a running application. + * Close the Window and the Shortcut too if opened. + * Free all the allocated memory by this application. + * @param app pointer to an application + */ +static void my_app_close(lv_app_inst_t * app) +{ + /*No dynamically allocated data in 'my_app_data'*/ +} + +/** + * Read the data have been sent to this application + * @param app_send pointer to an application which sent the message + * @param app_rec pointer to an application which is receiving the message + * @param type type of data from 'lv_app_com_type_t' enum + * @param data pointer to the sent data + * @param size length of 'data' in bytes + */ +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size) +{ + if(type == LV_APP_COM_TYPE_CHAR) { /*data: string*/ + my_sc_data_t * sc_data = app_rec->sc_data; + if (sc_data->label != NULL) { + lv_label_set_text_array(sc_data->label, data, size); + lv_obj_align(sc_data->label , NULL,LV_ALIGN_CENTER, 0, 0); + } + } +} + +/** + * Open a shortcut for an application + * @param app pointer to an application + * @param sc pointer to an object where the application + * can create content of the shortcut + */ +static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) +{ + my_sc_data_t * sc_data = app->sc_data; + lv_app_style_t * app_style = lv_app_style_get(); + + sc_data->label = lv_label_create(sc, NULL); + lv_label_set_text(sc_data->label, "Empty"); + lv_obj_set_style(sc_data->label, &app_style->sc_txt_style); + lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); +} + +/** + * Close the shortcut of an application + * @param app pointer to an application + */ +static void my_sc_close(lv_app_inst_t * app) +{ + /*No dynamically allocated data in 'my_sc_data'*/ +} + + +/** + * Open the application in a window + * @param app pointer to an application + * @param win pointer to a window object where + * the application can create content + */ +static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) +{ + +} + +/** + * Close the window of an application + * @param app pointer to an application + */ +static void my_win_close(lv_app_inst_t * app) +{ + +} + +/*-------------------- + * OTHER FUNCTIONS + ---------------------*/ + +/** + * Called when the text area on the window is released to open the app. keyboard + * @param ta pointer to the text area on the window + * @param dispi pointer to the caller display input + * @return LV_ACTION_RES_OK because the text area is not deleted + */ +static lv_action_res_t ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) +{ + + return LV_ACTION_RES_OK; +} + +/** + * Called when the "Ok" button is pressed on the app. keyboard + * @param ta pointer to the text area assigned to the app. kexboard + */ +static void kb_ok_action(lv_obj_t * ta) +{ + lv_app_inst_t * app = lv_obj_get_free_p(ta); + const char * txt = lv_ta_get_txt(ta); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, txt, strlen(txt)); +} + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0*/ diff --git a/lv_appx/lv_app_visual.h b/lv_appx/lv_app_visual.h new file mode 100644 index 000000000..ce5e26d01 --- /dev/null +++ b/lv_appx/lv_app_visual.h @@ -0,0 +1,39 @@ +/** + * @file lv_app_visual.h + * + */ + +#ifndef LV_APP_VISUAL_H +#define LV_APP_VISUAL_H + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lv_app/lv_app.h" + +#if LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0 + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +typedef struct +{ + +}lv_app_visual_conf_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ +const lv_app_dsc_t * lv_app_visual_init(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0*/ + +#endif /* LV_APP_VISUAL_H */ From e98aa0f6e6be63c7a8119553b4c457ccfebc1bda Mon Sep 17 00:00:00 2001 From: Gabor Date: Tue, 7 Mar 2017 17:11:39 +0100 Subject: [PATCH 16/53] Draw speed optimalization --- lv_draw/lv_draw.c | 30 +++++++++++++++++++++++++----- lv_draw/lv_draw_vbasic.c | 19 ++++++++++++------- 2 files changed, 37 insertions(+), 12 deletions(-) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index c82d131df..92973b633 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -17,6 +17,7 @@ #include "misc/math/math_base.h" #include "lv_draw_rbasic.h" #include "lv_draw_vbasic.h" +#include "misc/fs/ufs/ufs.h" /********************* * DEFINES @@ -399,12 +400,31 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, act_area.y1 &= ~(cord_t)(ds_num - 1) ; act_area.y2 = act_area.y1 + ds_num - 1; uint32_t act_pos; - - color_t buf[LV_HOR_RES]; + bool const_data = false; + if(fn[0] == UFS_LETTER) { + if(((ufs_file_t*)file.file_d)->ent->const_data != 0) { + const_data = true; + } + } + for(row = mask_sub.y1; row <= mask_sub.y2; row += ds_num) { - res = fs_read(&file, buf, useful_data, &br); - map_fp(&act_area, &mask_sub, buf, opa, header.transp, upscale, - imgs_p->objs.color, imgs_p->recolor_opa); + + /*Get and use the pointer of const data in program memory*/ + if(const_data != false) { + uint8_t * f_data = ((ufs_file_t*)file.file_d)->ent->data_d; + f_data += ((ufs_file_t*)file.file_d)->rwp; + ((ufs_file_t*)file.file_d)->rwp += useful_data; + map_fp(&act_area, &mask_sub, (void*)f_data , opa, header.transp, upscale, + imgs_p->objs.color, imgs_p->recolor_opa); + } + /*Or read the NOT const files normally*/ + else { + color_t buf[LV_HOR_RES]; + res = fs_read(&file, buf, useful_data, &br); + map_fp(&act_area, &mask_sub, buf, opa, header.transp, upscale, + imgs_p->objs.color, imgs_p->recolor_opa); + } + fs_tell(&file, &act_pos); fs_seek(&file, act_pos + next_row); act_area.y1 += ds_num; diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index 5bee2bef5..d7eff8ead 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -74,11 +74,17 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, /*Run simpler function without opacity*/ if(opa == OPA_COVER) { - for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { - for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { - vdb_buf_tmp[col] = color; - } - + /*Fill the first row with 'color'*/ + for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { + vdb_buf_tmp[col] = color; + } + /*Copy the first row to all other rows*/ + color_t * vdb_buf_first = &vdb_buf_tmp[vdb_rel_a.x1]; + cord_t copy_size = (vdb_rel_a.x2 - vdb_rel_a.x1 + 1) * sizeof(color_t); + vdb_buf_tmp += vdb_width; + + for(row = vdb_rel_a.y1 + 1; row <= vdb_rel_a.y2; row++) { + memcpy(&vdb_buf_tmp[vdb_rel_a.x1], vdb_buf_first, copy_size); vdb_buf_tmp += vdb_width; } } @@ -86,8 +92,7 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, else { for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { - color_t c = color_mix(color, vdb_buf_tmp[col], opa); - vdb_buf_tmp[col] = c; + vdb_buf_tmp[col] = color_mix(color, vdb_buf_tmp[col], opa); } vdb_buf_tmp += vdb_width; } From c05ebc075f52fd79d8976b8f0c5f601410b3314d Mon Sep 17 00:00:00 2001 From: Gabor Date: Tue, 7 Mar 2017 17:13:24 +0100 Subject: [PATCH 17/53] dispi: if a drag can not move the object (e.g. layout) still consider it as drag (reverted) --- lv_obj/lv_dispi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lv_obj/lv_dispi.c b/lv_obj/lv_dispi.c index 1dd643277..93fe2465c 100644 --- a/lv_obj/lv_dispi.c +++ b/lv_obj/lv_dispi.c @@ -220,7 +220,7 @@ static void dispi_proc_press(lv_dispi_t * dispi_p) pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } /*If there is last object but it can not be dragged also search*/ - else if(dispi_p->drag_in_prog == 0) {/*Now act_obj != NULL*/ + else if(dispi_p->drag_range_out == 0) {/*Now act_obj != NULL*/ pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } /*If a dragable object was the last then keep it*/ From 92e63fbb466c4c1e082ff049d92535fb4d1172f9 Mon Sep 17 00:00:00 2001 From: Gabor Date: Thu, 9 Mar 2017 11:23:28 +0100 Subject: [PATCH 18/53] Draw speed optimalizations --- lv_app/lv_app.c | 54 ++++++++++++++++++-- lv_appx/lv_app_visual.c | 26 ---------- lv_draw/lv_draw_vbasic.c | 106 ++++++++++++++++++++++++++------------- lv_obj/lv_dispi.c | 4 +- lv_obj/lv_obj.c | 1 + lv_obj/lv_vdb.c | 38 ++++++++------ lv_objx/lv_img.c | 13 ++--- lv_objx/lv_page.c | 2 +- 8 files changed, 155 insertions(+), 89 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index de4687f92..42e7f62b1 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -54,6 +54,7 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app); static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app); #if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +static void lv_app_win_open_anim_cb(lv_obj_t * app_win); static void lv_app_win_close_anim_cb(lv_obj_t * app_win); static void lv_app_win_minim_anim_cb(lv_obj_t * app_win); #endif @@ -75,7 +76,7 @@ static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_obj_t * sc_page; /*A page for the shortcuts */ static lv_app_inst_t * con_send; /*The sender application in connection mode. Not NLL means connection mode is active*/ static lv_app_style_t app_style; /*Styles for application related things*/ - +static lv_wins_t wins_no_sb; /*Used when the window is animated. (Do not use scrollbar during the anim.)*/ /*Declare icons*/ #if USE_IMG_CLOSE != 0 LV_IMG_DECLARE(img_close); @@ -799,8 +800,18 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t lv_app_kb_close(false); #if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA != 0 && LV_APP_ANIM_WIN != 0 + /*Temporally set no scrollbar style for the window*/ + memcpy(&wins_no_sb, lv_obj_get_style(app->win), sizeof(lv_wins_t)); + wins_no_sb.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + lv_obj_set_style(app->win, &wins_no_sb); + + /*Hide the control buttons and the title during the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_anim(app->win, LV_ANIM_FLOAT_BOTTOM | ANIM_OUT, LV_APP_ANIM_WIN, 0, NULL); lv_obj_anim(app->win, LV_ANIM_FLOAT_LEFT | ANIM_OUT, LV_APP_ANIM_WIN, 0, lv_app_win_close_anim_cb); + lv_app_sc_close(app); /*The animation will close the window*/ return LV_ACTION_RES_OK; @@ -878,7 +889,7 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) /*Make an animation on window open*/ #if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 - area_t cords; /*If no shortcut simulate one or load the its coordinates*/ + area_t cords; /*If no shortcut simulate one and load the its coordinates*/ if(app->sc == NULL) { cords.x1 = LV_HOR_RES / 2 - LV_APP_SC_WIDTH / 2; cords.y1 = LV_VER_RES / 2 - LV_APP_SC_HEIGHT / 2; @@ -888,6 +899,15 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) lv_obj_get_cords(app->sc, &cords); } + /*Temporally set no scrollbar style for the window*/ + memcpy(&wins_no_sb, lv_obj_get_style(app->win), sizeof(lv_wins_t)); + wins_no_sb.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + lv_obj_set_style(app->win, &wins_no_sb); + + /*Hide the control buttons and the title during the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + anim_t a; a.act_time = 0; a.time = LV_APP_ANIM_WIN; @@ -915,6 +935,7 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) a.start = cords.y1; a.end = 0; a.fp = (anim_fp_t) lv_obj_set_y; + a.end_cb = (anim_cb_t)lv_app_win_open_anim_cb; anim_create(&a); #endif /*LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0*/ @@ -939,7 +960,16 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) } else { lv_obj_get_cords(app->sc, &cords); } + + /*Temporally set no scrollbar style for the window*/ + memcpy(&wins_no_sb, lv_obj_get_style(app->win), sizeof(lv_wins_t)); + wins_no_sb.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + lv_obj_set_style(app->win, &wins_no_sb); + /*Hide the control buttons and the title during the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + anim_t a; a.act_time = 0; a.time = LV_APP_ANIM_WIN; @@ -979,6 +1009,22 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) } #if LV_APP_EFFECT_ANIM != 0 + + +/** + * Called when the window open animation is ready to close the application + * @param app_win pointer to a window + */ +static void lv_app_win_open_anim_cb(lv_obj_t * app_win) +{ + /*Unhide the title and the ctrl btn holder*/ + lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->ctrl_holder, false); + lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->title, false); + + /*Restore the style*/ + lv_obj_set_style(app_win, &app_style.win_style); +} + /** * Called when the window close animation is ready to close the application * @param app_win pointer to a window @@ -988,6 +1034,8 @@ static void lv_app_win_close_anim_cb(lv_obj_t * app_win) lv_app_inst_t * app = lv_obj_get_free_p(app_win); lv_app_close(app); } + + /** * Called when the window minimization animation is ready to close the window * @param app_win pointer to a window @@ -1129,7 +1177,7 @@ static void lv_app_init_style(void) memcpy(&app_style.win_style.title, &app_style.menu_btn_label_style, sizeof(lv_labels_t)); memcpy(&app_style.win_style.ctrl_btn, &app_style.menu_btn_style, sizeof(lv_btns_t)); memcpy(&app_style.win_style.ctrl_img, &app_style.menu_btn_img_style, sizeof(lv_imgs_t)); - app_style.win_style.header_opa = app_style.menu_opa; + app_style.win_style.header_opa = OPA_COVER; //app_style.menu_opa; app_style.win_style.ctrl_btn_opa = app_style.menu_btn_opa; app_style.win_style.header.vpad = 5 * LV_DOWNSCALE; app_style.win_style.header.hpad = 5 * LV_DOWNSCALE; diff --git a/lv_appx/lv_app_visual.c b/lv_appx/lv_app_visual.c index 52b3f4915..4abd29c3f 100644 --- a/lv_appx/lv_app_visual.c +++ b/lv_appx/lv_app_visual.c @@ -48,9 +48,6 @@ static void my_sc_close(lv_app_inst_t * app); static void my_win_open(lv_app_inst_t * app, lv_obj_t * win); static void my_win_close(lv_app_inst_t * app); -static lv_action_res_t ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi); -static void kb_ok_action(lv_obj_t * ta); - /********************** * STATIC VARIABLES **********************/ @@ -184,27 +181,4 @@ static void my_win_close(lv_app_inst_t * app) * OTHER FUNCTIONS ---------------------*/ -/** - * Called when the text area on the window is released to open the app. keyboard - * @param ta pointer to the text area on the window - * @param dispi pointer to the caller display input - * @return LV_ACTION_RES_OK because the text area is not deleted - */ -static lv_action_res_t ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) -{ - - return LV_ACTION_RES_OK; -} - -/** - * Called when the "Ok" button is pressed on the app. keyboard - * @param ta pointer to the text area assigned to the app. kexboard - */ -static void kb_ok_action(lv_obj_t * ta) -{ - lv_app_inst_t * app = lv_obj_get_free_p(ta); - const char * txt = lv_ta_get_txt(ta); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, txt, strlen(txt)); -} - #endif /*LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0*/ diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index d7eff8ead..19cf6cf31 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -88,11 +88,18 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, vdb_buf_tmp += vdb_width; } } - /*Calculate the alpha too*/ + /*Calculate with alpha too*/ else { + color_t bg_tmp = COLOR_BLACK; + color_t opa_tmp = color_mix(color, bg_tmp, opa); for(row = vdb_rel_a.y1; row <= vdb_rel_a.y2; row++) { for(col = vdb_rel_a.x1; col <= vdb_rel_a.x2; col++) { - vdb_buf_tmp[col] = color_mix(color, vdb_buf_tmp[col], opa); + /*If the bg color changed recalculate the result color*/ + if(vdb_buf_tmp[col].full != bg_tmp.full) { + bg_tmp = vdb_buf_tmp[col]; + opa_tmp = color_mix(color, bg_tmp, opa); + } + vdb_buf_tmp[col] = opa_tmp; } vdb_buf_tmp += vdb_width; } @@ -224,32 +231,8 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, map_p -= (masked_a.x1 >> ds_shift); - if(upscale != false) { - cord_t row; - cord_t col; - color_t transp_color = LV_COLOR_TRANSP; - color_t color_tmp; - color_t prev_color = COLOR_BLACK; - cord_t map_col; - - color_tmp = color_mix(recolor, prev_color, recolor_opa); - for(row = masked_a.y1; row <= masked_a.y2; row++) { - for(col = masked_a.x1; col <= masked_a.x2; col ++) { - map_col = col >> 1; - - if(map_p[map_col].full != prev_color.full) { - prev_color.full = map_p[map_col].full; - color_tmp = color_mix(recolor, prev_color, recolor_opa); - } - if(transp == false || map_p[map_col].full != transp_color.full) { - vdb_buf_tmp[col] = color_mix( color_tmp, vdb_buf_tmp[col], opa); - } - } - if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ - vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ - } - } - else { + /*No upscalse*/ + if(upscale == false) { if(transp == false) { /*Simply copy the pixels to the VDB*/ cord_t row; @@ -261,7 +244,7 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, map_p += map_width; /*Next row on the map*/ vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ } - } else { + } else { /*with opacity*/ cord_t col; for(row = masked_a.y1; row <= masked_a.y2; row++) { for(col = masked_a.x1; col <= masked_a.x2; col ++) { @@ -272,9 +255,11 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } - /*To recolor draw simply a rectangle above the image*/ #if LV_VDB_SIZE != 0 - lv_vfill(cords_p, mask_p, recolor, recolor_opa); + /*To recolor draw simply a rectangle above the image*/ + if(recolor_opa != OPA_TRANSP) { + lv_vfill(cords_p, mask_p, recolor, recolor_opa); + } #endif } else { /*transp == true: Check all pixels */ cord_t row; @@ -290,8 +275,8 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } - map_p += map_width; /*Next row on the map*/ - vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ + map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ } } else { for(row = masked_a.y1; row <= masked_a.y2; row++) { @@ -301,8 +286,8 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } - map_p += map_width; /*Next row on the map*/ - vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ + map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width; /*Next row on the VDB*/ } } } else { /*Recolor needed*/ @@ -335,6 +320,57 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } } } + /*Upscalse*/ + else { + cord_t row; + cord_t col; + color_t transp_color = LV_COLOR_TRANSP; + color_t color_tmp; + color_t prev_color = COLOR_BLACK; + cord_t map_col; + + /*The most simple case (but upscale): o opacity, no recolor, no transp. pixels*/ + if(transp == false && opa == OPA_COVER && recolor_opa == OPA_TRANSP) { + for(row = masked_a.y1; row <= masked_a.y2; row++) { + for(col = masked_a.x1; col <= masked_a.x2; col ++) { + map_col = col >> 1; + vdb_buf_tmp[col].full = map_p[map_col].full; + } + if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ + } + } + /*Handle other cases*/ + else { + color_tmp = color_mix(recolor, prev_color, recolor_opa); + for(row = masked_a.y1; row <= masked_a.y2; row++) { + for(col = masked_a.x1; col <= masked_a.x2; col ++) { + map_col = col >> 1; + + /*Handle recoloring*/ + if(recolor_opa == OPA_TRANSP) { + color_tmp.full = map_p[map_col].full; + } else { + if(map_p[map_col].full != prev_color.full) { + prev_color.full = map_p[map_col].full; + color_tmp = color_mix(recolor, prev_color, recolor_opa); + } + } + /*Put the NOT transparent pixels*/ + if(transp == false || map_p[map_col].full != transp_color.full) { + /*Handle opacity*/ + if(opa == OPA_COVER) { + vdb_buf_tmp[col] = color_tmp; + } else { + vdb_buf_tmp[col] = color_mix( color_tmp, vdb_buf_tmp[col], opa); + } + } + } + if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ + vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ + } + } + } } diff --git a/lv_obj/lv_dispi.c b/lv_obj/lv_dispi.c index 93fe2465c..9cfdefe91 100644 --- a/lv_obj/lv_dispi.c +++ b/lv_obj/lv_dispi.c @@ -219,8 +219,8 @@ static void dispi_proc_press(lv_dispi_t * dispi_p) if(dispi_p->act_obj == NULL) { pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } - /*If there is last object but it can not be dragged also search*/ - else if(dispi_p->drag_range_out == 0) {/*Now act_obj != NULL*/ + /*If there is last object but it is not dragged also search*/ + else if(dispi_p->drag_in_prog == 0) {/*Now act_obj != NULL*/ pr_obj = dispi_search_obj(dispi_p, lv_scr_act()); } /*If a dragable object was the last then keep it*/ diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 441f79d57..757b6ea02 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -85,6 +85,7 @@ void lv_init(void) def_scr = lv_img_create(NULL, NULL); lv_img_set_auto_size(def_scr, false); lv_img_set_file(def_scr, "U:/def_wp"); + lv_img_set_upscale(def_scr, true); #else def_scr = lv_obj_create(NULL, NULL); #endif diff --git a/lv_obj/lv_vdb.c b/lv_obj/lv_vdb.c index 4cba900a6..860ea41d1 100644 --- a/lv_obj/lv_vdb.c +++ b/lv_obj/lv_vdb.c @@ -74,20 +74,28 @@ void lv_vdb_flush(void) color_t * in2_buf = vdb.buf + w; /*Pointer to the second row*/ color_t * out_buf = vdb.buf; /*Store the result here*/ for(y = vdb.vdb_area.y1; y < vdb.vdb_area.y2; y += 2) { - for(x = vdb.vdb_area.x1; x < vdb.vdb_area.x2; x += 2) { - /*Get the average of 2x2 red*/ - out_buf->red = (in1_buf->red + (in1_buf + 1)->red + - in2_buf->red + (in2_buf+ 1)->red) >> 2; - /*Get the average of 2x2 green*/ - out_buf->green = (in1_buf->green + (in1_buf + 1)->green + - in2_buf->green + (in2_buf + 1)->green) >> 2; - /*Get the average of 2x2 blue*/ - out_buf->blue = (in1_buf->blue + (in1_buf + 1)->blue + - in2_buf->blue + (in2_buf + 1)->blue) >> 2; - - in1_buf+=2; /*Skip the next pixel because it is already used above*/ - in2_buf+=2; - out_buf++; + for(x = vdb.vdb_area.x1; x < vdb.vdb_area.x2; x += 2) { + + /*If the pixels are the same do not calculate the average */ + if(in1_buf->full == (in1_buf + 1)->full && + in1_buf->full == in2_buf->full && + in1_buf->full == (in2_buf + 1)->full) { + out_buf->full = in1_buf->full; + } else { + /*Get the average of 2x2 red*/ + out_buf->red = (in1_buf->red + (in1_buf + 1)->red + + in2_buf->red + (in2_buf+ 1)->red) >> 2; + /*Get the average of 2x2 green*/ + out_buf->green = (in1_buf->green + (in1_buf + 1)->green + + in2_buf->green + (in2_buf + 1)->green) >> 2; + /*Get the average of 2x2 blue*/ + out_buf->blue = (in1_buf->blue + (in1_buf + 1)->blue + + in2_buf->blue + (in2_buf + 1)->blue) >> 2; + } + + in1_buf += 2; /*Skip the next pixel because it is already used above*/ + in2_buf += 2; + out_buf ++; } /*2 row is ready so go the next 2*/ in1_buf += w; /*Skip the next row because it is processed from in2_buf*/ @@ -105,6 +113,4 @@ void lv_vdb_flush(void) * STATIC FUNCTIONS **********************/ - - #endif diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index a34433748..ca3d60b7f 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -217,10 +217,12 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) ext->h = header.h; ext->transp = header.transp; +#if LV_ANTIALIAS != 0 if(ext->upscale != 0) { ext->w *= 2; ext->h *= 2; } +#endif } /*Handle symbol texts*/ else { @@ -240,11 +242,6 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) } - if(ext->upscale != 0) { - ext->w *= LV_DOWNSCALE; - ext->h *= LV_DOWNSCALE; - } - if(fn != NULL) { ext->fn = dm_realloc(ext->fn, strlen(fn) + 1); strcpy(ext->fn, fn); @@ -283,7 +280,11 @@ void lv_img_set_auto_size(lv_obj_t * img, bool en) void lv_img_set_upscale(lv_obj_t * img, bool en) { lv_img_ext_t * ext = lv_obj_get_ext(img); - + + /*Upscale works only if antialiassing is enabled*/ +#if LV_ANTIALIAS == 0 + en = false; +#endif ext->upscale = (en == false ? 0 : 1); /*Refresh the image with the new size*/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 5eb8596a1..400dcfd14 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -517,7 +517,6 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ ancestor_design_f(page, mask, mode); } else if(mode == LV_DESIGN_DRAW_POST) { /*Draw the scroll bars finally*/ ancestor_design_f(page, mask, mode); - lv_page_ext_t * ext = lv_obj_get_ext(page); lv_pages_t * style = lv_obj_get_style(page); opa_t sb_opa = lv_obj_get_opa(page) * style->sb_opa /100; @@ -554,6 +553,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ */ static void lv_page_sb_refresh(lv_obj_t * page) { +// return; /*Always let sb_width padding above,under, left and right to the scrollbars * else: * - horizontal and vertical scrollbars can overlap on the corners From 1696d775165577fa320cc6aa1bd8db618cd17179 Mon Sep 17 00:00:00 2001 From: Gabor Date: Thu, 9 Mar 2017 14:25:26 +0100 Subject: [PATCH 19/53] lv_app_files: sned bugfix (first chunk was not sent) --- lv_appx/lv_app_files.c | 58 ++++++++++++++++++------------------------ 1 file changed, 25 insertions(+), 33 deletions(-) diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index 7856c6ac9..e9fb5e378 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -769,41 +769,33 @@ static void start_send(lv_app_inst_t * app, const char * path) /*Open the file*/ fs_res_t res = fs_open(&app_data->file, path, FS_MODE_RD); if(res == FS_RES_OK) { - uint32_t rn; - char rd_buf[LV_APP_FILES_CHUNK_MAX_SIZE]; - - /*Read the first chunk*/ - res = fs_read(&app_data->file, rd_buf, app_data->chunk_size, &rn); - if(res == FS_RES_OK) { - app_data->send_in_prog = 1; - - /*Send the header*/ - if(app_data->send_fn != 0) { - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->path, strlen(app_data->path)); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "/", 1); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->fn, strlen(app_data->fn)); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } - - if(app_data->send_size != 0) { - char buf[64]; - uint32_t size; - fs_size(&app_data->file, &size); - sprintf(buf,"%d", (int) size); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, buf, strlen(buf)); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } - if(app_data->send_crc != 0) { - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "0x0000", 6); - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } - - /*Add an extra \n to separate the header from the file data*/ - if(app_data->send_fn != 0 || app_data->send_size != 0 || app_data->send_crc != 0) { - lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); - } + app_data->send_in_prog = 1; + /*Send the header*/ + if(app_data->send_fn != 0) { + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->path, strlen(app_data->path)); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "/", 1); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, app_data->fn, strlen(app_data->fn)); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); } + + if(app_data->send_size != 0) { + char buf[64]; + uint32_t size; + fs_size(&app_data->file, &size); + sprintf(buf,"%d", (int) size); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, buf, strlen(buf)); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); + } + if(app_data->send_crc != 0) { + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "0x0000", 6); + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); + } + + /*Add an extra \n to separate the header from the file data*/ + if(app_data->send_fn != 0 || app_data->send_size != 0 || app_data->send_crc != 0) { + lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, "\n", 1); + } } /*If an error occurred close the file*/ From 7f49404d62b1d30cfe74f12fd3a3528f0ad49c41 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Mon, 20 Mar 2017 07:07:05 +0100 Subject: [PATCH 20/53] LV_FONT_ANTIALIAS added --- lv_app/lv_app.c | 1 - lv_draw/lv_draw.c | 4 +-- lv_draw/lv_draw_vbasic.c | 68 ++++++++++++++++++++++++++++++++++++---- lv_misc/text.c | 10 +++--- lv_objx/lv_ddlist.c | 11 ++++--- lv_objx/lv_ddlist.h | 1 - lv_objx/lv_label.c | 16 +++++----- lv_objx/lv_ta.c | 13 +++++--- 8 files changed, 92 insertions(+), 32 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 42e7f62b1..935e73182 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -21,7 +21,6 @@ #include "../lv_appx/lv_app_sysmon.h" #include "../lv_appx/lv_app_terminal.h" #include "../lv_appx/lv_app_files.h" -#include "../lv_appx/lv_app_visual.h" /********************* * DEFINES diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 92973b633..88575bc84 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -311,7 +311,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font_p, txt[i], recolor, opa); else letter_fp(&pos, mask_p, font_p, txt[i], style->objs.color, opa); - pos.x += font_get_width(font_p, txt[i]) + style->letter_space; + pos.x += (font_get_width(font_p, txt[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; } /*Go to next line*/ line_start = line_end; @@ -325,7 +325,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, pos.x += (w - line_length) / 2; } /*Go the next line position*/ - pos.y += font_get_height(font_p); + pos.y += font_get_height(font_p) >> LV_FONT_ANTIALIAS; pos.y += style->line_space; } } diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index 19cf6cf31..5e2792918 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -2,7 +2,15 @@ * @file lv_vdraw.c * */ -#include "lv_conf.h" + +#include +#include +#include +#include +#include +#include +#include + #if LV_VDB_SIZE != 0 #include @@ -140,10 +148,12 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, uint8_t col_bit; uint8_t col_byte_cnt; + /* Calculate the col/row start/end on the map + * If font anti alaiassing is enabled use the reduced letter sizes*/ cord_t col_start = pos_p->x > mask_p->x1 ? 0 : mask_p->x1 - pos_p->x; - cord_t col_end = pos_p->x + letter_w < mask_p->x2 ? letter_w : mask_p->x2 - pos_p->x + 1; + cord_t col_end = pos_p->x + (letter_w >> LV_FONT_ANTIALIAS) < mask_p->x2 ? (letter_w >> LV_FONT_ANTIALIAS) : mask_p->x2 - pos_p->x + 1; cord_t row_start = pos_p->y > mask_p->y1 ? 0 : mask_p->y1 - pos_p->y; - cord_t row_end = pos_p->y + letter_h < mask_p->y2 ? letter_h : mask_p->y2 - pos_p->y + 1; + cord_t row_end = pos_p->y + (letter_h >> LV_FONT_ANTIALIAS) < mask_p->y2 ? (letter_h >> LV_FONT_ANTIALIAS) : mask_p->y2 - pos_p->y + 1; /*Set a pointer on VDB to the first pixel of the letter*/ vdb_buf_tmp += ((pos_p->y - vdb_p->vdb_area.y1) * vdb_width) @@ -153,8 +163,53 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, vdb_buf_tmp += (row_start * vdb_width) + col_start; /*Move on the map too*/ - map_p += (row_start * font_p->width_byte) + (col_start>>3); + map_p += ((row_start << LV_FONT_ANTIALIAS) * font_p->width_byte) + ((col_start << LV_FONT_ANTIALIAS) >> 3); +#if LV_FONT_ANTIALIAS != 0 + const uint8_t * map1_p = map_p; + const uint8_t * map2_p = map_p + font_p->width_byte; + uint8_t px_cnt; + for(row = row_start; row < row_end; row ++) { + col_byte_cnt = 0; + col_bit = 7 - ((col_start << LV_FONT_ANTIALIAS) % 8); + for(col = col_start; col < col_end; col ++) { + + px_cnt = 0; + if((*map1_p & (1 << col_bit)) != 0) px_cnt++; + if((*map2_p & (1 << col_bit)) != 0) px_cnt++; + if(col_bit != 0) col_bit --; + else { + col_bit = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + if((*map1_p & (1 << col_bit)) != 0) px_cnt++; + if((*map2_p & (1 << col_bit)) != 0) px_cnt++; + if(col_bit != 0) col_bit --; + else { + col_bit = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + + + if(px_cnt != 0) { + if(opa == OPA_COVER) *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, 63*px_cnt); + else *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, opa); + } + + vdb_buf_tmp++; + } + + map1_p += font_p->width_byte; + map2_p += font_p->width_byte; + map1_p += font_p->width_byte - col_byte_cnt; + map2_p += font_p->width_byte - col_byte_cnt; + vdb_buf_tmp += vdb_width - ((col_end) - (col_start)); /*Next row in VDB*/ + } +#else for(row = row_start; row < row_end; row ++) { col_byte_cnt = 0; col_bit = 7 - (col_start % 8); @@ -164,9 +219,9 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, if(opa == OPA_COVER) *vdb_buf_tmp = color; else *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, opa); } - vdb_buf_tmp++; - /*Use a col. more times depending on LV_UPSCALE_FONT*/ + vdb_buf_tmp++; + if(col_bit != 0) col_bit --; else { col_bit = 7; @@ -178,6 +233,7 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, map_p += font_p->width_byte - col_byte_cnt; vdb_buf_tmp += vdb_width - (col_end - col_start); /*Next row in VDB*/ } +#endif } /** diff --git a/lv_misc/text.c b/lv_misc/text.c index 01ad6568f..24289df31 100644 --- a/lv_misc/text.c +++ b/lv_misc/text.c @@ -57,13 +57,13 @@ void txt_get_size(point_t * size_res, const char * text, const font_t * font, uint32_t line_start = 0; uint32_t new_line_start = 0; cord_t act_line_length; - uint8_t letter_height = font_get_height(font); + uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; /*Calc. the height and longest line*/ while (text[line_start] != '\0') { new_line_start += txt_get_next_line(&text[line_start], font, letter_space, max_width, flag); - size_res->y += letter_height; + size_res->y += letter_height ; size_res->y += line_space; /*Calculate the the longest line*/ @@ -125,7 +125,7 @@ uint16_t txt_get_next_line(const char * txt, const font_t * font, return i+1; /*Return with the first letter of the next line*/ } else { /*Check the actual length*/ - act_l += font_get_width(font, txt[i]); + act_l += font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS; /*If the txt is too long then finish, this is the line end*/ if(act_l > max_l) { @@ -183,14 +183,14 @@ cord_t txt_get_width(const char * txt, uint16_t char_num, continue; } } - len += font_get_width(font, txt[i]); + len += font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS; len += letter_space; } /*Trim closing spaces */ for(i = char_num - 1; i > 0; i--) { if(txt[i] == ' ') { - len -= font_get_width(font, txt[i]); + len -= font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS; len -= letter_space; } else { break; diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 929497abb..f5e494302 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -311,12 +311,13 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m if(ext->opened != 0) { lv_ddlists_t * style = lv_obj_get_style(ddlist); const font_t * font = font_get(style->list_labels.font); + cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; area_t rect_area; rect_area.y1 = ext->opt_label->cords.y1; - rect_area.y1 += ext->sel_opt * (font_get_height(font) + style->list_labels.line_space); + rect_area.y1 += ext->sel_opt * font_h + style->list_labels.line_space; rect_area.y1 -= style->sel_rects.vpad; - rect_area.y2 = rect_area.y1 + font_get_height(font) + 2 * style->sel_rects.vpad; + rect_area.y2 = rect_area.y1 + font_h + 2 * style->sel_rects.vpad; rect_area.x1 = ext->opt_label->cords.x1 - style->pages.scrl_rects.hpad; rect_area.x2 = rect_area.x1 + lv_obj_get_width(lv_page_get_scrl(ddlist)); @@ -393,14 +394,14 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) if(ext->opened != 0) { /*Open the list*/ new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->pages.bg_rects.vpad; lv_obj_t * parent = lv_obj_get_parent(ddlist); - /*Reduce the height is enabler and required*/ + /*Reduce the height if enabled and required*/ if(ext->auto_size != 0 && new_height + ddlist->cords.y1 > parent->cords.y2) { new_height = parent->cords.y2 - ddlist->cords.y1; - } } else { /*Close the list*/ const font_t * font = font_get(style->list_labels.font); - new_height = font_get_height(font) + 2 * style->sel_rects.vpad; + cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + new_height = font_h + 2 * style->sel_rects.vpad; } if(anim_en == false) { lv_obj_set_height(ddlist, new_height); diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 2c60f1f19..0181af0f2 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -11,7 +11,6 @@ *********************/ #include "lv_conf.h" #if USE_LV_DDLIST != 0 - #include "../lv_obj/lv_obj.h" #include "../lv_objx/lv_page.h" #include "../lv_objx/lv_label.h" diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index 345d33dc2..091bbc8f0 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -358,7 +358,7 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) cord_t max_w = lv_obj_get_width(label); lv_labels_t * labels = lv_obj_get_style(label); const font_t * font = font_get(labels->font); - uint8_t letter_height = font_get_height(font); + uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -395,7 +395,7 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) } } - x += font_get_width(font, text[i]) + labels->letter_space; + x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + labels->letter_space; } if(labels->mid != 0) { @@ -425,7 +425,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) cord_t max_w = lv_obj_get_width(label); lv_labels_t * style = lv_obj_get_style(label); const font_t * font = font_get(style->font); - uint8_t letter_height = font_get_height(font); + uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -463,7 +463,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) } } - x += font_get_width(font, text[i]) + style->letter_space; + x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; if(pos->x < x) break; } @@ -595,7 +595,7 @@ static void lv_label_refr_text(lv_obj_t * label) anim.var = label; anim.repeat = 1; anim.playback = 1; - anim.start = font_get_width(font, ' '); + anim.start = font_get_width(font, ' ') >> LV_FONT_ANTIALIAS; anim.act_time = 0; anim.end_cb = NULL; anim.path = anim_get_path(ANIM_PATH_LIN); @@ -605,7 +605,8 @@ static void lv_label_refr_text(lv_obj_t * label) bool hor_anim = false; if(lv_obj_get_width(label) > lv_obj_get_width(parent)) { - anim.end = lv_obj_get_width(parent) - lv_obj_get_width(label) - font_get_width(font, ' '); + anim.end = lv_obj_get_width(parent) - lv_obj_get_width(label) - + (font_get_width(font, ' ') >> LV_FONT_ANTIALIAS); anim.fp = (anim_fp_t) lv_obj_set_x; anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end); anim_create(&anim); @@ -613,7 +614,8 @@ static void lv_label_refr_text(lv_obj_t * label) } if(lv_obj_get_height(label) > lv_obj_get_height(parent)) { - anim.end = lv_obj_get_height(parent) - lv_obj_get_height(label) - font_get_height(font); + anim.end = lv_obj_get_height(parent) - lv_obj_get_height(label) - + (font_get_height(font) - LV_FONT_ANTIALIAS); anim.fp = (anim_fp_t)lv_obj_set_y; /*Different animation speed if horizontal animation is created too*/ diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index 730b39dc7..8a8f5f06a 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -326,9 +326,10 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) } /*Check the bottom*/ - if(label_cords.y1 + cur_pos.y + font_get_height(font_p) + style->pages.scrl_rects.vpad > ta_cords.y2) { + cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; + if(label_cords.y1 + cur_pos.y + font_h + style->pages.scrl_rects.vpad > ta_cords.y2) { lv_obj_set_y(label_par, -(cur_pos.y - lv_obj_get_height(ta) + - font_get_height(font_p) + 2 * style->pages.scrl_rects.vpad)); + font_h + 2 * style->pages.scrl_rects.vpad)); } lv_obj_inv(ta); @@ -380,7 +381,8 @@ void lv_ta_cursor_down(lv_obj_t * ta) /*Increment the y with one line and keep the valid x*/ lv_labels_t * label_style = lv_obj_get_style(ext->label); const font_t * font_p = font_get(label_style->font); - pos.y += font_get_height(font_p) + label_style->line_space + 1; + cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; + pos.y += font_h + label_style->line_space + 1; pos.x = ext->cursor_valid_x; /*Do not go below he last line*/ @@ -406,7 +408,8 @@ void lv_ta_cursor_up(lv_obj_t * ta) /*Decrement the y with one line and keep the valid x*/ lv_labels_t * label_style = lv_obj_get_style(ext->label); const font_t * font = font_get(label_style->font); - pos.y -= font_get_height(font) + label_style->line_space - 1; + cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + pos.y -= font_h + label_style->line_space - 1; pos.x = ext->cursor_valid_x; /*Get the letter index on the new cursor position and set it*/ @@ -543,7 +546,7 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1 - (ta_style->cursor_width >> 1); cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + (ta_style->cursor_width >> 1); - cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + font_get_height(font_get(labels_p->font)); + cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(font_get(labels_p->font)) >> LV_FONT_ANTIALIAS); lv_rects_t cur_rects; lv_rects_get(LV_RECTS_DEF, &cur_rects); From 5b7559ea76da1fb4dcb81b9bfd4149a99ec7dc7a Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 20 Mar 2017 10:23:56 +0100 Subject: [PATCH 21/53] Further draw speed optimizations --- lv_app/lv_app.c | 89 ++++++++++++++++++++++++++++++---------- lv_draw/lv_draw_vbasic.c | 17 +++++--- lv_obj/lv_refr.c | 10 ++++- lv_objx/lv_ddlist.c | 7 ++-- lv_objx/lv_rect.c | 3 -- 5 files changed, 91 insertions(+), 35 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 935e73182..0a12f1e17 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -10,17 +10,19 @@ #if LV_APP_ENABLE != 0 #include +#include "lvgl/lv_misc/anim.h" +#include "lvgl/lv_obj/lv_refr.h" #include "lv_app_util/lv_app_kb.h" #include "lv_app_util/lv_app_notice.h" #include "lv_app_util/lv_app_fsel.h" -#include "lvgl/lv_misc/anim.h" #include "../lv_appx/lv_app_example.h" #include "../lv_appx/lv_app_sysmon.h" #include "../lv_appx/lv_app_terminal.h" #include "../lv_appx/lv_app_files.h" +#include "../lv_appx/lv_app_visual.h" /********************* * DEFINES @@ -75,7 +77,7 @@ static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_obj_t * sc_page; /*A page for the shortcuts */ static lv_app_inst_t * con_send; /*The sender application in connection mode. Not NLL means connection mode is active*/ static lv_app_style_t app_style; /*Styles for application related things*/ -static lv_wins_t wins_no_sb; /*Used when the window is animated. (Do not use scrollbar during the anim.)*/ +static lv_wins_t wins_anim; /*Used when the window is animated. (Do not use scrollbar during the anim.)*/ /*Declare icons*/ #if USE_IMG_CLOSE != 0 LV_IMG_DECLARE(img_close); @@ -254,7 +256,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) #if LV_APP_EFFECT_ANIM != 0 lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_SCROLL); #else - lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(font_get(app_style.sc_title_style.font))); + lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(font_get(app_style.sc_title_style.font)) >> LV_FONT_ANTIALIAS); lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_DOTS); #endif lv_label_set_text(app->sc_title, app->name); @@ -799,14 +801,24 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t lv_app_kb_close(false); #if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA != 0 && LV_APP_ANIM_WIN != 0 - /*Temporally set no scrollbar style for the window*/ - memcpy(&wins_no_sb, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_no_sb.pages.sb_mode = LV_PAGE_SB_MODE_OFF; - lv_obj_set_style(app->win, &wins_no_sb); + /*Temporally set a simpler style for the window during the animation*/ + memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); + wins_anim.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + /*Mix a new color for the header instead of using opacity */ + wins_anim.header_opa = OPA_COVER; + wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, + app_style.win_style.pages.bg_rects.gcolor, + app_style.win_style.header_opa); + + wins_anim.header.objs.color = color_mix(wins_anim.header.objs.color, + app_style.win_style.pages.bg_rects.objs.color, + app_style.win_style.header_opa); + lv_obj_set_style(app->win, &wins_anim); - /*Hide the control buttons and the title during the animation*/ + /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); lv_obj_anim(app->win, LV_ANIM_FLOAT_BOTTOM | ANIM_OUT, LV_APP_ANIM_WIN, 0, NULL); lv_obj_anim(app->win, LV_ANIM_FLOAT_LEFT | ANIM_OUT, LV_APP_ANIM_WIN, 0, lv_app_win_close_anim_cb); @@ -898,14 +910,24 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) lv_obj_get_cords(app->sc, &cords); } - /*Temporally set no scrollbar style for the window*/ - memcpy(&wins_no_sb, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_no_sb.pages.sb_mode = LV_PAGE_SB_MODE_OFF; - lv_obj_set_style(app->win, &wins_no_sb); + /*Temporally set a simpler style for the window during the animation*/ + memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); + wins_anim.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + /*Mix a new color for the header instead of using opacity */ + wins_anim.header_opa = OPA_COVER; + wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, + app_style.win_style.pages.bg_rects.gcolor, + app_style.win_style.header_opa); + + wins_anim.header.objs.color = color_mix(wins_anim.header.objs.color, + app_style.win_style.pages.bg_rects.objs.color, + app_style.win_style.header_opa); + lv_obj_set_style(app->win, &wins_anim); - /*Hide the control buttons and the title during the animation*/ + /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); anim_t a; a.act_time = 0; @@ -939,6 +961,14 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) #endif /*LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0*/ + /* Now a screen sized window is created but is is resized by the animations. + * Therefore the whole screen invalidated but only a small part is changed. + * So clear the invalidate buffer an refresh only the real area. + * Independently other parts on the screen might be changed + * but they will be covered by the window after the animations*/ + lv_inv_area(NULL); + lv_inv_area(&cords); + return LV_ACTION_RES_OK; } @@ -959,15 +989,25 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) } else { lv_obj_get_cords(app->sc, &cords); } - - /*Temporally set no scrollbar style for the window*/ - memcpy(&wins_no_sb, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_no_sb.pages.sb_mode = LV_PAGE_SB_MODE_OFF; - lv_obj_set_style(app->win, &wins_no_sb); - /*Hide the control buttons and the title during the animation*/ + /*Temporally set a simpler style for the window during the animation*/ + memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); + wins_anim.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + /*Mix a new color for the header instead of using opacity */ + wins_anim.header_opa = OPA_COVER; + wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, + app_style.win_style.pages.bg_rects.gcolor, + app_style.win_style.header_opa); + + wins_anim.header.objs.color = color_mix(wins_anim.header.objs.color, + app_style.win_style.pages.bg_rects.objs.color, + app_style.win_style.header_opa); + lv_obj_set_style(app->win, &wins_anim); + + /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); anim_t a; a.act_time = 0; @@ -1016,9 +1056,10 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) */ static void lv_app_win_open_anim_cb(lv_obj_t * app_win) { - /*Unhide the title and the ctrl btn holder*/ + /*Unhide the the elements*/ lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->ctrl_holder, false); lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->title, false); + lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->page.scrl, false); /*Restore the style*/ lv_obj_set_style(app_win, &app_style.win_style); @@ -1065,7 +1106,11 @@ static void lv_app_init_style(void) #else app_style.menu_opa = OPA_80; app_style.menu_btn_opa = OPA_50; - app_style.sc_opa = OPA_80; + app_style.sc_opa = OPA_70; + +// app_style.menu_opa = OPA_COVER; +// app_style.menu_btn_opa = OPA_COVER; +// app_style.sc_opa = OPA_COVER; #endif /*Menu style*/ @@ -1176,7 +1221,7 @@ static void lv_app_init_style(void) memcpy(&app_style.win_style.title, &app_style.menu_btn_label_style, sizeof(lv_labels_t)); memcpy(&app_style.win_style.ctrl_btn, &app_style.menu_btn_style, sizeof(lv_btns_t)); memcpy(&app_style.win_style.ctrl_img, &app_style.menu_btn_img_style, sizeof(lv_imgs_t)); - app_style.win_style.header_opa = OPA_COVER; //app_style.menu_opa; + app_style.win_style.header_opa = app_style.menu_opa; app_style.win_style.ctrl_btn_opa = app_style.menu_btn_opa; app_style.win_style.header.vpad = 5 * LV_DOWNSCALE; app_style.win_style.header.hpad = 5 * LV_DOWNSCALE; diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index 5e2792918..8296b3ef3 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -385,12 +385,19 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, color_t prev_color = COLOR_BLACK; cord_t map_col; - /*The most simple case (but upscale): o opacity, no recolor, no transp. pixels*/ - if(transp == false && opa == OPA_COVER && recolor_opa == OPA_TRANSP) { + /*The most simple case (but upscale): 0 opacity, no recolor, no transp. pixels*/ + if(transp == false && opa == OPA_COVER && recolor_opa == OPA_TRANSP) { + cord_t map_col_start = masked_a.x1 >> 1; + cord_t map_col_end = masked_a.x2 >> 1; + cord_t map_col; + cord_t vdb_col = masked_a.x1; for(row = masked_a.y1; row <= masked_a.y2; row++) { - for(col = masked_a.x1; col <= masked_a.x2; col ++) { - map_col = col >> 1; - vdb_buf_tmp[col].full = map_p[map_col].full; + map_col_start = masked_a.x1 >> 1; + map_col_end = masked_a.x2 >> 1; + vdb_col = masked_a.x1; + for(map_col = map_col_start; map_col <= map_col_end; map_col ++, vdb_col += 2) { + vdb_buf_tmp[vdb_col].full = map_p[map_col].full; + vdb_buf_tmp[vdb_col + 1].full = map_p[map_col].full; } if((row & 0x1) != 0) map_p += map_width; /*Next row on the map*/ vdb_buf_tmp += vdb_width ; /*Next row on the VDB*/ diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index 2738df6b2..174f0382e 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -45,8 +45,8 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p); /********************** * STATIC VARIABLES **********************/ -lv_join_t inv_buf[LV_INV_FIFO_SIZE]; -uint16_t inv_buf_p; +static lv_join_t inv_buf[LV_INV_FIFO_SIZE]; +static uint16_t inv_buf_p; /********************** * MACROS @@ -76,6 +76,12 @@ void lv_refr_init(void) */ void lv_inv_area(const area_t * area_p) { + /*Clear the invalidate buffer if the parameter is NULL*/ + if(area_p == NULL) { + inv_buf_p = 0; + return; + } + area_t scr_area; scr_area.x1 = 0; scr_area.y1 = 0; diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index f5e494302..9bc371198 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -314,7 +314,7 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; area_t rect_area; rect_area.y1 = ext->opt_label->cords.y1; - rect_area.y1 += ext->sel_opt * font_h + style->list_labels.line_space; + rect_area.y1 += ext->sel_opt * (font_h + style->list_labels.line_space); rect_area.y1 -= style->sel_rects.vpad; rect_area.y2 = rect_area.y1 + font_h + 2 * style->sel_rects.vpad; @@ -434,9 +434,10 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); lv_ddlists_t * style = lv_obj_get_style(ddlist); const font_t * font = font_get(style->list_labels.font); - + cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + lv_obj_set_y(lv_page_get_scrl(ddlist), - -(ext->sel_opt * (font_get_height(font) + style->list_labels.line_space) + + -(ext->sel_opt * (font_h + style->list_labels.line_space) + style->pages.scrl_rects.vpad) + style->sel_rects.vpad); } diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_rect.c index 8916fa0f3..626b25741 100644 --- a/lv_objx/lv_rect.c +++ b/lv_objx/lv_rect.c @@ -342,9 +342,6 @@ static void lv_rect_draw_light(lv_obj_t * rect, const area_t * mask) memcpy(&light_style, style, sizeof(lv_rects_t)); - - - light_style.empty = 1; light_style.bwidth = light_size; light_style.round = style->round; From ad899617373bd797a0952907b451e461cb3a9ca1 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 27 Mar 2017 09:27:45 +0200 Subject: [PATCH 22/53] lv_ddlist: bugfix with font antialiassing --- lv_objx/lv_ddlist.c | 5 +++-- lvgl.h | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index f5e494302..21cb4cf1e 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -314,7 +314,7 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; area_t rect_area; rect_area.y1 = ext->opt_label->cords.y1; - rect_area.y1 += ext->sel_opt * font_h + style->list_labels.line_space; + rect_area.y1 += ext->sel_opt * (font_h + style->list_labels.line_space); rect_area.y1 -= style->sel_rects.vpad; rect_area.y2 = rect_area.y1 + font_h + 2 * style->sel_rects.vpad; @@ -434,9 +434,10 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); lv_ddlists_t * style = lv_obj_get_style(ddlist); const font_t * font = font_get(style->list_labels.font); + cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; lv_obj_set_y(lv_page_get_scrl(ddlist), - -(ext->sel_opt * (font_get_height(font) + style->list_labels.line_space) + + -(ext->sel_opt * (font_h + style->list_labels.line_space) + style->pages.scrl_rects.vpad) + style->sel_rects.vpad); } diff --git a/lvgl.h b/lvgl.h index 6e7d7a04c..12fac2b0f 100644 --- a/lvgl.h +++ b/lvgl.h @@ -3,8 +3,8 @@ * Include all LittleV GL related headers */ -#ifndef LV_GL_H -#define LV_GL_H +#ifndef LVGL_H +#define LVGL_H /********************* * INCLUDES @@ -28,7 +28,6 @@ #error "LV: incompatible misc. module version! See lvgl.h" #endif -#include #include "lv_obj/lv_obj.h" #include "lv_objx/lv_btn.h" #include "lv_objx/lv_img.h" @@ -37,6 +36,7 @@ #include "lv_objx/lv_page.h" #include "lv_objx/lv_rect.h" #include "lv_objx/lv_list.h" +#include "lv_objx/lv_chart.h" #include "lv_objx/lv_cb.h" #include "lv_objx/lv_pb.h" #include "lv_objx/lv_led.h" From 4c14c4c762e81b81f5a145508060187a8957e56d Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 10 Apr 2017 11:33:38 +0200 Subject: [PATCH 23/53] BIG UPDTAE: Style renames in the whole library --- lv_app/lv_app.c | 396 ++++++++++++++--------------- lv_app/lv_app.h | 24 +- lv_app/lv_app_util/lv_app_fsel.c | 2 +- lv_app/lv_app_util/lv_app_kb.c | 31 +-- lv_app/lv_app_util/lv_app_notice.c | 7 +- lv_appx/lv_app_files.c | 10 +- lv_appx/lv_app_sysmon.c | 19 +- lv_appx/lv_app_terminal.c | 27 +- lv_conf_temp.h | 1 + lv_draw/lv_draw.c | 223 ++++++++-------- lv_draw/lv_draw.h | 17 +- lv_obj/lv_obj.c | 102 +++----- lv_obj/lv_obj.h | 29 +-- lv_obj/lv_refr.c | 7 +- lv_objx/lv_btn.c | 234 ++++++----------- lv_objx/lv_btn.h | 22 +- lv_objx/lv_btnm.c | 53 ++-- lv_objx/lv_btnm.h | 8 +- lv_objx/lv_cb.c | 55 +--- lv_objx/lv_chart.c | 81 +++--- lv_objx/lv_chart.h | 26 +- lv_objx/lv_ddlist.c | 68 +++-- lv_objx/lv_ddlist.h | 6 +- lv_objx/lv_gauge.c | 4 +- lv_objx/lv_img.c | 20 +- lv_objx/lv_img.h | 4 +- lv_objx/lv_label.c | 72 ++---- lv_objx/lv_label.h | 13 +- lv_objx/lv_led.c | 2 +- lv_objx/lv_line.c | 35 +-- lv_objx/lv_line.h | 6 +- lv_objx/lv_list.c | 149 +++-------- lv_objx/lv_list.h | 12 +- lv_objx/lv_mbox.c | 56 ++-- lv_objx/lv_mbox.h | 2 +- lv_objx/lv_page.c | 136 +++++----- lv_objx/lv_page.h | 16 +- lv_objx/lv_pb.c | 26 +- lv_objx/lv_rect.c | 153 ++++++----- lv_objx/lv_rect.h | 17 +- lv_objx/lv_ta.c | 58 ++--- lv_objx/lv_ta.h | 6 +- lv_objx/lv_win.c | 67 ++--- lv_objx/lv_win.h | 4 +- 44 files changed, 977 insertions(+), 1329 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 0a12f1e17..65617572b 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -40,12 +40,16 @@ typedef struct { * STATIC PROTOTYPES **********************/ +#if LV_APP_DESKTOP != 0 static void lv_app_init_desktop(void); +#endif /*Actions*/ +#if LV_APP_DESKTOP != 0 static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * dispi); static lv_action_res_t lv_app_menu_elem_rel_action(lv_obj_t * app_elem_btn, lv_dispi_t * dispi); static lv_action_res_t lv_app_sc_page_rel_action(lv_obj_t * sc, lv_dispi_t * dispi); +#endif static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi); static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi); static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t * dispi); @@ -70,14 +74,18 @@ static ll_dsc_t app_dsc_ll; /*Store a pointer to the app. descriptors*/ static ll_dsc_t app_inst_ll; /*Store the running apps*/ static ll_dsc_t app_con_ll; /*Store the communication connection between the apps*/ static lv_obj_t * app_scr; /*Screen of the applications*/ -static lv_obj_t * menuh; /*Holder of timg_bubbleshe menu on the top*/ + +#if LV_APP_DESKTOP != 0 +static lv_obj_t * menuh; /*Holder of timg_bubbleshe menu on the top*/ static lv_obj_t * app_btn; /*The "Apps" button on the menu*/ static lv_obj_t * sys_apph; /*Holder of the system app. buttons*/ -static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_obj_t * sc_page; /*A page for the shortcuts */ +#endif + +static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_app_inst_t * con_send; /*The sender application in connection mode. Not NLL means connection mode is active*/ static lv_app_style_t app_style; /*Styles for application related things*/ -static lv_wins_t wins_anim; /*Used when the window is animated. (Do not use scrollbar during the anim.)*/ +static lv_wins_t wins_anim; /*Used when the window is animated. (Do not use scrollbar during the anim.)*/ /*Declare icons*/ #if USE_IMG_CLOSE != 0 LV_IMG_DECLARE(img_close); @@ -142,8 +150,10 @@ void lv_app_init(void) lv_app_init_icons(); lv_app_init_style(); +#if LV_APP_DESKTOP != 0 /*Create the desktop elements*/ lv_app_init_desktop(); +#endif /*Init. the utilities*/ lv_app_kb_init(); @@ -236,19 +246,21 @@ void lv_app_close(lv_app_inst_t * app) */ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) { - /*Save the current position of the scrollable part of the page*/ - cord_t scrl_y = lv_obj_get_y(lv_page_get_scrl(sc_page)); /*Create a basic shortcut*/ +#if LV_APP_DESKTOP != 0 app->sc = lv_btn_create(sc_page, NULL); + lv_page_glue_obj(app->sc, true); +#else + app->sc = lv_btn_create(app_scr, NULL); +#endif lv_obj_set_free_p(app->sc, app); - lv_obj_set_style(app->sc, &app_style.sc_style); - lv_obj_set_opa(app->sc, app_style.sc_opa); + lv_obj_set_style(app->sc, &app_style.sc_bg); lv_obj_set_size(app->sc, LV_APP_SC_WIDTH, LV_APP_SC_HEIGHT); lv_rect_set_layout(app->sc, LV_RECT_LAYOUT_OFF); lv_btn_set_rel_action(app->sc, lv_app_sc_rel_action); lv_btn_set_lpr_action(app->sc, lv_app_sc_lpr_action); - lv_page_glue_obj(app->sc, true); + if((app->dsc->mode & LV_APP_MODE_NO_SC_TITLE) == 0) { /*Create a title on top of the shortcut*/ app->sc_title = lv_label_create(app->sc, NULL); @@ -268,13 +280,12 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) app->sc_data = dm_alloc(app->dsc->sc_data_size); app->dsc->sc_open(app, app->sc); - /* Restore position of the scrollable part of the page because - * it moved when the shortcut is created*/ - lv_obj_set_y(lv_page_get_scrl(sc_page), scrl_y); +#if LV_APP_DESKTOP != 0 #if LV_APP_EFFECT_ANIM == 0 lv_page_focus(sc_page, app->sc, false); #else lv_page_focus(sc_page, app->sc, true); +#endif #endif return app->sc; @@ -310,11 +321,8 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) app->win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_free_p(app->win, app); - lv_obj_set_style(app->win, &app_style.win_style); + lv_obj_set_style(app->win, &app_style.win); lv_win_set_title(app->win, app->dsc->name); - lv_obj_t * win_content = lv_page_get_scrl(app->win); - lv_rect_set_fit(win_content, false, true); - lv_obj_set_width(win_content, LV_HOR_RES - 2 * app_style.win_style.pages.bg_rects.hpad); if(app->dsc->conf_open != NULL) { lv_win_add_ctrl_btn(app->win, "U:/icon_settings", lv_app_win_conf_action); @@ -523,17 +531,13 @@ void lv_app_style_refr(void) { lv_style_refr_all(NULL); - lv_obj_set_opa(menuh, app_style.menu_opa); - lv_obj_set_opa(app_btn, app_style.menu_btn_opa); +#if LV_APP_DESKTOP != 0 + lv_obj_set_width(lv_page_get_scrl(sc_page), LV_HOR_RES - 2 * (app_style.sc_page.bg.hpad)); +#endif - lv_obj_set_width(lv_page_get_scrl(sc_page), - LV_HOR_RES - 2 * (app_style.sc_page_style.bg_rects.hpad)); + app_style.win_useful_w = LV_HOR_RES - 2 * (app_style.win.page.bg.hpad + app_style.win.page.scrl.hpad); - app_style.win_useful_w = LV_HOR_RES - 2 * (app_style.win_style.pages.bg_rects.hpad + - app_style.win_style.pages.scrl_rects.hpad); - - app_style.win_useful_h = LV_VER_RES - 2 * (app_style.win_style.pages.bg_rects.vpad + - app_style.win_style.pages.scrl_rects.vpad); + app_style.win_useful_h = LV_VER_RES - 2 * (app_style.win.page.bg.vpad + app_style.win.page.scrl.vpad); } @@ -550,14 +554,15 @@ lv_app_style_t * lv_app_style_get(void) * STATIC FUNCTIONS **********************/ +#if LV_APP_DESKTOP != 0 /** - * Create the object on the desktop + * Create a desktop-like environment */ static void lv_app_init_desktop(void) { /*Shortcut area*/ sc_page = lv_page_create(lv_scr_act(), NULL); - lv_obj_set_style(sc_page, &app_style.sc_page_style); + lv_obj_set_style(sc_page, &app_style.sc_page); lv_obj_set_size(sc_page, LV_HOR_RES, LV_VER_RES); lv_obj_set_pos(sc_page, 0, 0); lv_rect_set_fit(lv_page_get_scrl(sc_page), false, true); @@ -568,15 +573,15 @@ static void lv_app_init_desktop(void) menuh = lv_rect_create(lv_scr_act(), NULL); lv_obj_set_size(menuh, LV_HOR_RES, app_style.menu_h); lv_obj_set_pos(menuh, 0, 0); - lv_obj_set_style(menuh, &app_style.menu_style); + lv_obj_set_style(menuh, &app_style.menu_bg); app_btn = lv_btn_create(menuh, NULL); - lv_obj_set_style(app_btn, &app_style.menu_btn_style); + lv_obj_set_style(app_btn, &app_style.menu_btn); lv_obj_set_height(app_btn, app_style.menu_h); lv_rect_set_fit(app_btn, true, false); lv_btn_set_rel_action(app_btn, lv_app_menu_rel_action); lv_obj_t * app_label = lv_label_create(app_btn, NULL); - lv_obj_set_style(app_label, &app_style.menu_btn_label_style); + lv_obj_set_style(app_label, &app_style.menu_btn_label); lv_label_set_text(app_label, "Apps"); lv_obj_set_pos(app_btn, 0, 0); @@ -585,19 +590,21 @@ static void lv_app_init_desktop(void) lv_rect_set_fit(sys_apph, true, false); lv_obj_set_height(sys_apph, app_style.menu_h); lv_obj_set_style(sys_apph, lv_rects_get(LV_RECTS_TRANSP, NULL)); - /* clock = lv_label_create(sys_apph, NULL); - lv_obj_set_style(clock, &app_style.menu_btn_label_style); + lv_obj_t * clock = lv_label_create(sys_apph, NULL); + lv_obj_set_style(clock, &app_style.menu_btn_label); lv_label_set_text(clock, "20:17"); -*/ + lv_obj_align(sys_apph, NULL, LV_ALIGN_IN_RIGHT_MID, 0, 0); lv_app_style_refr(); } +#endif /*----------------------- APP. MENU ACTIONS ------------------------*/ +#if LV_APP_DESKTOP != 0 /** * CAlled when the "Apps" button is released to open or close the app. list * @param app_btn pointer to the "Apps" button @@ -614,8 +621,7 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d /*Create the app. list*/ else { app_list = lv_list_create(lv_scr_act(), NULL); - lv_obj_set_style(app_list, &app_style.app_list_style); - lv_obj_set_opar(app_list, app_style.menu_opa); + lv_obj_set_style(app_list, &app_style.app_list); lv_obj_set_size(app_list, app_style.app_list_w, app_style.app_list_h); lv_obj_set_y(app_list, app_style.menu_h); @@ -625,7 +631,6 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d if(((*dsc)->mode & LV_APP_MODE_NOT_LIST) == 0) { elem = lv_list_add(app_list, NULL, (*dsc)->name, lv_app_menu_elem_rel_action); lv_obj_set_free_p(elem, *dsc); - lv_obj_set_opa(elem, app_style.menu_btn_opa); } } } @@ -649,28 +654,15 @@ static lv_action_res_t lv_app_menu_elem_rel_action(lv_obj_t * app_elem_btn, lv_d lv_app_inst_t * app = lv_app_run(dsc, NULL); lv_app_sc_open(app); -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA_ANIM != 0 && LV_APP_ANIM_SC != 0 - anim_t a; - a.act_time = 0; - a.time = LV_APP_ANIM_SC; - a.end_cb = NULL; - a.playback = 0; - a.repeat = 0; - a.var = app->sc; - a.path = anim_get_path(ANIM_PATH_LIN); - a.end = app_style.sc_opa; - a.start = OPA_TRANSP; - a.fp = (anim_fp_t) lv_obj_set_opa; - anim_create(&a); -#endif - return LV_ACTION_RES_INV; } +#endif /*----------------------- SHORTCUT ACTIONS ------------------------*/ +#if LV_APP_DESKTOP != 0 /** * Called when the shortcut page is released to hide the app list and/or * go back from connection mode @@ -689,13 +681,14 @@ static lv_action_res_t lv_app_sc_page_rel_action(lv_obj_t * page, lv_dispi_t * d if(con_send != NULL) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_style); + if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_bg); } con_send = NULL; } return LV_ACTION_RES_OK; } +#endif /** * Called when a shortcut is released to open its window (or close app list if opened) (in normal mode) or @@ -709,10 +702,12 @@ static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi) /*Normal mode*/ if(con_send == NULL) { +#if LV_APP_DESKTOP != 0 #if LV_APP_EFFECT_ANIM == 0 lv_page_focus(sc_page, sc, false); #else lv_page_focus(sc_page, sc, true); +#endif #endif /*Close the list if opened*/ if(app_list != NULL) { @@ -733,11 +728,11 @@ static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi) if(app != con_send) { /*Do nothing with the sender*/ lv_btns_t * style = lv_obj_get_style(sc); /*Add connection to this application*/ - if(style == &app_style.sc_style) { - lv_obj_set_style(sc, &app_style.sc_rec_style); + if(style == &app_style.sc_bg) { + lv_obj_set_style(sc, &app_style.sc_rec_bg); lv_app_con_set(con_send, app); } else { /*Remove the applications connection*/ - lv_obj_set_style(sc, &app_style.sc_style); + lv_obj_set_style(sc, &app_style.sc_bg); lv_app_con_del(con_send, app); } } @@ -759,23 +754,23 @@ static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi) if(con_send == app_send) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_style); + if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_bg); } con_send = NULL; } else { if(con_send != NULL) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_style); + if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_bg); } } con_send = app_send; - lv_obj_set_style(sc, &app_style.sc_send_style); + lv_obj_set_style(sc, &app_style.sc_send_bg); lv_app_inst_t * i; LL_READ(app_inst_ll, i) { if(i->sc != NULL && lv_app_con_check(con_send, i) != false) { - lv_obj_set_style(i->sc, &app_style.sc_rec_style); + lv_obj_set_style(i->sc, &app_style.sc_rec_bg); } } } @@ -803,16 +798,16 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t #if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA != 0 && LV_APP_ANIM_WIN != 0 /*Temporally set a simpler style for the window during the animation*/ memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_anim.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + wins_anim.page.sb_mode = LV_PAGE_SB_MODE_OFF; /*Mix a new color for the header instead of using opacity */ - wins_anim.header_opa = OPA_COVER; + wins_anim.header.base.opa = OPA_COVER; wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, - app_style.win_style.pages.bg_rects.gcolor, - app_style.win_style.header_opa); + app_style.win.page.bg.gcolor, + app_style.win.header.base.opa); - wins_anim.header.objs.color = color_mix(wins_anim.header.objs.color, - app_style.win_style.pages.bg_rects.objs.color, - app_style.win_style.header_opa); + wins_anim.header.base.color = color_mix(wins_anim.header.base.color, + app_style.win.page.bg.base.color, + app_style.win.header.base.opa); lv_obj_set_style(app->win, &wins_anim); /*Hide some elements to speed up the animation*/ @@ -871,14 +866,14 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d app->conf_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_free_p(app->conf_win, app); - lv_obj_set_style(app->conf_win, &app_style.win_style); + lv_obj_set_style(app->conf_win, &app_style.win); char buf[256]; sprintf(buf, "%s settings", app->dsc->name); lv_win_set_title(app->conf_win, buf); - lv_obj_t * set_content = lv_page_get_scrl(app->conf_win); - lv_rect_set_fit(set_content, false, true); - lv_rect_set_layout(set_content, LV_RECT_LAYOUT_COL_L); - lv_obj_set_width(set_content, LV_HOR_RES - 2 * app_style.win_style.pages.bg_rects.hpad); + lv_obj_t * scrl = lv_page_get_scrl(app->conf_win); + lv_rect_set_fit(scrl, false, true); + lv_rect_set_layout(scrl, LV_RECT_LAYOUT_COL_L); + lv_obj_set_width(scrl, LV_HOR_RES - 2 * app_style.win.page.bg.hpad); lv_win_add_ctrl_btn(app->conf_win, "U:/icon_close" ,lv_win_close_action); @@ -912,16 +907,16 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) /*Temporally set a simpler style for the window during the animation*/ memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_anim.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + wins_anim.page.sb_mode = LV_PAGE_SB_MODE_OFF; /*Mix a new color for the header instead of using opacity */ - wins_anim.header_opa = OPA_COVER; + wins_anim.header.base.opa = OPA_COVER; wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, - app_style.win_style.pages.bg_rects.gcolor, - app_style.win_style.header_opa); + app_style.win.page.bg.gcolor, + app_style.win.header.base.opa); - wins_anim.header.objs.color = color_mix(wins_anim.header.objs.color, - app_style.win_style.pages.bg_rects.objs.color, - app_style.win_style.header_opa); + wins_anim.header.base.color = color_mix(wins_anim.header.base.color, + app_style.win.page.bg.base.color, + app_style.win.header.base.opa); lv_obj_set_style(app->win, &wins_anim); /*Hide some elements to speed up the animation*/ @@ -992,16 +987,16 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) /*Temporally set a simpler style for the window during the animation*/ memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_anim.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + wins_anim.page.sb_mode = LV_PAGE_SB_MODE_OFF; /*Mix a new color for the header instead of using opacity */ - wins_anim.header_opa = OPA_COVER; + wins_anim.header.base.opa = OPA_COVER; wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, - app_style.win_style.pages.bg_rects.gcolor, - app_style.win_style.header_opa); + app_style.win.page.bg.gcolor, + app_style.win.header.base.opa); - wins_anim.header.objs.color = color_mix(wins_anim.header.objs.color, - app_style.win_style.pages.bg_rects.objs.color, - app_style.win_style.header_opa); + wins_anim.header.base.color = color_mix(wins_anim.header.base.color, + app_style.win.page.bg.base.color, + app_style.win.header.base.opa); lv_obj_set_style(app->win, &wins_anim); /*Hide some elements to speed up the animation*/ @@ -1062,7 +1057,7 @@ static void lv_app_win_open_anim_cb(lv_obj_t * app_win) lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->page.scrl, false); /*Restore the style*/ - lv_obj_set_style(app_win, &app_style.win_style); + lv_obj_set_style(app_win, &app_style.win); } /** @@ -1093,148 +1088,145 @@ static void lv_app_win_minim_anim_cb(lv_obj_t * app_win) static void lv_app_init_style(void) { /*Coordinates*/ - app_style.menu_h = 40 * LV_DOWNSCALE; +#if LV_APP_DESKTOP != 0 + app_style.menu_h = 4 * LV_DPI / 5; app_style.app_list_w = LV_HOR_RES / 3; app_style.app_list_h = (3 * LV_VER_RES) / 4; - app_style.sc_title_margin = 2 * LV_DOWNSCALE; - - /*Opacity*/ -#if LV_APP_EFFECT_OPA == 0 - app_style.menu_opa = OPA_COVER; - app_style.menu_btn_opa = OPA_COVER; - app_style.sc_opa = OPA_COVER; #else - app_style.menu_opa = OPA_80; - app_style.menu_btn_opa = OPA_50; - app_style.sc_opa = OPA_70; - -// app_style.menu_opa = OPA_COVER; -// app_style.menu_btn_opa = OPA_COVER; -// app_style.sc_opa = OPA_COVER; + app_style.menu_h = 0; + app_style.app_list_w = 0; + app_style.app_list_h = 0; #endif + app_style.sc_title_margin = 2 * LV_DOWNSCALE; + /*Menu style*/ - lv_rects_get(LV_RECTS_DEF,&app_style.menu_style); - app_style.menu_style.objs.color = COLOR_BLACK; - app_style.menu_style.gcolor = COLOR_BLACK; - app_style.menu_style.round = 0; - app_style.menu_style.bwidth = 0; - app_style.menu_style.light = 0; + lv_rects_get(LV_RECTS_PLAIN,&app_style.menu_bg); + app_style.menu_bg.base.color = COLOR_BLACK; + app_style.menu_bg.gcolor = COLOR_BLACK; + app_style.menu_bg.base.opa = OPA_80; + app_style.menu_bg.radius = 0; + app_style.menu_bg.bwidth = 0; + app_style.menu_bg.swidth = 0; + app_style.menu_bg.vpad = LV_DPI / 10; + app_style.menu_bg.hpad = LV_DPI / 10; + app_style.menu_bg.opad = LV_DPI / 10; - lv_btns_get(LV_BTNS_DEF,&app_style.menu_btn_style); - memcpy(&app_style.menu_btn_style.rects, &app_style.menu_style, sizeof(lv_rects_t)); - app_style.menu_btn_style.flags[LV_BTN_STATE_REL].light_en = 0; - app_style.menu_btn_style.flags[LV_BTN_STATE_PR].light_en = 0; + lv_btns_get(LV_BTNS_DEF,&app_style.menu_btn); + app_style.menu_btn.state_style[LV_BTN_STATE_REL].base.color = COLOR_BLACK; + app_style.menu_btn.state_style[LV_BTN_STATE_REL].gcolor = COLOR_BLACK; + app_style.menu_btn.state_style[LV_BTN_STATE_REL].bwidth = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_REL].radius = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_REL].swidth = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_REL].empty = 1; - app_style.menu_btn_style.flags[LV_BTN_STATE_REL].empty = 1; - app_style.menu_btn_style.flags[LV_BTN_STATE_PR].empty = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_GRAY; + app_style.menu_btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_GRAY; + app_style.menu_btn.state_style[LV_BTN_STATE_PR].bwidth = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_PR].radius = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_PR].empty = 0; + app_style.menu_btn.state_style[LV_BTN_STATE_PR].swidth = 0; - app_style.menu_btn_style.mcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.menu_btn_style.gcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.menu_btn_style.mcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - app_style.menu_btn_style.gcolor[LV_BTN_STATE_PR] = COLOR_GRAY; + lv_labels_get(LV_LABELS_BTN,&app_style.menu_btn_label); + app_style.menu_btn_label.font = font_get(LV_APP_FONT_LARGE); + app_style.menu_btn_label.base.color = COLOR_MAKE(0xd0, 0xe0, 0xf0); - lv_labels_get(LV_LABELS_BTN,&app_style.menu_btn_label_style); - app_style.menu_btn_label_style.font = LV_APP_FONT_LARGE; - app_style.menu_btn_label_style.objs.color = COLOR_MAKE(0xd0, 0xe0, 0xf0); - - lv_imgs_get(LV_IMGS_DEF,&app_style.menu_btn_img_style); - app_style.menu_btn_img_style.objs.color = COLOR_WHITE; - app_style.menu_btn_img_style.recolor_opa = OPA_90; + lv_imgs_get(LV_IMGS_DEF,&app_style.menu_btn_img); + app_style.menu_btn_img.base.color = COLOR_WHITE; + app_style.menu_btn_img.recolor_opa = OPA_90; /*App list styles*/ - lv_lists_get(LV_LISTS_SCRL,&app_style.app_list_style); - app_style.app_list_style.widthe_sb = 0; - memcpy(&app_style.app_list_style.bg_pages.scrl_rects, &app_style.menu_style, sizeof(lv_rects_t)); - app_style.app_list_style.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - app_style.app_list_style.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - app_style.app_list_style.bg_pages.scrl_rects.opad = 0 * LV_DOWNSCALE; - memcpy(&app_style.app_list_style.liste_labels, &app_style.menu_btn_label_style, sizeof(lv_labels_t)); - memcpy(&app_style.app_list_style.liste_btns, &app_style.menu_btn_style, sizeof(lv_btns_t)); - app_style.app_list_style.bg_pages.sb_rects.objs.color = COLOR_GRAY; - app_style.app_list_style.bg_pages.sb_rects.gcolor = COLOR_GRAY; - app_style.app_list_style.bg_pages.sb_width = 8 * LV_DOWNSCALE; + lv_lists_get(LV_LISTS_DEF,&app_style.app_list); + app_style.app_list.width_sb = 0; /*Do not keep place for the scrollbar*/ + memcpy(&app_style.app_list.page.scrl, &app_style.menu_bg, sizeof(lv_rects_t)); + app_style.app_list.page.bg.hpad = 0 * LV_DOWNSCALE; + app_style.app_list.page.bg.hpad = 0 * LV_DOWNSCALE; + app_style.app_list.page.bg.vpad = 0 * LV_DOWNSCALE; + app_style.app_list.page.bg.opad = 0 * LV_DOWNSCALE; + app_style.app_list.page.scrl.hpad = 0 * LV_DOWNSCALE; + app_style.app_list.page.scrl.vpad = 0 * LV_DOWNSCALE; + app_style.app_list.page.scrl.opad = 0 * LV_DOWNSCALE; + memcpy(&app_style.app_list.liste_label, &app_style.menu_btn_label, sizeof(lv_labels_t)); + memcpy(&app_style.app_list.liste_btn, &app_style.menu_btn, sizeof(lv_btns_t)); + app_style.app_list.page.sb.base.color = COLOR_GRAY; + app_style.app_list.page.sb.gcolor = COLOR_GRAY; + app_style.app_list.page.sb_width = 8 * LV_DOWNSCALE; /*Shortcut page styles*/ - lv_pages_get(LV_PAGES_DEF,&app_style.sc_page_style); - app_style.sc_page_style.bg_rects.empty = 1; - app_style.sc_page_style.bg_rects.round = 0; - app_style.sc_page_style.bg_rects.bwidth = 0; - app_style.sc_page_style.bg_rects.vpad = app_style.menu_h; - app_style.sc_page_style.bg_rects.hpad = 0; - app_style.sc_page_style.bg_rects.opad = 0; - app_style.sc_page_style.scrl_rects.objs.transp = 1; - app_style.sc_page_style.scrl_rects.hpad = 10 * LV_DOWNSCALE; - app_style.sc_page_style.scrl_rects.vpad = 10 * LV_DOWNSCALE; - app_style.sc_page_style.scrl_rects.opad = 15 * LV_DOWNSCALE; + lv_pages_get(LV_PAGES_TRANSP,&app_style.sc_page); + app_style.sc_page.bg.vpad = app_style.menu_h; + app_style.sc_page.bg.hpad = 0; + app_style.sc_page.bg.opad = 0; + app_style.sc_page.scrl.hpad = 10 * LV_DOWNSCALE; + app_style.sc_page.scrl.vpad = 10 * LV_DOWNSCALE; + app_style.sc_page.scrl.opad = 15 * LV_DOWNSCALE; /*Shortcut styles*/ - lv_btns_get(LV_BTNS_DEF,&app_style.sc_style); - app_style.sc_style.mcolor[LV_BTN_STATE_REL] = COLOR_WHITE; - app_style.sc_style.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - app_style.sc_style.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x40, 0x60, 0x80); - app_style.sc_style.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xB0, 0xD0, 0xF0); - app_style.sc_style.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x00, 0x00, 0x00); - app_style.sc_style.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xB0, 0xD0, 0xF0); - app_style.sc_style.rects.bopa = 70; - app_style.sc_style.rects.bwidth = 1 * LV_DOWNSCALE; + lv_btns_get(LV_BTNS_DEF,&app_style.sc_bg); + app_style.sc_bg.state_style[LV_BTN_STATE_REL].base.opa = OPA_80; + app_style.sc_bg.state_style[LV_BTN_STATE_REL].base.color = COLOR_WHITE; + app_style.sc_bg.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0x20, 0x30, 0x40); + app_style.sc_bg.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x40, 0x60, 0x80); + app_style.sc_bg.state_style[LV_BTN_STATE_REL].bopa = OPA_70; + app_style.sc_bg.state_style[LV_BTN_STATE_REL].bwidth = 1 * LV_DOWNSCALE; + app_style.sc_bg.state_style[LV_BTN_STATE_REL].swidth = 0 * LV_DOWNSCALE; + app_style.sc_bg.state_style[LV_BTN_STATE_PR].base.opa = OPA_80; + app_style.sc_bg.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xB0, 0xD0, 0xF0); + app_style.sc_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x00, 0x00, 0x00); + app_style.sc_bg.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); + app_style.sc_bg.state_style[LV_BTN_STATE_PR].bopa = OPA_70; + app_style.sc_bg.state_style[LV_BTN_STATE_PR].bwidth = 1 * LV_DOWNSCALE; + app_style.sc_bg.state_style[LV_BTN_STATE_PR].swidth = 0 * LV_DOWNSCALE; - memcpy(&app_style.sc_send_style, &app_style.sc_style, sizeof(lv_btns_t)); - app_style.sc_send_style.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xFF, 0xE0, 0xE0); - app_style.sc_send_style.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x50, 0x20, 0x00); - app_style.sc_send_style.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.sc_send_style.flags[LV_BTN_STATE_REL].light_en = 1; - app_style.sc_send_style.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xFF, 0xB0, 0xB0); - app_style.sc_send_style.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x20, 0x10, 0x00); - app_style.sc_send_style.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - app_style.sc_send_style.flags[LV_BTN_STATE_PR].light_en = 1; - app_style.sc_send_style.rects.light = 10 * LV_DOWNSCALE; - app_style.sc_send_style.rects.bopa = 30; - app_style.sc_send_style.rects.bwidth = 3 * LV_DOWNSCALE; + memcpy(&app_style.sc_send_bg, &app_style.sc_bg, sizeof(lv_btns_t)); + app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].base.color = COLOR_MAKE(0xFF, 0xE0, 0xE0); + app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0x50, 0x20, 0x00); + app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].bcolor = COLOR_BLACK; + app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].bopa = OPA_30; + app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].bwidth = 3 * LV_DOWNSCALE; + app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xFF, 0xB0, 0xB0); + app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x20, 0x10, 0x00); + app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_BLACK; + app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].bopa = OPA_30; + app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].bwidth = 3 * LV_DOWNSCALE; - memcpy(&app_style.sc_rec_style, &app_style.sc_style, sizeof(lv_btns_t)); - app_style.sc_rec_style.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xE0, 0xFF, 0xE0); - app_style.sc_rec_style.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x20, 0x50, 0x20); - app_style.sc_rec_style.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - app_style.sc_rec_style.flags[LV_BTN_STATE_REL].light_en = 1; - app_style.sc_rec_style.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xB0, 0xFF, 0xB0); - app_style.sc_rec_style.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x20, 0x20, 0x10); - app_style.sc_rec_style.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - app_style.sc_rec_style.flags[LV_BTN_STATE_PR].light_en = 1; - app_style.sc_rec_style.rects.light = 10 * LV_DOWNSCALE; - app_style.sc_rec_style.rects.bopa = 30; - app_style.sc_rec_style.rects.bwidth = 3 * LV_DOWNSCALE; + memcpy(&app_style.sc_rec_bg, &app_style.sc_bg, sizeof(lv_btns_t)); + app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].base.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); + app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0x20, 0x50, 0x20); + app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].bcolor = COLOR_BLACK; + app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].bopa = OPA_30; + app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].bwidth = 3 * LV_DOWNSCALE; + app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xB0, 0xFF, 0xB0); + app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x20, 0x20, 0x10); + app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].bcolor = COLOR_BLACK; + app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].bopa = OPA_30; + app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].bwidth = 3 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_DEF,&app_style.sc_title_style); - app_style.sc_title_style.font = LV_APP_FONT_SMALL; - app_style.sc_title_style.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); + lv_labels_get(LV_LABELS_TITLE,&app_style.sc_title_style); + app_style.sc_title_style.font = font_get(LV_APP_FONT_SMALL); + app_style.sc_title_style.base.color = COLOR_MAKE(0x10, 0x18, 0x20); app_style.sc_title_style.mid = 1; - lv_labels_get(LV_LABELS_DEF,&app_style.sc_txt_style); - app_style.sc_txt_style.font = LV_APP_FONT_MEDIUM; - app_style.sc_txt_style.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); + lv_labels_get(LV_LABELS_TXT, &app_style.sc_txt_style); + app_style.sc_txt_style.font = font_get(LV_APP_FONT_MEDIUM); + app_style.sc_txt_style.base.color = COLOR_MAKE(0x10, 0x18, 0x20); app_style.sc_txt_style.mid = 1; /*Window styles*/ - lv_wins_get(LV_WINS_DEF,&app_style.win_style); - memcpy(&app_style.win_style.header, &app_style.menu_style, sizeof(lv_rects_t)); - memcpy(&app_style.win_style.title, &app_style.menu_btn_label_style, sizeof(lv_labels_t)); - memcpy(&app_style.win_style.ctrl_btn, &app_style.menu_btn_style, sizeof(lv_btns_t)); - memcpy(&app_style.win_style.ctrl_img, &app_style.menu_btn_img_style, sizeof(lv_imgs_t)); - app_style.win_style.header_opa = app_style.menu_opa; - app_style.win_style.ctrl_btn_opa = app_style.menu_btn_opa; - app_style.win_style.header.vpad = 5 * LV_DOWNSCALE; - app_style.win_style.header.hpad = 5 * LV_DOWNSCALE; - app_style.win_style.header.opad = 5 * LV_DOWNSCALE; - app_style.win_style.pages.bg_rects.vpad = app_style.win_style.ctrl_btn_h + - 2 * app_style.win_style.header.vpad; - app_style.win_style.pages.bg_rects.hpad = 5 * LV_DOWNSCALE; - app_style.win_style.pages.scrl_rects.objs.transp = 1; - app_style.win_style.pages.sb_mode = LV_PAGE_SB_MODE_AUTO; + lv_wins_get(LV_WINS_DEF,&app_style.win); + app_style.win.page.bg.vpad = app_style.win.ctrl_btn_h + 2 * app_style.win.header.vpad; + app_style.win.page.sb_mode = LV_PAGE_SB_MODE_AUTO; + memcpy(&app_style.win.header, &app_style.menu_bg, sizeof(lv_rects_t)); + app_style.win.header.base.opa = app_style.menu_bg.base.opa; + memcpy(&app_style.win.title, &app_style.menu_btn_label, sizeof(lv_labels_t)); + memcpy(&app_style.win.ctrl_btn, &app_style.menu_btn, sizeof(lv_btns_t)); + app_style.win.ctrl_btn.state_style[LV_BTN_STATE_REL].base.opa = app_style.menu_btn.state_style[LV_BTN_STATE_REL].base.opa; + app_style.win.ctrl_btn.state_style[LV_BTN_STATE_PR].base.opa = app_style.menu_btn.state_style[LV_BTN_STATE_REL].base.opa; + memcpy(&app_style.win.ctrl_img, &app_style.menu_btn_img, sizeof(lv_imgs_t)); - lv_labels_get(LV_LABELS_DEF,&app_style.win_txt_style); - app_style.win_txt_style.font = LV_APP_FONT_MEDIUM; - app_style.win_txt_style.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); + lv_labels_get(LV_LABELS_TXT,&app_style.win_txt_style); + app_style.win_txt_style.font = font_get(LV_APP_FONT_MEDIUM); + app_style.win_txt_style.base.color = COLOR_MAKE(0x20, 0x20, 0x20); app_style.win_txt_style.mid = 0; app_style.win_txt_style.letter_space = 1 * LV_DOWNSCALE; } diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index 97378ae02..24460b606 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -71,24 +71,20 @@ typedef struct __LV_APP_DSC_T }lv_app_dsc_t; typedef struct { - lv_rects_t menu_style; - lv_btns_t menu_btn_style; - lv_labels_t menu_btn_label_style; - lv_imgs_t menu_btn_img_style; - lv_lists_t app_list_style; - lv_pages_t sc_page_style; + lv_rects_t menu_bg; + lv_btns_t menu_btn; + lv_labels_t menu_btn_label; + lv_imgs_t menu_btn_img; + lv_lists_t app_list; + lv_pages_t sc_page; lv_labels_t win_txt_style; - lv_wins_t win_style; - lv_btns_t sc_style; - lv_btns_t sc_send_style; - lv_btns_t sc_rec_style; + lv_wins_t win; + lv_btns_t sc_bg; + lv_btns_t sc_send_bg; + lv_btns_t sc_rec_bg; lv_labels_t sc_title_style; lv_labels_t sc_txt_style; - opa_t menu_opa; - opa_t menu_btn_opa; - opa_t sc_opa; - cord_t menu_h; cord_t app_list_w; cord_t app_list_h; diff --git a/lv_app/lv_app_util/lv_app_fsel.c b/lv_app/lv_app_util/lv_app_fsel.c index c4ae5e091..6a58859b3 100644 --- a/lv_app/lv_app_util/lv_app_fsel.c +++ b/lv_app/lv_app_util/lv_app_fsel.c @@ -95,7 +95,7 @@ void lv_app_fsel_open(const char * path, const char * filter, void * param, void lv_app_style_t * app_style = lv_app_style_get(); fsel_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_size(fsel_win, LV_HOR_RES, LV_VER_RES); - lv_obj_set_style(fsel_win, &app_style->win_style); + lv_obj_set_style(fsel_win, &app_style->win); lv_win_add_ctrl_btn(fsel_win, "U:/icon_close", fsel_close_action); diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index f2d74d8f2..6a2c8dfa7 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -78,17 +78,18 @@ static lv_btnms_t kb_btnms; */ void lv_app_kb_init(void) { - lv_btnms_get(LV_BTNMS_DEF, &kb_btnms); - kb_btnms.rects.gcolor = COLOR_WHITE; - kb_btnms.rects.objs.color = COLOR_WHITE; - kb_btnms.rects.opad = 4 + LV_DOWNSCALE; - kb_btnms.rects.vpad = 3 + LV_DOWNSCALE; - kb_btnms.rects.hpad = 3 + LV_DOWNSCALE; - kb_btnms.rects.round = 0; - kb_btnms.rects.bwidth = 0; + lv_app_style_t * app_style = lv_app_style_get(); - kb_btnms.btns.rects.bwidth = 0; - kb_btnms.btns.rects.round = 0; + lv_btnms_get(LV_BTNMS_DEF, &kb_btnms); + + memcpy(&kb_btnms.bg, &app_style->menu_bg, sizeof(lv_rects_t)); + kb_btnms.bg.hpad = 0; + kb_btnms.bg.vpad = 0; + kb_btnms.bg.opad = 0; + memcpy(&kb_btnms.btn, &app_style->menu_btn, sizeof(lv_btns_t)); + kb_btnms.btn.state_style[LV_BTN_STATE_REL].bwidth = 1 * LV_DOWNSCALE; + kb_btnms.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_GRAY; + memcpy(&kb_btnms.label, &app_style->menu_btn_label, sizeof(lv_labels_t)); } /** @@ -117,23 +118,23 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t lv_obj_align(kb_btnm, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); lv_btnm_set_cb(kb_btnm, lv_app_kb_action); if(mode & LV_APP_KB_MODE_TXT) { - kb_btnms.labels.font = LV_APP_FONT_MEDIUM; + kb_btnms.label.font = font_get(LV_APP_FONT_MEDIUM); lv_btnm_set_map(kb_btnm, kb_map_lc); } else if(mode & LV_APP_KB_MODE_NUM) { - kb_btnms.labels.font = LV_APP_FONT_LARGE; + kb_btnms.label.font = font_get(LV_APP_FONT_LARGE); lv_btnm_set_map(kb_btnm, kb_map_num); } lv_obj_set_style(kb_btnm, &kb_btnms); - /*Reduce teh size of the window and align it to the top*/ + /*Reduce the size of the window and align it to the top*/ kb_win = lv_app_win_get_from_obj(kb_ta); lv_obj_set_height(kb_win, LV_VER_RES / 2); lv_obj_set_y(kb_win, 0); - /*If the text area is higher then the new size of the window redus its size too*/ + /*If the text area is higher then the new size of the window reduce its size too*/ lv_app_style_t * app_style = lv_app_style_get(); - cord_t win_h = lv_obj_get_height(kb_win) - 2 * app_style->win_style.pages.scrl_rects.vpad; + cord_t win_h = lv_obj_get_height(kb_win) - 2 * app_style->win.page.bg.vpad; kb_ta_ori_size = lv_obj_get_height(kb_ta); if(lv_obj_get_height(kb_ta) > win_h) { lv_obj_set_height(kb_ta, win_h); diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index b0e03e3d5..d94c08cf4 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -59,8 +59,8 @@ void lv_app_notice_init(void) lv_app_style_t * app_style = lv_app_style_get(); notice_h = lv_rect_create(lv_scr_act(), NULL); - lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - app_style->menu_h); - lv_obj_set_y(notice_h, app_style->menu_h); + lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - app_style->menu_h - LV_DPI / 8); + lv_obj_set_y(notice_h, app_style->menu_h + LV_DPI / 8); lv_obj_set_click(notice_h, false); lv_obj_set_style(notice_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); lv_rect_set_layout(notice_h, LV_RECT_LAYOUT_COL_R); @@ -80,14 +80,11 @@ lv_obj_t * lv_app_notice_add(const char * format, ...) vsprintf(txt,format, va); va_end(va); - lv_app_style_t * app_style = lv_app_style_get(); - lv_obj_t * mbox; mbox = lv_mbox_create(notice_h, NULL); lv_obj_set_style(mbox, lv_mboxs_get(LV_MBOXS_INFO, NULL)); lv_mbox_set_title(mbox, ""); lv_mbox_set_text(mbox, txt); - lv_obj_set_opa(mbox, app_style->menu_opa); #if LV_APP_NOTICE_SHOW_TIME != 0 lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME); diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index e9fb5e378..4373926e7 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -131,7 +131,7 @@ const lv_app_dsc_t * lv_app_files_init(void) { lv_app_style_t * app_style = lv_app_style_get(); memcpy(&sc_labels, &app_style->sc_txt_style, sizeof(lv_labels_t)); - sc_labels.font = LV_APP_FONT_LARGE; + sc_labels.font = font_get(LV_APP_FONT_LARGE); return &my_app_dsc; @@ -281,21 +281,21 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) lv_obj_set_free_num(cb, SEND_SETTINGS_FN); lv_obj_set_free_p(cb, app); lv_btn_set_rel_action(cb, win_send_settings_element_rel_action); - if(app_data->send_fn != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + if(app_data->send_fn != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); else lv_btn_set_state(cb, LV_BTN_STATE_REL); /*Send size check box*/ cb = lv_cb_create(conf_win, cb); lv_cb_set_text(cb, "Send size"); lv_obj_set_free_num(cb, SEND_SETTINGS_SIZE); - if(app_data->send_size != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + if(app_data->send_size != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); else lv_btn_set_state(cb, LV_BTN_STATE_REL); /*Send CRC check box*/ cb = lv_cb_create(conf_win, cb); lv_cb_set_text(cb, "Send CRC"); lv_obj_set_free_num(cb, SEND_SETTINGS_CRC); - if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); else lv_btn_set_state(cb, LV_BTN_STATE_REL); /*Create a text area the type chunk size*/ @@ -313,7 +313,7 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) lv_obj_t * ta; char buf[32]; ta = lv_ta_create(val_set_h, NULL); - lv_obj_set_style(ta, lv_tas_get(LV_TAS_SIMPLE, NULL)); + lv_obj_set_style(ta, lv_tas_get(LV_TAS_DEF, NULL)); lv_rect_set_fit(ta, false, true); lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); lv_obj_set_free_p(ta, app); diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 0cabe7a78..8cd4fe341 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -111,28 +111,28 @@ const lv_app_dsc_t * lv_app_sysmon_init(void) /*Create progress bar styles for the shortcut*/ lv_pbs_get(LV_PBS_DEF, &cpu_pbs); cpu_pbs.bg.gcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); - cpu_pbs.bg.objs.color = COLOR_MAKE(0xFF, 0xD0, 0xD0); + cpu_pbs.bg.base.color = COLOR_MAKE(0xFF, 0xD0, 0xD0); cpu_pbs.bg.bcolor = COLOR_MAKE(0xFF, 0x20, 0x20); cpu_pbs.bg.bwidth = 1 * LV_DOWNSCALE; cpu_pbs.bar.gcolor = COLOR_MARRON; - cpu_pbs.bar.objs.color = COLOR_RED; + cpu_pbs.bar.base.color = COLOR_RED; cpu_pbs.bar.bwidth = 0; - cpu_pbs.label.objs.color = COLOR_MAKE(0x40, 0x00, 0x00); - cpu_pbs.label.font = LV_APP_FONT_MEDIUM; + cpu_pbs.label.base.color = COLOR_MAKE(0x40, 0x00, 0x00); + cpu_pbs.label.font = font_get(LV_APP_FONT_MEDIUM); cpu_pbs.label.line_space = 0; cpu_pbs.label.mid = 1; memcpy(&mem_pbs, &cpu_pbs, sizeof(mem_pbs)); mem_pbs.bg.gcolor = COLOR_MAKE(0xD0, 0xFF, 0xD0); - mem_pbs.bg.objs.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); + mem_pbs.bg.base.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); mem_pbs.bg.bcolor = COLOR_MAKE(0x20, 0xFF, 0x20); mem_pbs.bar.gcolor = COLOR_GREEN; - mem_pbs.bar.objs.color = COLOR_LIME; + mem_pbs.bar.base.color = COLOR_LIME; - mem_pbs.label.objs.color = COLOR_MAKE(0x00, 0x40, 0x00); + mem_pbs.label.base.color = COLOR_MAKE(0x00, 0x40, 0x00); return &my_app_dsc; } @@ -230,6 +230,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Create a chart with two data lines*/ win_data->chart = lv_chart_create(win, NULL); lv_obj_set_size(win_data->chart, LV_HOR_RES / 2, LV_VER_RES / 2); + lv_obj_set_pos(win_data->chart, LV_DPI / 10, LV_DPI / 10); lv_chart_set_pnum(win_data->chart, LV_APP_SYSMON_PNUM); lv_chart_set_range(win_data->chart, 0, 100); lv_chart_set_type(win_data->chart, LV_CHART_LINE); @@ -244,7 +245,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) } /*Create a label for the details of Memory and CPU usage*/ - cord_t opad = app_style->win_style.pages.scrl_rects.opad; + cord_t opad = app_style->win.page.scrl.opad; win_data->label = lv_label_create(win, NULL); lv_label_set_recolor(win_data->label, true); lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_MID, opad, 0); @@ -369,7 +370,7 @@ static void lv_app_sysmon_refr(void) sprintf(buf_short, "%sMem: N/A\nFrag: N/A", buf_short); #endif lv_app_style_t * app_style = lv_app_style_get(); - cord_t opad = app_style->win_style.pages.scrl_rects.opad; + cord_t opad = app_style->win.page.scrl.opad; lv_app_inst_t * app; app = lv_app_get_next(NULL, &my_app_dsc); while(app != NULL) { diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index 85a700e51..a514694e5 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -125,9 +125,9 @@ const lv_app_dsc_t * lv_app_terminal_init(void) sc_txts.line_space = 0; sc_txts.letter_space = 0; sc_txts.mid = 0; - sc_txts.objs.color = COLOR_WHITE; + sc_txts.base.color = COLOR_WHITE; - lv_objs_get(LV_OBJS_DEF, &sc_txt_bgs); + lv_objs_get(LV_OBJS_PLAIN, &sc_txt_bgs); sc_txt_bgs.color = COLOR_MAKE(0x20, 0x20, 0x20); @@ -252,14 +252,14 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) my_app_data_t * app_data = app->app_data; lv_app_style_t * app_style = lv_app_style_get(); - cord_t opad = app_style->win_style.pages.scrl_rects.opad; + cord_t opad = app_style->win.page.scrl.opad; /*Create a label for the text of the terminal*/ win_data->label = lv_label_create(win, NULL); lv_label_set_long_mode(win_data->label, LV_LABEL_LONG_BREAK); lv_obj_set_width(win_data->label, LV_HOR_RES - - 2 * (app_style->win_style.pages.bg_rects.hpad + - app_style->win_style.pages.scrl_rects.hpad)); + 2 * (app_style->win.page.bg.hpad + + app_style->win.page.scrl.hpad)); lv_obj_set_style(win_data->label, &app_style->win_txt_style); lv_label_set_text_static(win_data->label, app_data->txt); /*Use the app. data text directly*/ @@ -271,7 +271,8 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_page_set_rel_action(win_data->ta, win_ta_rel_action); lv_ta_set_text(win_data->ta, ""); lv_obj_set_style(win_data->ta, lv_tas_get(LV_TAS_DEF, NULL)); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); + if(app_data->txt[0] != '\0') lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, opad, opad); + else lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, opad, opad); /*Create a clear button*/ win_data->clear_btn = lv_btn_create(win, NULL); @@ -285,7 +286,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Align the window to see the text area on the bottom*/ lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win_style.pages.scrl_rects.vpad); + - app_style->win.page.scrl.vpad); } @@ -405,12 +406,12 @@ static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) if(win_data != NULL) { lv_app_style_t * app_style =lv_app_style_get(); - cord_t opad = app_style->win_style.pages.scrl_rects.opad; + cord_t opad = app_style->win.page.scrl.opad; lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); + lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, opad, opad); lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win_style.pages.scrl_rects.vpad); + - app_style->win.page.scrl.vpad); } return LV_ACTION_RES_OK; @@ -491,12 +492,12 @@ static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len) lv_app_style_t * app_style = lv_app_style_get(); if(win_data != NULL) { - cord_t opad = app_style->win_style.pages.scrl_rects.opad; + cord_t opad = app_style->win.page.scrl.opad; lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, opad); + lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, opad, opad); lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win_style.pages.scrl_rects.vpad); + - app_style->win.page.scrl.vpad); } /*Set the last line on the shortcut*/ diff --git a/lv_conf_temp.h b/lv_conf_temp.h index 0c37d4cd4..ca9ed3b56 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -26,6 +26,7 @@ * Use LV_DOWNSCALE to compensate * the down scaling effect of antialiassing*/ #define LV_ANTIALIAS 1 +#define LV_FONT_ANTIALIAS 0 /*Set the downscaling value*/ #if LV_ANTIALIAS == 0 #define LV_DOWNSCALE 1 diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 88575bc84..375151b91 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -1,5 +1,5 @@ /** - * @file lv_draw_img.c + * @file lv_draw.c * */ @@ -42,10 +42,10 @@ typedef enum * STATIC PROTOTYPES **********************/ #if USE_LV_RECT != 0 -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa); +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h); #endif /*USE_LV_RECT != 0*/ @@ -70,13 +70,13 @@ static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color #if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 static lv_rects_t lv_img_no_pic_rects = { - .objs.color = COLOR_BLACK, .gcolor = COLOR_BLACK, + .base.color = COLOR_BLACK, .gcolor = COLOR_BLACK, .bcolor = COLOR_RED, .bwidth = 2 * LV_DOWNSCALE, .bopa = 100, - .round = 0, .empty = 0 + .radius = 0, .empty = 0 }; static lv_labels_t lv_img_no_pic_labels = { - .font = LV_FONT_DEFAULT, .objs.color = COLOR_WHITE, + .base.color = COLOR_WHITE, .letter_space = 1 * LV_DOWNSCALE, .line_space = 1 * LV_DOWNSCALE, .mid = 1, }; @@ -96,26 +96,24 @@ static lv_labels_t lv_img_no_pic_labels = { * @param cords_p the coordinates of the rectangle * @param mask_p the rectangle will be drawn only in this mask * @param rects_p pointer to a rectangle style - * @param opa the opacity of the rectangle (0..255) */ -void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, - const lv_rects_t * rects_p, opa_t opa) +void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) { if(area_get_height(cords_p) < 1 || area_get_width(cords_p) < 1) return; if(rects_p->empty == 0){ - lv_draw_rect_main_mid(cords_p, mask_p, rects_p, opa); + lv_draw_rect_main_mid(cords_p, mask_p, rects_p); - if(rects_p->round != 0) { - lv_draw_rect_main_corner(cords_p, mask_p, rects_p, opa); + if(rects_p->radius != 0) { + lv_draw_rect_main_corner(cords_p, mask_p, rects_p); } } if(rects_p->bwidth != 0) { - lv_draw_rect_border_straight(cords_p, mask_p, rects_p, opa); + lv_draw_rect_border_straight(cords_p, mask_p, rects_p); - if(rects_p->round != 0) { - lv_draw_rect_border_corner(cords_p, mask_p, rects_p, opa); + if(rects_p->radius != 0) { + lv_draw_rect_border_corner(cords_p, mask_p, rects_p); } } } @@ -236,21 +234,20 @@ void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t col * @param cords_p coordinates of the label * @param mask_p the label will be drawn only in this area * @param labels_p pointer to a label style - * @param opa opacity of the text (0..255) * @param txt 0 terminated text to write * @param flag settings for the text from 'txt_flag_t' enum */ -void lv_draw_label(const area_t * cords_p,const area_t * mask_p, - const lv_labels_t * style, opa_t opa, const char * txt, txt_flag_t flag) +void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels_t * style, + const char * txt, txt_flag_t flag) { - const font_t * font_p = font_get(style->font); + const font_t * font = style->font; cord_t w = area_get_width(cords_p); /*Init variables for the first line*/ cord_t line_length = 0; uint32_t line_start = 0; - uint32_t line_end = txt_get_next_line(txt, font_p, style->letter_space, w, flag); + uint32_t line_end = txt_get_next_line(txt, font, style->letter_space, w, flag); point_t pos; pos.x = cords_p->x1; @@ -259,7 +256,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, /*Align the line to middle if enabled*/ if(style->mid != 0) { line_length = txt_get_width(&txt[line_start], line_end - line_start, - font_p, style->letter_space, flag); + font, style->letter_space, flag); pos.x += (w - line_length) / 2; } @@ -301,7 +298,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, sscanf(buf, "%02x%02x%02x", &r, &g, &b); recolor = COLOR_MAKE(r, g, b); } else { - recolor.full = style->objs.color.full; + recolor.full = style->base.color.full; } cmd_state = CMD_STATE_IN; /*After the parameter the text is in the command*/ } @@ -309,23 +306,23 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, } } - if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font_p, txt[i], recolor, opa); - else letter_fp(&pos, mask_p, font_p, txt[i], style->objs.color, opa); - pos.x += (font_get_width(font_p, txt[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; + if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font, txt[i], recolor, style->base.opa); + else letter_fp(&pos, mask_p, font, txt[i], style->base.color, style->base.opa); + pos.x += (font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; } /*Go to next line*/ line_start = line_end; - line_end += txt_get_next_line(&txt[line_start], font_p, style->letter_space, w, flag); + line_end += txt_get_next_line(&txt[line_start], font, style->letter_space, w, flag); pos.x = cords_p->x1; /*Align to middle*/ if(style->mid != 0) { line_length = txt_get_width(&txt[line_start], line_end - line_start, - font_p, style->letter_space, flag); + font, style->letter_space, flag); pos.x += (w - line_length) / 2; } /*Go the next line position*/ - pos.y += font_get_height(font_p) >> LV_FONT_ANTIALIAS; + pos.y += font_get_height(font) >> LV_FONT_ANTIALIAS; pos.y += style->line_space; } } @@ -341,11 +338,12 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, * @param opa opacity of the image (0..255) */ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, - const lv_imgs_t * imgs_p, opa_t opa, const char * fn) + const lv_imgs_t * style, const char * fn) { if(fn == NULL) { - lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects, opa); - lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, opa, "No data", TXT_FLAG_NONE); + lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects); + if(lv_img_no_pic_labels.font == NULL) lv_img_no_pic_labels.font = font_get(LV_FONT_DEFAULT); + lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, "No data", TXT_FLAG_NONE); } else { fs_file_t file; fs_res_t res = fs_open(&file, fn, FS_MODE_RD); @@ -414,15 +412,15 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, uint8_t * f_data = ((ufs_file_t*)file.file_d)->ent->data_d; f_data += ((ufs_file_t*)file.file_d)->rwp; ((ufs_file_t*)file.file_d)->rwp += useful_data; - map_fp(&act_area, &mask_sub, (void*)f_data , opa, header.transp, upscale, - imgs_p->objs.color, imgs_p->recolor_opa); + map_fp(&act_area, &mask_sub, (void*)f_data , style->base.opa, header.transp, upscale, + style->base.color, style->recolor_opa); } /*Or read the NOT const files normally*/ else { color_t buf[LV_HOR_RES]; res = fs_read(&file, buf, useful_data, &br); - map_fp(&act_area, &mask_sub, buf, opa, header.transp, upscale, - imgs_p->objs.color, imgs_p->recolor_opa); + map_fp(&act_area, &mask_sub, buf, style->base.opa, header.transp, upscale, + style->base.color, style->recolor_opa); } fs_tell(&file, &act_pos); @@ -435,8 +433,9 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, fs_close(&file); if(res != FS_RES_OK) { - lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects, opa); - lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, opa, fn, TXT_FLAG_NONE); + lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects); + if(lv_img_no_pic_labels.font == NULL) lv_img_no_pic_labels.font = font_get(LV_FONT_DEFAULT); + lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, fn, TXT_FLAG_NONE); } } } @@ -451,12 +450,11 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, * @param p2 second point of the line * @param mask_pthe line will be drawn only on this area * @param lines_p pointer to a line style - * @param opa opacity of the line (0..255) */ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, - const lv_lines_t * lines_p, opa_t opa) + const lv_lines_t * style) { - if(lines_p->width == 0) return; + if(style->width == 0) return; if(p1->x == p2->x && p1->y == p2->y) return; @@ -492,7 +490,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, } /*Make the correction on lie width*/ - width = ((lines_p->width - 1) * width_corr_array[wcor]) >> LINE_WIDTH_CORR_SHIFT; + width = ((style->width - 1) * width_corr_array[wcor]) >> LINE_WIDTH_CORR_SHIFT; width_half = width >> 1; width_1 = width & 0x1 ? 1 : 0; @@ -511,7 +509,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); } if (hor == false && last_x != act_point.x) { area_t act_area; @@ -527,7 +525,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); } /*Calc. the next point of the line*/ @@ -555,7 +553,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); } if (hor == false) { area_t act_area; @@ -569,7 +567,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, lines_p->objs.color, opa); + fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); } } #endif /*USE_LV_LINE != 0*/ @@ -584,15 +582,15 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style - * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) { - uint16_t radius = rects_p->round; + uint16_t radius = rects_p->radius; - color_t main_color = rects_p->objs.color; - color_t grad_color = rects_p->gcolor; + color_t mcolor = rects_p->base.color; + color_t gcolor = rects_p->gcolor; uint8_t mix; + opa_t opa = rects_p->base.opa; cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); @@ -605,10 +603,10 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x2; - if(main_color.full == grad_color.full) { + if(mcolor.full == gcolor.full) { work_area.y1 = cords_p->y1 + radius; work_area.y2 = cords_p->y2 - radius; - fill_fp(&work_area, mask_p, main_color, opa); + fill_fp(&work_area, mask_p, mcolor, opa); } else { cord_t row; @@ -623,7 +621,7 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, work_area.y1 = row; work_area.y2 = row; mix = (uint32_t)((uint32_t)(cords_p->y2 - work_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&work_area, mask_p, act_color, opa); } @@ -634,15 +632,15 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style - * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) { - uint16_t radius = rects_p->round; + uint16_t radius = rects_p->radius; - color_t main_color = rects_p->objs.color; - color_t grad_color = rects_p->gcolor; + color_t mcolor = rects_p->base.color; + color_t gcolor = rects_p->gcolor; color_t act_color; + opa_t opa = rects_p->base.opa; uint8_t mix; cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); @@ -735,25 +733,25 @@ static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask /*Draw the areas which are not disabled*/ if(edge_top_refr != 0){ mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_top_area, mask_p, act_color, opa); } if(mid_top_refr != 0) { mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_top_area, mask_p, act_color, opa); } if(mid_bot_refr != 0) { mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_bot_area, mask_p, act_color, opa); } if(edge_bot_refr != 0) { mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_bot_area, mask_p, act_color, opa); } /*Save the current coordinates*/ @@ -781,20 +779,20 @@ static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask } mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_top_area, mask_p, act_color, opa); if(edge_top_area.y1 != mid_top_area.y1) { mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_top_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_top_area, mask_p, act_color, opa); } mix = (uint32_t)((uint32_t)(cords_p->y2 - mid_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&mid_bot_area, mask_p, act_color, opa); if(edge_bot_area.y1 != mid_bot_area.y1) { mix = (uint32_t)((uint32_t)(cords_p->y2 - edge_bot_area.y1) * 255) / height; - act_color = color_mix(main_color, grad_color, mix); + act_color = color_mix(mcolor, gcolor, mix); fill_fp(&edge_bot_area, mask_p, act_color, opa); } @@ -805,28 +803,27 @@ if(edge_top_area.y1 != mid_top_area.y1) { * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style - * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) { - uint16_t radius = rects_p->round; + uint16_t radius = rects_p->radius; cord_t width = area_get_width(cords_p); cord_t height = area_get_height(cords_p); - uint16_t b_width = rects_p->bwidth; - opa_t b_opa = (uint16_t)((uint16_t) opa * rects_p->bopa) / 100; + uint16_t bwidth = rects_p->bwidth; + opa_t bopa = (uint16_t)((uint16_t) rects_p->base.opa * rects_p->bopa) >> 8; area_t work_area; cord_t length_corr = 0; cord_t corner_size = 0; /*the 0 px border width drawn as 1 px, so decrement the b_width*/ - b_width--; + bwidth--; radius = lv_draw_rect_radius_corr(radius, width, height); - if(radius < b_width) { - length_corr = b_width - radius; - corner_size = b_width; + if(radius < bwidth) { + length_corr = bwidth - radius; + corner_size = bwidth; } else { corner_size = radius; } @@ -838,53 +835,53 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * /*Left border*/ work_area.x1 = cords_p->x1; - work_area.x2 = work_area.x1 + b_width; + work_area.x2 = work_area.x1 + bwidth; work_area.y1 = cords_p->y1 + corner_size; work_area.y2 = cords_p->y2 - corner_size; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); /*Right border*/ work_area.x2 = cords_p->x2; - work_area.x1 = work_area.x2 - b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.x1 = work_area.x2 - bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); /*Upper border*/ work_area.x1 = cords_p->x1 + corner_size - length_corr; work_area.x2 = cords_p->x2 - corner_size + length_corr; work_area.y1 = cords_p->y1; - work_area.y2 = cords_p->y1 + b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y2 = cords_p->y1 + bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); /*Lower border*/ work_area.y2 = cords_p->y2; - work_area.y1 = work_area.y2 - b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y1 = work_area.y2 - bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); /*Draw the a remaining rectangles if the radius is smaller then b_width */ if(length_corr != 0) { work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x1 + radius; work_area.y1 = cords_p->y1 + radius + 1; - work_area.y2 = cords_p->y1 + b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y2 = cords_p->y1 + bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2 - radius; work_area.x2 = cords_p->x2; work_area.y1 = cords_p->y1 + radius + 1; - work_area.y2 = cords_p->y1 + b_width; - fill_fp(&work_area, mask_p, b_color, b_opa); + work_area.y2 = cords_p->y1 + bwidth; + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x1 + radius; - work_area.y1 = cords_p->y2 - b_width; + work_area.y1 = cords_p->y2 - bwidth; work_area.y2 = cords_p->y2 - radius - 1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2 - radius; work_area.x2 = cords_p->x2; - work_area.y1 = cords_p->y2 - b_width; + work_area.y1 = cords_p->y2 - bwidth; work_area.y2 = cords_p->y2 - radius - 1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); } /*If radius == 0 one px on the corners are not drawn*/ @@ -893,25 +890,25 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * work_area.x2 = cords_p->x1; work_area.y1 = cords_p->y1; work_area.y2 = cords_p->y1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2; work_area.x2 = cords_p->x2; work_area.y1 = cords_p->y1; work_area.y2 = cords_p->y1; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x1; work_area.x2 = cords_p->x1; work_area.y1 = cords_p->y2; work_area.y2 = cords_p->y2; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); work_area.x1 = cords_p->x2; work_area.x2 = cords_p->x2; work_area.y1 = cords_p->y2; work_area.y2 = cords_p->y2; - fill_fp(&work_area, mask_p, b_color, b_opa); + fill_fp(&work_area, mask_p, b_color, bopa); } } @@ -923,15 +920,15 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * * @param rects_p pointer to a rectangle style * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p, opa_t opa) +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) { - uint16_t radius = rects_p->round; - uint16_t b_width = rects_p->bwidth; - color_t b_color = rects_p->bcolor; - opa_t b_opa = (uint16_t)((uint16_t) opa * rects_p->bopa ) / 100; + uint16_t radius = rects_p->radius; + uint16_t bwidth = rects_p->bwidth; + color_t bcolor = rects_p->bcolor; + opa_t bopa = (uint16_t)((uint16_t) rects_p->base.opa * rects_p->bopa ) >> 8; - /*0 px border width drawn as 1 px, so decrement the b_width*/ - b_width--; + /*0 px border width drawn as 1 px, so decrement the bwidth*/ + bwidth--; cord_t width = area_get_width(cords_p); cord_t height = area_get_height(cords_p); @@ -961,7 +958,7 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma point_t cir_in; cord_t tmp_in; - cord_t radius_in = radius - b_width; + cord_t radius_in = radius - bwidth; if(radius_in < 0){ radius_in = 0; @@ -989,26 +986,26 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma circ_area.x2 = rb_origo.x + CIRC_OCT1_X(cir_out); circ_area.y1 = rb_origo.y + CIRC_OCT1_Y(cir_out); circ_area.y2 = rb_origo.y + CIRC_OCT1_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); circ_area.x1 = rb_origo.x + CIRC_OCT2_X(cir_out); circ_area.x2 = rb_origo.x + CIRC_OCT2_X(cir_out); circ_area.y1 = rb_origo.y + CIRC_OCT2_Y(cir_out)- act_w1; circ_area.y2 = rb_origo.y + CIRC_OCT2_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Draw the octets to the left bottom corner*/ circ_area.x1 = lb_origo.x + CIRC_OCT3_X(cir_out); circ_area.x2 = lb_origo.x + CIRC_OCT3_X(cir_out); circ_area.y1 = lb_origo.y + CIRC_OCT3_Y(cir_out) - act_w2; circ_area.y2 = lb_origo.y + CIRC_OCT3_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); circ_area.x1 = lb_origo.x + CIRC_OCT4_X(cir_out); circ_area.x2 = lb_origo.x + CIRC_OCT4_X(cir_out) + act_w1; circ_area.y1 = lb_origo.y + CIRC_OCT4_Y(cir_out); circ_area.y2 = lb_origo.y + CIRC_OCT4_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Draw the octets to the left top corner*/ /*Don't draw if the lines are common in the middle*/ @@ -1017,21 +1014,21 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma circ_area.x2 = lt_origo.x + CIRC_OCT5_X(cir_out) + act_w2; circ_area.y1 = lt_origo.y + CIRC_OCT5_Y(cir_out); circ_area.y2 = lt_origo.y + CIRC_OCT5_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); } circ_area.x1 = lt_origo.x + CIRC_OCT6_X(cir_out); circ_area.x2 = lt_origo.x + CIRC_OCT6_X(cir_out); circ_area.y1 = lt_origo.y + CIRC_OCT6_Y(cir_out); circ_area.y2 = lt_origo.y + CIRC_OCT6_Y(cir_out) + act_w1; - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Draw the octets to the right top corner*/ circ_area.x1 = rt_origo.x + CIRC_OCT7_X(cir_out); circ_area.x2 = rt_origo.x + CIRC_OCT7_X(cir_out); circ_area.y1 = rt_origo.y + CIRC_OCT7_Y(cir_out); circ_area.y2 = rt_origo.y + CIRC_OCT7_Y(cir_out) + act_w2; - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); /*Don't draw if the lines are common in the middle*/ if(rb_origo.y + CIRC_OCT1_Y(cir_out) > rt_origo.y + CIRC_OCT8_Y(cir_out)) { @@ -1039,7 +1036,7 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma circ_area.x2 = rt_origo.x + CIRC_OCT8_X(cir_out); circ_area.y1 = rt_origo.y + CIRC_OCT8_Y(cir_out); circ_area.y2 = rt_origo.y + CIRC_OCT8_Y(cir_out); - fill_fp(&circ_area, mask_p, b_color, b_opa); + fill_fp(&circ_area, mask_p, bcolor, bopa); } circ_next(&cir_out, &tmp_out); diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index 728e9213a..eb4b94ca4 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -1,5 +1,5 @@ /** - * @file lv_draw_img.h + * @file lv_draw.h * */ @@ -35,11 +35,9 @@ * @param cords_p the coordinates of the rectangle * @param mask_p the rectangle will be drawn only in this mask * @param rects_p pointer to a rectangle style - * @param opa the opacity of the rectangle (0..255) */ #if USE_LV_RECT != 0 -void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, - const lv_rects_t * rects_p, opa_t opa); +void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); #endif @@ -60,13 +58,12 @@ void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t col * @param cords_p coordinates of the label * @param mask_p the label will be drawn only in this area * @param labels_p pointer to a label style - * @param opa opacity of the text (0..255) * @param txt 0 terminated text to write * @param flags settings for the text from 'txt_flag_t' enum */ #if USE_LV_LABEL != 0 -void lv_draw_label(const area_t * cords_p,const area_t * mask_p, - const lv_labels_t * labels_p, opa_t opa, const char * txt, txt_flag_t flag); +void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels_t * style, + const char * txt, txt_flag_t flag); #endif /** @@ -74,11 +71,10 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, * @param cords_p the coordinates of the image * @param mask_p the image will be drawn only in this area * @param map_p pointer to a color_t array which contains the pixels of the image - * @param opa opacity of the image (0..255) */ #if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 void lv_draw_img(const area_t * cords_p, const area_t * mask_p, - const lv_imgs_t * imgs_p, opa_t opa, const char * fn); + const lv_imgs_t * imgs_p, const char * fn); #endif /** @@ -87,11 +83,10 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, * @param p2 second point of the line * @param mask_pthe line will be drawn only on this area * @param lines_p pointer to a line style - * @param opa opacity of the line (0..255) */ #if USE_LV_LINE != 0 void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, - const lv_lines_t * lines_p, opa_t opa); + const lv_lines_t * lines_p); #endif /********************** diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 757b6ea02..c322c0899 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -36,6 +36,7 @@ static void lv_obj_pos_child_refr(lv_obj_t * obj, cord_t x_diff, cord_t y_diff); static void lv_style_refr_core(void * style_p, lv_obj_t * obj); static void lv_obj_del_child(lv_obj_t * obj); +static void lv_objs_init(void); static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode_t mode); /********************** @@ -45,9 +46,9 @@ static lv_obj_t * def_scr = NULL; static lv_obj_t * act_scr = NULL; static ll_dsc_t scr_ll; -static lv_objs_t lv_objs_def = {.color = COLOR_MAKE(0xa0, 0xc0, 0xe0), .transp = 0}; -static lv_objs_t lv_objs_scr = {.color = LV_OBJ_DEF_SCR_COLOR, .transp = 0}; -static lv_objs_t lv_objs_transp = {.transp = 1}; +static lv_objs_t lv_objs_scr; +static lv_objs_t lv_objs_plain; +static lv_objs_t lv_objs_transp; #ifdef LV_IMG_DEF_WALLPAPER @@ -136,7 +137,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) /*Set appearance*/ new_obj->style_p = lv_objs_get(LV_OBJS_SCR, NULL); - new_obj->opa = OPA_COVER; /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); @@ -178,8 +178,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = 0; /*Set appearance*/ - new_obj->style_p = lv_objs_get(LV_OBJS_DEF, NULL); - new_obj->opa = OPA_COVER; + new_obj->style_p = lv_objs_get(LV_OBJS_PLAIN, NULL); /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); @@ -209,8 +208,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) area_cpy(&new_obj->cords, ©->cords); new_obj->ext_size = copy->ext_size; - new_obj->opa = copy->opa; - /*Set free data*/ new_obj->free_num = copy->free_num; #if LV_OBJ_FREE_P != 0 @@ -330,15 +327,23 @@ bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param) */ lv_objs_t * lv_objs_get(lv_objs_builtin_t style, lv_objs_t * copy_p) { - lv_objs_t *style_p; + static bool style_inited = false; + + /*Make the style initialization if it is not done yet*/ + if(style_inited == false) { + lv_objs_init(); + style_inited = true; + } + + lv_objs_t * style_p; switch(style) { - case LV_OBJS_DEF: - style_p = &lv_objs_def; - break; case LV_OBJS_SCR: style_p = &lv_objs_scr; break; + case LV_OBJS_PLAIN: + style_p = &lv_objs_plain; + break; case LV_OBJS_TRANSP: style_p = &lv_objs_transp; break; @@ -346,10 +351,7 @@ lv_objs_t * lv_objs_get(lv_objs_builtin_t style, lv_objs_t * copy_p) style_p = NULL; } - if(copy_p != NULL) { - if(style_p != NULL) memcpy(copy_p, style_p, sizeof(lv_objs_t)); - else memcpy(copy_p, &lv_objs_def, sizeof(lv_objs_t)); - } + if(copy_p != NULL) memcpy(copy_p, style_p, sizeof(lv_objs_t)); return style_p; } @@ -843,38 +845,6 @@ void * lv_obj_iso_style(lv_obj_t * obj, uint32_t style_size) return obj->style_p; } -/** - * Set the opacity of an object - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) - */ -void lv_obj_set_opa(lv_obj_t * obj, uint8_t opa) -{ - obj->opa = opa; - - lv_obj_inv(obj); -} - -/** - * Set the opacity of an object and all of its children - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) - */ -void lv_obj_set_opar(lv_obj_t * obj, uint8_t opa) -{ - lv_obj_t * i; - - LL_READ(obj->child_ll, i) { - lv_obj_set_opar(i, opa); - } - - /*Set the opacity is the object is not protected*/ - if(lv_obj_is_protected(obj, LV_PROTECT_OPA) == false) obj->opa = opa; - - lv_obj_inv(obj); -} - - /** * Notify an object about its style is modified * @param obj pointer to an object @@ -889,7 +859,7 @@ void lv_obj_refr_style(lv_obj_t * obj) /** * Notify all object if a style is modified - * @param style pinter to a style. Only objects with this style will be notified + * @param style pointer to a style. Only the objects with this style will be notified * (NULL to notify all objects) */ void lv_style_refr_all(void * style) @@ -1117,11 +1087,6 @@ void lv_obj_anim(lv_obj_t * obj, lv_anim_builtin_t type, uint16_t time, uint16_t a.start = lv_obj_get_height(par); a.end = lv_obj_get_y(obj); break; - case LV_ANIM_FADE: - a.fp = (void(*)(void * , int32_t))lv_obj_set_opar; - a.start = OPA_TRANSP; - a.end = OPA_COVER; - break; case LV_ANIM_GROW_H: a.fp = (void(*)(void * , int32_t))lv_obj_set_width; a.start = 0; @@ -1321,16 +1286,6 @@ void * lv_obj_get_style(lv_obj_t * obj) return obj->style_p; } -/** - * Get the opacity of an object - * @param obj pointer to an object - * @return 0 (transparent) .. 255 (fully cover) - */ -opa_t lv_obj_get_opa(lv_obj_t * obj) -{ - return obj->opa; -} - /*----------------- * Attribute get *----------------*/ @@ -1505,16 +1460,13 @@ static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode cover = area_is_in(mask_p, &obj->cords); return cover; } else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_objs_t * objs_p = lv_obj_get_style(obj); - - opa_t opa = lv_obj_get_opa(obj); - color_t color = objs_p->color; + lv_objs_t * style = lv_obj_get_style(obj); /*Simply draw a rectangle*/ #if LV_VDB_SIZE == 0 - lv_rfill(&obj->cords, mask_p, color, opa); + lv_rfill(&obj->cords, mask_p, style->color, style->opa); #else - lv_vfill(&obj->cords, mask_p, color, opa); + lv_vfill(&obj->cords, mask_p, style->color, style->opa); #endif } return true; @@ -1596,4 +1548,14 @@ static void lv_obj_del_child(lv_obj_t * obj) } +static void lv_objs_init(void) +{ + lv_objs_scr.color = LV_OBJ_DEF_SCR_COLOR; + lv_objs_scr.opa = OPA_COVER; + lv_objs_plain.color =COLOR_MAKE(0x88, 0xaf, 0xcb); + lv_objs_plain.opa = OPA_COVER; + + lv_objs_transp.color = lv_objs_plain.color; + lv_objs_transp.opa = OPA_TRANSP; +} diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index 5e3bd7fbf..47d3aa05d 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -106,9 +106,6 @@ typedef struct __LV_OBJ_T cord_t ext_size; /*EXTtend the size of the object in every direction. Used to draw shadow, shine etc.*/ uint8_t free_num; /*Application specific identifier (set it freely)*/ - opa_t opa; - - }lv_obj_t; /*Protect some attributes (max. 8 bit)*/ @@ -150,20 +147,19 @@ typedef enum typedef struct { color_t color; - uint8_t transp :1; + opa_t opa; }lv_objs_t; typedef enum { - LV_OBJS_DEF, LV_OBJS_SCR, + LV_OBJS_PLAIN, LV_OBJS_TRANSP, }lv_objs_builtin_t; typedef enum { LV_ANIM_NONE = 0, - LV_ANIM_FADE, /*Animate the opacity*/ LV_ANIM_FLOAT_TOP, /*Float from/to the top*/ LV_ANIM_FLOAT_LEFT, /*Float from/to the left*/ LV_ANIM_FLOAT_BOTTOM, /*Float from/to the bottom*/ @@ -377,20 +373,6 @@ void lv_obj_set_style(lv_obj_t * obj, void * style); */ void * lv_obj_iso_style(lv_obj_t * obj, uint32_t style_size); -/** - * Set the opacity of an object - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) - */ -void lv_obj_set_opa(lv_obj_t * obj, uint8_t opa); - -/** - * Set the opacity of an object and all of its children - * @param obj pointer to an object - * @param opa 0 (transparent) .. 255(fully cover) - */ -void lv_obj_set_opar(lv_obj_t * obj, uint8_t opa); - /** * Hide an object. It won't be visible and clickable. * @param obj pointer to an object @@ -589,13 +571,6 @@ cord_t lv_obj_getext_size(lv_obj_t * obj); */ void * lv_obj_get_style(lv_obj_t * obj); -/** - * Get the opacity of an object - * @param obj pointer to an object - * @return 0 (transparent) .. 255 (fully cover) - */ -opa_t lv_obj_get_opa(lv_obj_t * obj); - /** * Get the hidden attribute of an object * @param obj pointer to an object diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index 174f0382e..5bded67e3 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -316,8 +316,7 @@ static lv_obj_t * lv_refr_get_top_obj(const area_t * area_p, lv_obj_t * obj) /*If no better children check this object*/ if(found_p == NULL) { - if(obj->opa == OPA_COVER && - LV_SA(obj, lv_objs_t)->transp == 0 && + if(((lv_objs_t *)obj->style_p)->opa == OPA_COVER && obj->design_f(obj, area_p, LV_DESIGN_COVER_CHK) != false) { found_p = obj; } @@ -403,7 +402,7 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) if(union_ok != false) { /* Redraw the object */ - if(obj->opa != OPA_TRANSP && LV_SA(obj, lv_objs_t)->transp == 0) { + if(((lv_objs_t *)obj->style_p)->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_MAIN); /* tick_wait_ms(100); */ /*DEBUG: Wait after every object draw to see the order of drawing*/ } @@ -436,7 +435,7 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) } /* If all the children are redrawn make 'post draw' design */ - if(obj->opa != OPA_TRANSP && LV_SA(obj, lv_objs_t)->transp == 0) { + if(((lv_objs_t *)obj->style_p)->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_POST); } } diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index ffadb9157..510fd3750 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -30,15 +30,15 @@ * STATIC PROTOTYPES **********************/ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t mode); -static void lv_btn_style_load(lv_obj_t * btn, lv_rects_t * new_rects); + static void lv_btns_init(void); /********************** * STATIC VARIABLES **********************/ static lv_btns_t lv_btns_def; -static lv_btns_t lv_btns_transp; static lv_btns_t lv_btns_border; +static lv_btns_t lv_btns_transp; static lv_design_f_t ancestor_design_f; @@ -110,6 +110,13 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) { bool valid; + /*On style change preload the style for the rectangle signal*/ + lv_btn_ext_t * ext = lv_obj_get_ext(btn); + lv_btns_t * style = lv_obj_get_style(btn); + if(sign == LV_SIGNAL_STYLE_CHG) { + memcpy(&style->current, &style->state_style[ext->state], sizeof(lv_rects_t)); + } + /* Include the ancient signal function */ valid = lv_rect_signal(btn, sign, param); @@ -117,7 +124,6 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_btn_state_t state = lv_btn_get_state(btn); - lv_btn_ext_t * ext = lv_obj_get_ext(btn); bool tgl = lv_btn_get_tgl(btn); switch (sign) { @@ -125,8 +131,8 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) /*Refresh the state*/ if(ext->state == LV_BTN_STATE_REL) { lv_btn_set_state(btn, LV_BTN_STATE_PR); - } else if(ext->state == LV_BTN_STATE_TGL_REL) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_PR); + } else if(ext->state == LV_BTN_STATE_TREL) { + lv_btn_set_state(btn, LV_BTN_STATE_TPR); } ext->lpr_exec = 0; @@ -139,17 +145,15 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) case LV_SIGNAL_PRESS_LOST: /*Refresh the state*/ if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); - else if(ext->state == LV_BTN_STATE_TGL_PR) lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); + else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); - lv_obj_inv(btn); break; case LV_SIGNAL_PRESSING: /*When the button begins to drag revert pressed states to released*/ if(lv_dispi_is_dragging(param) != false) { if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); - else if(ext->state == LV_BTN_STATE_TGL_PR) lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); + else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); } - lv_obj_inv(btn); break; case LV_SIGNAL_RELEASED: @@ -158,11 +162,11 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) if(lv_dispi_is_dragging(param) == false && ext->lpr_exec == 0) { if(ext->state == LV_BTN_STATE_PR && tgl == false) { lv_btn_set_state(btn, LV_BTN_STATE_REL); - } else if(ext->state == LV_BTN_STATE_TGL_PR && tgl == false) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); + } else if(ext->state == LV_BTN_STATE_TPR && tgl == false) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); } else if(ext->state == LV_BTN_STATE_PR && tgl == true) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); - } else if(ext->state == LV_BTN_STATE_TGL_PR && tgl == true) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } else if(ext->state == LV_BTN_STATE_TPR && tgl == true) { lv_btn_set_state(btn, LV_BTN_STATE_REL); } @@ -172,10 +176,9 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) } else { /*If dragged change back the state*/ if(ext->state == LV_BTN_STATE_PR) { lv_btn_set_state(btn, LV_BTN_STATE_REL); - } else if(ext->state == LV_BTN_STATE_TGL_PR) { - lv_btn_set_state(btn, LV_BTN_STATE_TGL_REL); + } else if(ext->state == LV_BTN_STATE_TPR) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); } - lv_obj_inv(btn); } break; @@ -227,7 +230,9 @@ void lv_btn_set_state(lv_obj_t * btn, lv_btn_state_t state) lv_btn_ext_t * ext = lv_obj_get_ext(btn); if(ext->state != state) { ext->state = state; - lv_obj_inv(btn); + lv_btns_t * style = lv_obj_get_style(btn); + memcpy(&style->current, &style->state_style[ext->state], sizeof(lv_rects_t)); + lv_obj_refr_style(btn); } } @@ -278,6 +283,7 @@ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action) ext->lpr_rep_action = lpr_rep_action; } + /*===================== * Getter functions *====================*/ @@ -328,20 +334,17 @@ lv_btns_t * lv_btns_get(lv_btns_builtin_t style, lv_btns_t * copy) case LV_BTNS_DEF: style_p = &lv_btns_def; break; + case LV_BTNS_BORDER: + style_p = &lv_btns_border; + break; case LV_BTNS_TRANSP: style_p = &lv_btns_transp; break; - case LV_BTNS_BORDER: - style_p = &lv_btns_border; - break; default: style_p = &lv_btns_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_btns_t)); - else memcpy(copy, &lv_btns_def, sizeof(lv_btns_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_btns_t)); return style_p; } @@ -349,7 +352,6 @@ lv_btns_t * lv_btns_get(lv_btns_builtin_t style, lv_btns_t * copy) /********************** * STATIC FUNCTIONS **********************/ - /** * Handle the drawing related tasks of the buttons * @param btn pointer to a button object @@ -368,13 +370,13 @@ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t /*Temporally set a rectangle style for the button to look like as rectangle*/ lv_rects_t rects_tmp; lv_btns_t * btns_tmp = lv_obj_get_style(btn); + lv_btn_ext_t * ext = lv_obj_get_ext(btn); bool ret = false; - lv_btn_style_load(btn, &rects_tmp); - if(rects_tmp.objs.transp == 0) { - btn->style_p = &rects_tmp; - ret = ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - btn->style_p = btns_tmp; /*Reload the original button style*/ - } + memcpy(&rects_tmp, &btns_tmp->state_style[ext->state], sizeof(lv_rects_t)); + btn->style_p = &rects_tmp; + ret = ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ + btn->style_p = btns_tmp; /*Reload the original button style*/ + return ret; } else if(mode == LV_DESIGN_DRAW_MAIN || mode == LV_DESIGN_DRAW_POST) { area_t area; @@ -383,143 +385,67 @@ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t /*Temporally set a rectangle style for the button to draw it as rectangle*/ lv_rects_t rects_tmp; lv_btns_t * btns_tmp = lv_obj_get_style(btn); - lv_btn_style_load(btn, &rects_tmp); - if(rects_tmp.objs.transp == 0) { - btn->style_p = &rects_tmp; - ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - btn->style_p = btns_tmp; /*Reload the original button style*/ - } + lv_btn_ext_t * ext = lv_obj_get_ext(btn); + memcpy(&rects_tmp, &btns_tmp->state_style[ext->state], sizeof(lv_rects_t)); + btn->style_p = &rects_tmp; + ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ + btn->style_p = btns_tmp; /*Reload the original button style*/ + } return true; } -/** - * Crate a rectangle style according to the state of the button - * @param btn pointer to a button object - * @param new_rects load the style here (pointer to a rectangle style) - */ -static void lv_btn_style_load(lv_obj_t * btn, lv_rects_t * new_rects) -{ - lv_btn_state_t state = lv_btn_get_state(btn); - lv_btns_t * style = lv_obj_get_style(btn); - /*Load the style*/ - memcpy(new_rects, &style->rects, sizeof(lv_rects_t)); - new_rects->objs.color = style->mcolor[state]; - new_rects->gcolor = style->gcolor[state]; - new_rects->bcolor = style->bcolor[state]; - new_rects->lcolor = style->lcolor[state]; - new_rects->empty = style->flags[state].empty; - new_rects->objs.transp = style->flags[state].transp; - - if(style->flags[state].light_en != 0) new_rects->light = style->rects.light; - else new_rects->light = 0; - -} /** * Initialize the button styles */ static void lv_btns_init(void) { - /*Default style*/ - lv_btns_def.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x60, 0x88, 0xb0); - lv_btns_def.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xff, 0xff, 0xff); - lv_btns_def.lcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_REL].light_en = 0; - lv_btns_def.flags[LV_BTN_STATE_REL].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_REL].empty = 0; - lv_btns_def.mcolor[LV_BTN_STATE_PR] =COLOR_MAKE(0x50, 0x68, 0x80); - lv_btns_def.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x18, 0x20, 0x28); - lv_btns_def.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x60, 0x80, 0xa0); - lv_btns_def.lcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_PR].light_en = 0; - lv_btns_def.flags[LV_BTN_STATE_PR].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_PR].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x40, 0x60, 0x80); - lv_btns_def.gcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x10, 0x18, 0x20); - lv_btns_def.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.lcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_TGL_REL].light_en = 1; - lv_btns_def.flags[LV_BTN_STATE_TGL_REL].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_TGL_REL].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x60, 0x80, 0xa0); - lv_btns_def.gcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_btns_def.lcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_TGL_PR].light_en = 1; - lv_btns_def.flags[LV_BTN_STATE_TGL_PR].transp = 0; - lv_btns_def.flags[LV_BTN_STATE_TGL_PR].empty = 0; - - lv_btns_def.mcolor[LV_BTN_STATE_INA] = COLOR_SILVER; - lv_btns_def.gcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_btns_def.bcolor[LV_BTN_STATE_INA] = COLOR_WHITE; - lv_btns_def.lcolor[LV_BTN_STATE_INA] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_btns_def.flags[LV_BTN_STATE_INA].light_en = 0; - lv_btns_def.flags[LV_BTN_STATE_INA].transp= 0; - lv_btns_def.flags[LV_BTN_STATE_INA].empty = 0; - - lv_btns_def.rects.objs.color = lv_btns_def.mcolor[LV_BTN_STATE_REL]; - lv_btns_def.rects.gcolor = lv_btns_def.gcolor[LV_BTN_STATE_REL]; - lv_btns_def.rects.bcolor = lv_btns_def.bcolor[LV_BTN_STATE_REL]; - lv_btns_def.rects.objs.transp = 0; - lv_btns_def.rects.empty = 0; - lv_btns_def.rects.light = 6 * LV_DOWNSCALE; - lv_btns_def.rects.bwidth = 2 * LV_DOWNSCALE; - lv_btns_def.rects.bopa = 70; - lv_btns_def.rects.empty = 0; - lv_btns_def.rects.round = 4 * LV_DOWNSCALE; - lv_btns_def.rects.hpad = 10 * LV_DOWNSCALE; - lv_btns_def.rects.vpad = 15 * LV_DOWNSCALE; - lv_btns_def.rects.opad = 10 * LV_DOWNSCALE; - - /*Transparent style*/ - memcpy(&lv_btns_transp, &lv_btns_def, sizeof(lv_btns_t)); - lv_btns_transp.rects.bwidth = 0; - lv_btns_transp.flags[LV_BTN_STATE_REL].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_REL].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_REL].light_en = 0; - - lv_btns_transp.flags[LV_BTN_STATE_PR].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_PR].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_PR].light_en = 0; - lv_btns_transp.flags[LV_BTN_STATE_TGL_REL].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_REL].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_REL].light_en = 0; - lv_btns_transp.flags[LV_BTN_STATE_TGL_PR].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_PR].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_TGL_PR].light_en = 0; - lv_btns_transp.flags[LV_BTN_STATE_INA].transp = 1; - lv_btns_transp.flags[LV_BTN_STATE_INA].empty = 1; - lv_btns_transp.flags[LV_BTN_STATE_INA].light_en = 0; + /*Default style*/ + lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_REL]); + lv_btns_def.state_style[LV_BTN_STATE_REL].base.color = COLOR_MAKE(0xcc, 0xe0, 0xf5); + lv_btns_def.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0xa6, 0xc9, 0xed); + lv_btns_def.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x33, 0x99, 0xff); + lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_PR]); + lv_btns_def.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xa6, 0xc9, 0xed); + lv_btns_def.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x60, 0x88, 0xb0); + lv_btns_def.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0x33, 0x99, 0xff); + lv_btns_def.state_style[LV_BTN_STATE_PR].swidth = 3 * lv_btns_def.state_style[LV_BTN_STATE_REL].swidth / 4; + lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_TREL]); + lv_btns_def.state_style[LV_BTN_STATE_TREL].base.color = COLOR_MAKE(0xff, 0xed, 0xd3); + lv_btns_def.state_style[LV_BTN_STATE_TREL].gcolor = COLOR_MAKE(0xfc, 0xc7, 0x7a); + lv_btns_def.state_style[LV_BTN_STATE_TREL].bcolor = COLOR_MAKE(0xff, 0x90, 0x00); + lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_TPR]); + lv_btns_def.state_style[LV_BTN_STATE_TPR].base.color = COLOR_MAKE(0xfc, 0xc7, 0x7a); + lv_btns_def.state_style[LV_BTN_STATE_TPR].gcolor = COLOR_MAKE(0xdd, 0x8a, 0x4e); + lv_btns_def.state_style[LV_BTN_STATE_TPR].bcolor = COLOR_MAKE(0xff, 0x90, 0x00); + lv_btns_def.state_style[LV_BTN_STATE_TPR].swidth = 3 * lv_btns_def.state_style[LV_BTN_STATE_TREL].swidth / 4; + lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_INA]); + lv_btns_def.state_style[LV_BTN_STATE_INA].base.color = COLOR_MAKE(0xe0, 0xe0, 0xe0); + lv_btns_def.state_style[LV_BTN_STATE_INA].gcolor = lv_btns_def.state_style[LV_BTN_STATE_INA].base.color; + lv_btns_def.state_style[LV_BTN_STATE_INA].bcolor = COLOR_MAKE(0x80, 0x80, 0x80); - /*Border style*/ - memcpy(&lv_btns_border, &lv_btns_def, sizeof(lv_btns_t)); - lv_btns_border.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_BLACK; - lv_btns_border.bcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_btns_border.flags[LV_BTN_STATE_REL].empty = 1; - lv_btns_border.flags[LV_BTN_STATE_PR].empty = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_REL].empty = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_PR].empty = 0; - lv_btns_border.flags[LV_BTN_STATE_INA].empty = 1; - lv_btns_border.flags[LV_BTN_STATE_REL].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_PR].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_REL].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_TGL_PR].light_en = 0; - lv_btns_border.flags[LV_BTN_STATE_INA].light_en = 0; - lv_btns_border.rects.bwidth = 1 * LV_DOWNSCALE; - lv_btns_border.rects.bopa = 50; - lv_btns_border.rects.round = 4 * LV_DOWNSCALE; - lv_btns_border.rects.hpad = 10 * LV_DOWNSCALE; - lv_btns_border.rects.vpad = 10 * LV_DOWNSCALE; + /*Border style*/ + lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_REL]); + lv_btns_border.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x20, 0x20, 0x20); + lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_PR]); + lv_btns_border.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0x60, 0x60, 0x60); + lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_TREL]); + lv_btns_border.state_style[LV_BTN_STATE_TREL].bcolor = COLOR_MAKE(0x00, 0x33, 0xff); + lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_TPR]); + lv_btns_border.state_style[LV_BTN_STATE_TPR].bcolor = COLOR_MAKE(0x00, 0x33, 0x99); + lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_INA]); + lv_btns_border.state_style[LV_BTN_STATE_INA].bcolor = COLOR_MAKE(0xa0, 0xa0, 0xa0); + + /*Transparent style*/ + lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_REL]); + lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_PR]); + lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_TREL]); + lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_TPR]); + lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_INA]); } #endif diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 5d5b99060..924f27346 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -32,8 +32,8 @@ typedef enum { LV_BTN_STATE_PR, LV_BTN_STATE_REL, - LV_BTN_STATE_TGL_PR, - LV_BTN_STATE_TGL_REL, + LV_BTN_STATE_TPR, + LV_BTN_STATE_TREL, LV_BTN_STATE_INA, LV_BTN_STATE_NUM, }lv_btn_state_t; @@ -53,32 +53,20 @@ typedef struct uint8_t lpr_exec :1; /*1: long press action executed (Not for user)*/ }lv_btn_ext_t; -/*Bits of 'flag' in 'lv_btns_t'*/ -typedef struct -{ - uint8_t light_en :1; - uint8_t transp :1; - uint8_t empty :1; -}lv_btns_bits_t; - /*Style of button*/ typedef struct { - lv_rects_t rects; /*Style of ancestor*/ + lv_rects_t current; /*Current style according to the state. Library use this. Style of ancestor*/ /*New style element for this type */ - color_t mcolor[LV_BTN_STATE_NUM]; - color_t gcolor[LV_BTN_STATE_NUM]; - color_t bcolor[LV_BTN_STATE_NUM]; - color_t lcolor[LV_BTN_STATE_NUM]; - lv_btns_bits_t flags[LV_BTN_STATE_NUM]; + lv_rects_t state_style[LV_BTN_STATE_NUM]; }lv_btns_t; /*Built-in styles of button*/ typedef enum { LV_BTNS_DEF, - LV_BTNS_TRANSP, LV_BTNS_BORDER, + LV_BTNS_TRANSP, }lv_btns_builtin_t; diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index ea8893563..88d49439e 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -215,9 +215,9 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) /*Set size and positions of the buttons*/ lv_btnms_t * btnms = lv_obj_get_style(btnm); - cord_t max_w = lv_obj_get_width(btnm) - 2 * btnms->rects.hpad; - cord_t max_h = lv_obj_get_height(btnm) - 2 * btnms->rects.vpad; - cord_t act_y = btnms->rects.vpad; + cord_t max_w = lv_obj_get_width(btnm) - 2 * btnms->bg.hpad; + cord_t max_h = lv_obj_get_height(btnm) - 2 * btnms->bg.vpad; + cord_t act_y = btnms->bg.vpad; /*Count the lines to calculate button height*/ uint8_t line_cnt = 1; @@ -226,7 +226,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) if(strcmp(map[li], "\n") == 0) line_cnt ++; } - cord_t btn_h = max_h - ((line_cnt - 1) * btnms->rects.opad); + cord_t btn_h = max_h - ((line_cnt - 1) * btnms->bg.opad); btn_h = btn_h / line_cnt; /* Count the units and the buttons in a line @@ -253,11 +253,11 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) /*Only deal with the non empty lines*/ if(btn_cnt != 0) { /*Calculate the width of all units*/ - cord_t all_unit_w = max_w - ((btn_cnt-1) * btnms->rects.opad); + cord_t all_unit_w = max_w - ((btn_cnt-1) * btnms->bg.opad); /*Set the button size and positions and set the texts*/ uint16_t i; - cord_t act_x = btnms->rects.hpad; + cord_t act_x = btnms->bg.hpad; cord_t act_unit_w; unit_act_cnt = 0; for(i = 0; i < btn_cnt; i++) { @@ -267,7 +267,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) act_unit_w = (all_unit_w * lv_btnm_get_width_unit(map_p_tmp[i])) / unit_cnt; /*Always recalculate act_x because of rounding errors */ - act_x = (unit_act_cnt * all_unit_w) / unit_cnt + i * btnms->rects.opad + btnms->rects.hpad; + act_x = (unit_act_cnt * all_unit_w) / unit_cnt + i * btnms->bg.opad + btnms->bg.hpad; area_set(&ext->btn_areas[btn_i], act_x, act_y, @@ -280,7 +280,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) btn_i ++; } } - act_y += btn_h + btnms->rects.opad; + act_y += btn_h + btnms->bg.opad; if(strlen(map_p_tmp[btn_cnt]) == 0) break; /*Break on end of map*/ map_p_tmp = &map_p_tmp[btn_cnt + 1]; /*Set the map to the next line*/ i_tot ++; /*Skip the '\n'*/ @@ -350,10 +350,7 @@ lv_btnms_t * lv_btnms_get(lv_btnms_builtin_t style, lv_btnms_t * copy) style_p = &lv_btnms_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_btnms_t)); - else memcpy(copy, &lv_btnms_def, sizeof(lv_btnms_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_btnms_t)); return style_p; } @@ -405,30 +402,19 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ btn_h = area_get_height(&area_tmp); /*Load the style*/ - lv_rects_t new_rects; lv_btn_state_t state; state = ext->btn_pr == btn_i ? LV_BTN_STATE_PR : LV_BTN_STATE_REL; - memcpy(&new_rects, &style->btns, sizeof(lv_rects_t)); - new_rects.objs.color = style->btns.mcolor[state]; - new_rects.gcolor = style->btns.gcolor[state]; - new_rects.bcolor = style->btns.bcolor[state]; - new_rects.lcolor = style->btns.lcolor[state]; - new_rects.empty = style->btns.flags[state].empty; - new_rects.objs.transp = style->btns.flags[state].transp; - if(style->btns.flags[state].light_en != 0) new_rects.light = style->rects.light; - else new_rects.light = 0; - - lv_draw_rect(&area_tmp, mask, &new_rects, OPA_COVER); + lv_draw_rect(&area_tmp, mask, &style->btn.state_style[state]); /*Search the next valid text in the map*/ while(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; /*Calculate the size of the text*/ - const font_t * font = font_get(style->labels.font); + const font_t * font = style->label.font; point_t txt_size; txt_get_size(&txt_size, ext->map_p[txt_i], font, - style->labels.letter_space, style->labels.line_space, + style->label.letter_space, style->label.line_space, area_get_width(&area_btnm), TXT_FLAG_NONE); area_tmp.x1 += (btn_w - txt_size.x) / 2; @@ -436,7 +422,7 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ area_tmp.x2 = area_tmp.x1 + txt_size.x; area_tmp.y2 = area_tmp.y1 + txt_size.y; - lv_draw_label(&area_tmp, mask, &style->labels, OPA_COVER, ext->map_p[txt_i], TXT_FLAG_NONE); + lv_draw_label(&area_tmp, mask, &style->label, ext->map_p[txt_i], TXT_FLAG_NONE); txt_i ++; } } @@ -452,9 +438,16 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ static void lv_btnms_init(void) { /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_btnms_def.rects); /*Background rectangle style*/ - lv_btns_get(LV_BTNS_DEF, &lv_btnms_def.btns); /*Button style*/ - lv_labels_get(LV_LABELS_BTN, &lv_btnms_def.labels); /*BUtton label style*/ + lv_rects_get(LV_RECTS_PLAIN, &lv_btnms_def.bg); /*Background rectangle style*/ + lv_btnms_def.bg.vpad = LV_DPI / 30; + lv_btnms_def.bg.hpad = LV_DPI / 30; + lv_btnms_def.bg.opad = LV_DPI / 30; + lv_btnms_def.bg.radius = 0; + lv_btnms_def.bg.bwidth = 0; + lv_btns_get(LV_BTNS_DEF, &lv_btnms_def.btn); /*Button style*/ + lv_btnms_def.btn.state_style[LV_BTN_STATE_REL].swidth = 0; + lv_btnms_def.btn.state_style[LV_BTN_STATE_PR].swidth = 0; + lv_labels_get(LV_LABELS_BTN, &lv_btnms_def.label); /*BUtton label style*/ } /** diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index b07e74d9c..f68020baa 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -43,7 +43,7 @@ typedef lv_action_res_t (*lv_btnm_callback_t) (lv_obj_t *, uint16_t); /*Data of button matrix*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_rect_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ const char ** map_p; /*Pointer to the current map*/ area_t * btn_areas; @@ -55,10 +55,10 @@ typedef struct /*Style of button matrix*/ typedef struct { - lv_rects_t rects; /*Style of ancestor*/ + lv_rects_t bg; /*Style of ancestor*/ /*New style element for this type */ - lv_btns_t btns; /*Style of the buttons*/ - lv_labels_t labels; /*Style of the labels on the buttons*/ + lv_btns_t btn; /*Style of the buttons*/ + lv_labels_t label; /*Style of the labels on the buttons*/ }lv_btnms_t; /*Built-in styles of button matrix*/ diff --git a/lv_objx/lv_cb.c b/lv_objx/lv_cb.c index af30f5017..64cac2d0c 100644 --- a/lv_objx/lv_cb.c +++ b/lv_objx/lv_cb.c @@ -192,10 +192,7 @@ lv_cbs_t * lv_cbs_get(lv_cbs_builtin_t style, lv_cbs_t * copy) style_p = &lv_cbs_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_cbs_t)); - else memcpy(copy, &lv_cbs_def, sizeof(lv_cbs_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_cbs_t)); return style_p; } @@ -242,51 +239,23 @@ static void lv_cbs_init(void) /*Default style*/ /*Bg style*/ - lv_btns_get(LV_RECTS_TRANSP, &lv_cbs_def.bg); - lv_cbs_def.bg.rects.hpad = 6 * LV_DOWNSCALE; - lv_cbs_def.bg.rects.vpad = 6 * LV_DOWNSCALE; - lv_cbs_def.bg.rects.opad = 5 * LV_DOWNSCALE; + lv_btns_get(LV_BTNS_TRANSP, &lv_cbs_def.bg); + lv_cbs_def.bg.state_style[LV_BTN_STATE_REL].hpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_REL].vpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_PR].hpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_PR].vpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_TREL].hpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_TREL].vpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_TPR].hpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_TPR].vpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_INA].hpad = LV_DPI / 10; + lv_cbs_def.bg.state_style[LV_BTN_STATE_INA].vpad = LV_DPI / 10; /*Bullet style*/ lv_btns_get(LV_BTNS_DEF, &lv_cbs_def.bullet); - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_REL] = COLOR_WHITE; - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_REL] = COLOR_SILVER; - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_cbs_def.bullet.flags[LV_BTN_STATE_REL].light_en = 0; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_PR] = COLOR_SILVER; - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - lv_cbs_def.bullet.flags[LV_BTN_STATE_PR].light_en = 0; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x10, 0x20, 0x30); - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_WHITE; - lv_cbs_def.bullet.flags[LV_BTN_STATE_TGL_REL].light_en = 1; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x50, 0x70, 0x90); - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_WHITE; - lv_cbs_def.bullet.flags[LV_BTN_STATE_TGL_PR].light_en = 1; - - lv_cbs_def.bullet.mcolor[LV_BTN_STATE_INA] = COLOR_SILVER; - lv_cbs_def.bullet.gcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_cbs_def.bullet.bcolor[LV_BTN_STATE_INA] = COLOR_WHITE; - lv_cbs_def.bullet.flags[LV_BTN_STATE_INA].light_en = 0; - - lv_cbs_def.bullet.rects.bwidth = 2 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.bopa = 70; - lv_cbs_def.bullet.rects.light = 6 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.empty = 0; - lv_cbs_def.bullet.rects.round = LV_OBJ_DEF_WIDTH / 3 / 4; - lv_cbs_def.bullet.rects.hpad = 0 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.vpad = 0 * LV_DOWNSCALE; - lv_cbs_def.bullet.rects.opad = 0 * LV_DOWNSCALE; - /*Label*/ lv_labels_get(LV_LABELS_TXT, &lv_cbs_def.label); - lv_cbs_def.label.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); /*Others*/ lv_cbs_def.bullet_size = LV_OBJ_DEF_WIDTH / 3; diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index c42d109cc..13634e4f5 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -40,7 +40,6 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask); * STATIC VARIABLES **********************/ static lv_charts_t lv_charts_def; -static lv_charts_t lv_charts_transp; static lv_design_f_t ancestor_design_f; /********************** @@ -314,17 +313,11 @@ lv_charts_t * lv_charts_get(lv_charts_builtin_t style, lv_charts_t * copy) case LV_CHARTS_DEF: style_p = &lv_charts_def; break; - case LV_CHARTS_TRANSP: - style_p = &lv_charts_transp; - break; default: style_p = &lv_charts_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_charts_t)); - else memcpy(copy, &lv_charts_def, sizeof(lv_charts_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_charts_t)); return style_p; } @@ -386,14 +379,11 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) lv_chart_ext_t * ext = lv_obj_get_ext(chart); lv_charts_t * style = lv_obj_get_style(chart); - if(style->div_lines.objs.transp != 0) return; - uint8_t div_i; point_t p1; point_t p2; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t div_opa = (uint16_t)lv_obj_get_opa(chart) * style->div_line_opa / 100; cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; p1.x = 0 + x_ofs; @@ -402,7 +392,7 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) p1.y = (int32_t)((int32_t)h * div_i) / (ext->hdiv_num + 1); p1.y += y_ofs; p2.y = p1.y; - lv_draw_line(&p1, &p2, mask, &style->div_lines, div_opa); + lv_draw_line(&p1, &p2, mask, &style->div_line); } p1.y = 0 + y_ofs; @@ -411,7 +401,7 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) p1.x = (int32_t)((int32_t)w * div_i) / (ext->vdiv_num + 1); p1.x += x_ofs; p2.x = p1.x; - lv_draw_line(&p1, &p2, mask, &style->div_lines, div_opa); + lv_draw_line(&p1, &p2, mask, &style->div_line); } } @@ -422,26 +412,26 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style_p = lv_obj_get_style(chart); + lv_charts_t * style = lv_obj_get_style(chart); uint8_t i; point_t p1; point_t p2; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t opa = (uint16_t)lv_obj_get_opa(chart) * style_p->data_opa / 100; cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; int32_t y_tmp; cord_t ** y_data; uint8_t dl_cnt = 0; lv_lines_t lines; - lv_lines_get(LV_LINES_CHART, &lines); + lv_lines_get(LV_LINES_DEF, &lines); + lines.width = style->width; + lines.base.opa = (uint16_t)((uint16_t)style->bg.base.opa * style->data_opa) >> 8; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, y_data) { - lines.objs.color = style_p->color[dl_cnt]; - lines.width = style_p->width; + lines.base.color = style->color[dl_cnt]; p1.x = 0 + x_ofs; p2.x = 0 + x_ofs; @@ -459,7 +449,7 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) y_tmp = y_tmp / (ext->ymax - ext->ymin); p2.y = h - y_tmp + y_ofs; - lv_draw_line(&p1, &p2, mask, &lines, opa); + lv_draw_line(&p1, &p2, mask, &lines); } dl_cnt++; } @@ -473,30 +463,30 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style_p = lv_obj_get_style(chart); + lv_charts_t * style = lv_obj_get_style(chart); uint8_t i; area_t cir_a; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t opa = (uint16_t)lv_obj_get_opa(chart) * style_p->data_opa / 100; cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; int32_t y_tmp; cord_t ** y_data; uint8_t dl_cnt = 0; lv_rects_t rects; - cord_t rad = style_p->width; + cord_t rad = style->width; - lv_rects_get(LV_RECTS_DEF, &rects); + lv_rects_get(LV_RECTS_PLAIN, &rects); rects.bwidth = 0; rects.empty = 0; - rects.round = LV_RECT_CIRCLE; + rects.radius = LV_RECT_CIRCLE; + rects.base.opa = (uint16_t)((uint16_t)style->bg.base.opa * style->data_opa) >> 8; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, y_data) { - rects.objs.color = style_p->color[dl_cnt]; - rects.gcolor = color_mix(COLOR_BLACK, style_p->color[dl_cnt], style_p->dark_eff); + rects.base.color = style->color[dl_cnt]; + rects.gcolor = color_mix(COLOR_BLACK, style->color[dl_cnt], style->dark_eff); for(i = 0; i < ext->pnum; i ++) { cir_a.x1 = ((w * i) / (ext->pnum - 1)) + x_ofs; @@ -509,7 +499,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) cir_a.y2 = cir_a.y1 + rad; cir_a.y1 -= rad; - lv_draw_rect(&cir_a, mask, &rects, opa); + lv_draw_rect(&cir_a, mask, &rects); } dl_cnt++; } @@ -523,7 +513,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style_p = lv_obj_get_style(chart); + lv_charts_t * style = lv_obj_get_style(chart); uint8_t i; area_t col_a; @@ -531,24 +521,24 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) bool mask_ret; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); - opa_t opa = (uint16_t)lv_obj_get_opa(chart) * style_p->data_opa / 100; int32_t y_tmp; cord_t ** y_data; uint8_t dl_cnt = 0; lv_rects_t rects; cord_t col_w = w / (2 * ext->dl_num * ext->pnum); /* Suppose (2 * dl_num) * pnum columns*/ cord_t x_ofs = col_w / 2; /*Shift with a half col.*/ - lv_rects_get(LV_RECTS_DEF, &rects); + lv_rects_get(LV_RECTS_PLAIN, &rects); rects.bwidth = 0; rects.empty = 0; - rects.round = 0; + rects.radius = 0; + rects.base.opa = (uint16_t)((uint16_t)style->bg.base.opa * style->data_opa) >> 8; col_a.y2 = chart->cords.y2; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, y_data) { - rects.objs.color = style_p->color[dl_cnt]; - rects.gcolor = color_mix(COLOR_BLACK, style_p->color[dl_cnt], style_p->dark_eff); + rects.base.color = style->color[dl_cnt]; + rects.gcolor = color_mix(COLOR_BLACK, style->color[dl_cnt], style->dark_eff); for(i = 0; i < ext->pnum; i ++) { /* Calculate the x coordinates. Suppose (2 * dl_num) * pnum columns and draw to every second @@ -564,14 +554,13 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) col_a.x1 += x_ofs; col_a.x2 += x_ofs; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); col_a.y1 = h - y_tmp + chart->cords.y1; mask_ret = area_union(&col_mask, mask, &col_a); if(mask_ret != false) { - lv_draw_rect(&chart->cords, &col_mask, &rects, opa); + lv_draw_rect(&chart->cords, &col_mask, &rects); } } dl_cnt++; @@ -585,21 +574,18 @@ static void lv_charts_init(void) { /*Default style*/ /* Background */ - lv_rects_get(LV_RECTS_DEF, &lv_charts_def.bg_rects); - lv_charts_def.bg_rects.objs.color = COLOR_MAKE(0x60, 0x80, 0xA0); - lv_charts_def.bg_rects.gcolor = COLOR_WHITE; - lv_charts_def.bg_rects.bcolor = COLOR_BLACK; + lv_rects_get(LV_RECTS_FANCY, &lv_charts_def.bg); /* Div. line */ - lv_lines_get(LV_LINES_DECOR, &lv_charts_def.div_lines); - lv_charts_def.div_lines.width = 1 * LV_DOWNSCALE; - lv_charts_def.div_lines.objs.color = COLOR_BLACK; - lv_charts_def.div_line_opa = OPA_COVER; + lv_lines_get(LV_LINES_DEF, &lv_charts_def.div_line); + lv_charts_def.div_line.width = 1 * LV_DOWNSCALE; + lv_charts_def.div_line.base.color = COLOR_GRAY; + lv_charts_def.div_line.base.opa = OPA_50; /*Data lines*/ lv_charts_def.width = 2 * LV_DOWNSCALE; - lv_charts_def.data_opa = 100; - lv_charts_def.dark_eff = 150; + lv_charts_def.data_opa = OPA_COVER; + lv_charts_def.dark_eff = OPA_70; lv_charts_def.color[0] = COLOR_RED; lv_charts_def.color[1] = COLOR_GREEN; lv_charts_def.color[2] = COLOR_BLUE; @@ -609,11 +595,6 @@ static void lv_charts_init(void) lv_charts_def.color[6] = COLOR_WHITE; lv_charts_def.color[7] = COLOR_GRAY; - - memcpy(&lv_charts_transp, &lv_charts_def, sizeof(lv_charts_t)); - lv_charts_transp.bg_rects.empty = 1; - lv_charts_transp.bg_rects.bwidth = 0; - lv_charts_transp.div_lines.objs.transp = 1; } #endif diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index d782dc81a..70df5e06f 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -33,13 +33,13 @@ /********************** * TYPEDEFS **********************/ -/*Data of chart background*/ +/*Data of chart */ typedef struct { - lv_rect_ext_t bg_rects; /*Ext. of ancestor*/ + lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ /*New data for this type */ - cord_t ymin; - cord_t ymax; + cord_t ymin; /*y min value (used to scale the data)*/ + cord_t ymax; /*y max value (used to scale the data)*/ uint8_t hdiv_num; /*Number of horizontal division lines*/ uint8_t vdiv_num; /*Number of vertical division lines*/ ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores cord_t * )*/ @@ -56,24 +56,22 @@ typedef enum LV_CHART_POINT, }lv_chart_type_t; -/*Style of chart background*/ +/*Style of chart*/ typedef struct { - lv_rects_t bg_rects; /*Style of ancestor*/ + lv_rects_t bg; /*Style of the ancestor*/ /*New style element for this type */ - lv_lines_t div_lines; - uint8_t div_line_opa; /*Percentage of obj. opacity*/ - color_t color[LV_CHART_DL_NUM]; /*Line/Point/Col color */ - uint16_t width; /*Line width or point radius*/ - opa_t data_opa; /*Line/Point/Col opacity in the percentage of obj. opacity*/ - uint8_t dark_eff; /*Dark effect on the bottom of ó points and columns*/ + lv_lines_t div_line; + color_t color[LV_CHART_DL_NUM]; /*Line/Point/Col colors */ + cord_t width; /*Data line width or point radius*/ + opa_t data_opa; /*Line/Point/Col opacity*/ + opa_t dark_eff; /*Dark effect on the bottom of points and columns*/ }lv_charts_t; -/*Built-in styles of chart background*/ +/*Built-in styles of chart*/ typedef enum { LV_CHARTS_DEF, - LV_CHARTS_TRANSP, }lv_charts_builtin_t; /********************** diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 21cb4cf1e..11c85134f 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -34,7 +34,7 @@ static void lv_ddlists_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_ddlists_t lv_ddlists_def; /*Default drop down list style*/ +static lv_ddlists_t lv_ddlists_def; static lv_design_f_t ancestor_design_f; static const char * def_options[] = {"Option 1", "Option 2", "Option 3", ""}; /********************** @@ -129,7 +129,7 @@ bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param) /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ break; case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->opt_label, &style->list_labels); + lv_obj_set_style(ext->opt_label, &style->label); lv_ddlist_refr_size(ddlist, false); break; default: @@ -273,10 +273,7 @@ lv_ddlists_t * lv_ddlists_get(lv_ddlists_builtin_t style, lv_ddlists_t * copy) style_p = &lv_ddlists_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_ddlists_t)); - else memcpy(copy, &lv_ddlists_def, sizeof(lv_ddlists_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_ddlists_t)); return style_p; } @@ -310,18 +307,18 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); if(ext->opened != 0) { lv_ddlists_t * style = lv_obj_get_style(ddlist); - const font_t * font = font_get(style->list_labels.font); + const font_t * font = style->label.font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; area_t rect_area; rect_area.y1 = ext->opt_label->cords.y1; - rect_area.y1 += ext->sel_opt * (font_h + style->list_labels.line_space); - rect_area.y1 -= style->sel_rects.vpad; + rect_area.y1 += ext->sel_opt * (font_h + style->label.line_space); + rect_area.y1 -= style->sel.vpad; - rect_area.y2 = rect_area.y1 + font_h + 2 * style->sel_rects.vpad; - rect_area.x1 = ext->opt_label->cords.x1 - style->pages.scrl_rects.hpad; + rect_area.y2 = rect_area.y1 + font_h + 2 * style->sel.vpad; + rect_area.x1 = ext->opt_label->cords.x1 - style->page.scrl.hpad; rect_area.x2 = rect_area.x1 + lv_obj_get_width(lv_page_get_scrl(ddlist)); - lv_draw_rect(&rect_area, mask, &style->sel_rects, OPA_COVER); + lv_draw_rect(&rect_area, mask, &style->sel); } } /*Post draw when the children are drawn*/ @@ -392,16 +389,16 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) lv_ddlists_t * style = lv_obj_get_style(ddlist); cord_t new_height; if(ext->opened != 0) { /*Open the list*/ - new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->pages.bg_rects.vpad; + new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->page.bg.vpad; lv_obj_t * parent = lv_obj_get_parent(ddlist); /*Reduce the height if enabled and required*/ if(ext->auto_size != 0 && new_height + ddlist->cords.y1 > parent->cords.y2) { new_height = parent->cords.y2 - ddlist->cords.y1; } } else { /*Close the list*/ - const font_t * font = font_get(style->list_labels.font); + const font_t * font = style->label.font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; - new_height = font_h + 2 * style->sel_rects.vpad; + new_height = font_h + 2 * style->sel.vpad; } if(anim_en == false) { lv_obj_set_height(ddlist, new_height); @@ -433,12 +430,12 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); lv_ddlists_t * style = lv_obj_get_style(ddlist); - const font_t * font = font_get(style->list_labels.font); + const font_t * font = style->label.font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; lv_obj_set_y(lv_page_get_scrl(ddlist), - -(ext->sel_opt * (font_h + style->list_labels.line_space) + - style->pages.scrl_rects.vpad) + style->sel_rects.vpad); + -(ext->sel_opt * (font_h + style->label.line_space) + + style->page.scrl.vpad) + style->sel.vpad); } @@ -447,29 +444,28 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) */ static void lv_ddlists_init(void) { - /*Default style*/ - lv_pages_get(LV_PAGES_SIMPLE, &lv_ddlists_def.pages); - lv_ddlists_def.pages.bg_rects.objs.color = COLOR_WHITE; - lv_ddlists_def.pages.bg_rects.gcolor = COLOR_SILVER; - lv_ddlists_def.pages.bg_rects.bcolor = COLOR_GRAY; + /*Plain style*/ + lv_pages_get(LV_PAGES_PAPER, &lv_ddlists_def.page); + lv_ddlists_def.page.bg.base.color = COLOR_WHITE; + lv_ddlists_def.page.bg.gcolor = COLOR_SILVER; + lv_ddlists_def.page.bg.bopa = OPA_50; + lv_ddlists_def.page.bg.swidth = LV_DPI / 8; - lv_ddlists_def.pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_ddlists_def.pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_ddlists_def.pages.bg_rects.opad = 0; + lv_ddlists_def.page.scrl.hpad = LV_DPI / 10; + lv_ddlists_def.page.scrl.vpad = LV_DPI / 4; + lv_ddlists_def.page.scrl.opad = 0; - lv_ddlists_def.pages.scrl_rects.hpad = 5 * LV_DOWNSCALE; - lv_ddlists_def.pages.scrl_rects.vpad = 10 * LV_DOWNSCALE; - lv_ddlists_def.pages.scrl_rects.opad = 0 * LV_DOWNSCALE; + lv_ddlists_def.page.sb_mode = LV_PAGE_SB_MODE_OFF; - lv_ddlists_def.pages.sb_mode = LV_PAGE_SB_MODE_OFF; + lv_labels_get(LV_LABELS_TXT, &lv_ddlists_def.label); + lv_ddlists_def.label.line_space = LV_DPI / 4; + + lv_rects_get(LV_RECTS_PLAIN, &lv_ddlists_def.sel); + lv_ddlists_def.sel.bwidth = 0; + lv_ddlists_def.sel.radius = 0; + lv_ddlists_def.sel.vpad = LV_DPI / 8; - lv_labels_get(LV_LABELS_DEF, &lv_ddlists_def.list_labels); - lv_ddlists_def.list_labels.line_space = 15 * LV_DOWNSCALE; - lv_rects_get(LV_RECTS_DEF, &lv_ddlists_def.sel_rects); - lv_ddlists_def.sel_rects.bwidth = 0; - lv_ddlists_def.sel_rects.round = 0; - lv_ddlists_def.sel_rects.vpad = 7 * LV_DOWNSCALE; } #endif diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 0181af0f2..91a4fd101 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -37,10 +37,10 @@ typedef struct /*Style of drop down list*/ typedef struct { - lv_pages_t pages; /*Style of ancestor*/ + lv_pages_t page; /*Style of ancestor*/ /*New style element for this type */ - lv_rects_t sel_rects; - lv_labels_t list_labels; + lv_rects_t sel; /*Select rectangle*/ + lv_labels_t label; /*Style of labels*/ }lv_ddlists_t; /*Built-in styles of drop down list*/ diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 1c668b28e..38d0abb0b 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -495,7 +495,7 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask) area_t nm_cord; lv_rects_get(LV_RECTS_DEF, &nm); nm.bwidth = 0; - nm.round = LV_RECT_CIRCLE; + nm.radius = LV_RECT_CIRCLE; nm.objs.color = style->needle_mid_color; nm.gcolor = style->needle_mid_color; @@ -515,7 +515,7 @@ static void lv_gauges_init(void) { /*Default style*/ lv_rects_get(LV_RECTS_DEF, &lv_gauges_def.rects); - lv_gauges_def.rects.round = LV_RECT_CIRCLE; + lv_gauges_def.rects.radius = LV_RECT_CIRCLE; lv_gauges_def.rects.bwidth = 4 * LV_DOWNSCALE; lv_gauges_def.rects.objs.color = COLOR_MAKE(0x00, 0xaa, 0x00);//GREEN; lv_gauges_def.rects.gcolor = COLOR_BLACK; diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index ca3d60b7f..bce0ba46e 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -229,7 +229,7 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) #if LV_IMG_ENABLE_SYMBOLS lv_imgs_t * imgs = lv_obj_get_style(img); point_t size; - txt_get_size(&size, fn, font_get(imgs->sym_font), 0, 0, LV_CORD_MAX, TXT_FLAG_NONE); + txt_get_size(&size, fn, imgs->sym_font, 0, 0, LV_CORD_MAX, TXT_FLAG_NONE); ext->w = size.x; ext->h = size.y; ext->transp = 0; @@ -351,16 +351,15 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t #if LV_IMG_ENABLE_SYMBOLS != 0 bool sym = lv_img_is_symbol(ext->fn); lv_labels_t sym_style; - lv_labels_get(LV_LABELS_DEF, &sym_style); + lv_labels_get(LV_LABELS_TXT, &sym_style); sym_style.font = imgs_p->sym_font; sym_style.letter_space = 0; sym_style.line_space = 0; sym_style.mid = 0; - sym_style.objs.color = imgs_p->objs.color; + sym_style.base.color = imgs_p->base.color; #endif lv_obj_get_cords(img, &cords); - opa_t opa = lv_obj_get_opa(img); area_t cords_tmp; cords_tmp.y1 = cords.y1; @@ -374,8 +373,8 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t #if LV_IMG_ENABLE_SYMBOLS == 0 lv_draw_img(&cords_tmp, mask, imgs_p, opa, ext->fn); #else - if(sym == false) lv_draw_img(&cords_tmp, mask, imgs_p, opa, ext->fn); - else lv_draw_label(&cords_tmp, mask, &sym_style, opa, ext->fn, TXT_FLAG_NONE); + if(sym == false) lv_draw_img(&cords_tmp, mask, imgs_p, ext->fn); + else lv_draw_label(&cords_tmp, mask, &sym_style, ext->fn, TXT_FLAG_NONE); #endif } } @@ -412,18 +411,19 @@ static bool lv_img_is_symbol(const char * txt) static void lv_imgs_init(void) { /*Default style*/ - lv_imgs_def.objs.color = COLOR_BLACK; + lv_imgs_def.base.color = COLOR_BLACK; + lv_imgs_def.base.opa = OPA_COVER; lv_imgs_def.recolor_opa = OPA_TRANSP; #if LV_IMG_ENABLE_SYMBOLS != 0 - lv_imgs_def.sym_font = LV_IMG_DEF_SYMBOL_FONT; + lv_imgs_def.sym_font = font_get(LV_IMG_DEF_SYMBOL_FONT); #endif /*Dark style*/ memcpy(&lv_imgs_dark, &lv_imgs_def, sizeof(lv_imgs_t)); - lv_imgs_dark.objs.color = COLOR_BLACK; lv_imgs_dark.recolor_opa = OPA_50; + lv_imgs_dark.base.color = COLOR_BLACK; lv_imgs_dark.recolor_opa = OPA_50; /*Light style*/ memcpy(&lv_imgs_light, &lv_imgs_dark, sizeof(lv_imgs_t)); - lv_imgs_light.objs.color = COLOR_WHITE; lv_imgs_light.recolor_opa = OPA_50; + lv_imgs_light.base.color = COLOR_WHITE; lv_imgs_light.recolor_opa = OPA_50; } diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index 01bcf45bc..0db3a061d 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -52,11 +52,11 @@ typedef struct /*Style of image*/ typedef struct { - lv_objs_t objs; /*Style of ancestor*/ + lv_objs_t base; /*Style of ancestor*/ /*New style element for this type */ opa_t recolor_opa; /*Intensity of recoloring (OPA_TRANSP, OPA_10 ... OPA_COVER)*/ #if LV_IMG_ENABLE_SYMBOLS != 0 - font_types_t sym_font; /*Symbol font*/ + const font_t * sym_font; /*Symbol font*/ #endif }lv_imgs_t; diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index 091bbc8f0..2ed276aac 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -54,10 +54,9 @@ static void lv_labels_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_labels_t lv_labels_def; -static lv_labels_t lv_labels_btn; static lv_labels_t lv_labels_title; static lv_labels_t lv_labels_txt; +static lv_labels_t lv_labels_btn; /********************** * MACROS @@ -95,9 +94,8 @@ lv_obj_t * lv_label_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new label*/ if(copy == NULL) { - lv_obj_set_opa(new_label, OPA_COVER); lv_obj_set_click(new_label, false); - lv_obj_set_style(new_label, lv_labels_get(LV_LABELS_DEF, NULL)); + lv_obj_set_style(new_label, lv_labels_get(LV_LABELS_TXT, NULL)); lv_label_set_long_mode(new_label, LV_LABEL_LONG_EXPAND); lv_label_set_text(new_label, "Text"); } @@ -356,8 +354,8 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) uint32_t line_start = 0; uint32_t new_line_start = 0; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * labels = lv_obj_get_style(label); - const font_t * font = font_get(labels->font); + lv_labels_t * style = lv_obj_get_style(label); + const font_t * font = style->font; uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -371,15 +369,15 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) /*Search the line of the index letter */; while (text[new_line_start] != '\0') { - new_line_start += txt_get_next_line(&text[line_start], font, labels->letter_space, max_w, flag); + new_line_start += txt_get_next_line(&text[line_start], font, style->letter_space, max_w, flag); if(index < new_line_start || text[new_line_start] == '\0') break; /*The line of 'index' letter begins at 'line_start'*/ - y += letter_height + labels->line_space; + y += letter_height + style->line_space; line_start = new_line_start; } if((text[index - 1] == '\n' || text[index - 1] == '\r') && text[index] == '\0') { - y += letter_height + labels->line_space; + y += letter_height + style->line_space; line_start = index; } @@ -395,13 +393,13 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) } } - x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + labels->letter_space; + x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; } - if(labels->mid != 0) { + if(style->mid != 0) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, - font, labels->letter_space, flag); + font, style->letter_space, flag); x += lv_obj_get_width(label) / 2 - line_w / 2; } @@ -424,7 +422,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) uint32_t new_line_start = 0; cord_t max_w = lv_obj_get_width(label); lv_labels_t * style = lv_obj_get_style(label); - const font_t * font = font_get(style->font); + const font_t * font = style->font; uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -490,26 +488,20 @@ lv_labels_t * lv_labels_get(lv_labels_builtin_t style, lv_labels_t * copy) lv_labels_t * style_p; switch(style) { - case LV_LABELS_DEF: - style_p = &lv_labels_def; - break; - case LV_LABELS_BTN: - style_p = &lv_labels_btn; - break; case LV_LABELS_TXT: style_p = &lv_labels_txt; break; case LV_LABELS_TITLE: style_p = &lv_labels_title; break; + case LV_LABELS_BTN: + style_p = &lv_labels_btn; + break; default: - style_p = &lv_labels_def; + style_p = &lv_labels_txt; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_labels_t)); - else memcpy(copy, &lv_labels_def, sizeof(lv_labels_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_labels_t)); return style_p; } @@ -539,13 +531,12 @@ static bool lv_label_design(lv_obj_t * label, const area_t * mask, lv_design_mod area_t cords; lv_obj_get_cords(label, &cords); - opa_t opa = lv_obj_get_opa(label); lv_label_ext_t * ext = lv_obj_get_ext(label); txt_flag_t flag = TXT_FLAG_NONE; if(ext->recolor != 0) flag |= TXT_FLAG_RECOLOR; - lv_draw_label(&cords, mask, lv_obj_get_style(label), opa, ext->txt, flag); + lv_draw_label(&cords, mask, lv_obj_get_style(label), ext->txt, flag); } @@ -564,7 +555,7 @@ static void lv_label_refr_text(lv_obj_t * label) cord_t max_w = lv_obj_get_width(label); lv_labels_t * style = lv_obj_get_style(label); - const font_t * font = font_get(style->font); + const font_t * font = style->font; ext->dot_end = LV_LABEL_DOT_END_INV; /*Initialize the dot end index*/ @@ -675,28 +666,21 @@ static void lv_label_refr_text(lv_obj_t * label) */ static void lv_labels_init(void) { - /*Default style*/ - lv_labels_def.font = LV_FONT_DEFAULT; - lv_labels_def.objs.color = COLOR_MAKE(0x10, 0x18, 0x20); - lv_labels_def.letter_space = 2 * LV_DOWNSCALE; - lv_labels_def.line_space = 2 * LV_DOWNSCALE; - lv_labels_def.mid = 0; + /*Text style*/ + lv_objs_get(LV_OBJS_PLAIN, &lv_labels_txt.base); + lv_labels_txt.base.color = COLOR_MAKE(0x10, 0x18, 0x20); + lv_labels_txt.font = font_get(LV_FONT_DEFAULT); + lv_labels_txt.letter_space = 1 * LV_DOWNSCALE; + lv_labels_txt.line_space = 2 * LV_DOWNSCALE; + lv_labels_txt.mid = 0; - memcpy(&lv_labels_btn, &lv_labels_def, sizeof(lv_labels_t)); - lv_labels_btn.objs.color = COLOR_MAKE(0xd0, 0xe0, 0xf0); + memcpy(&lv_labels_btn, &lv_labels_txt, sizeof(lv_labels_t)); + lv_labels_btn.base.color = COLOR_MAKE(0x20, 0x20, 0x20); lv_labels_btn.mid = 1; - memcpy(&lv_labels_title, &lv_labels_def, sizeof(lv_labels_t)); - lv_labels_title.objs.color = COLOR_MAKE(0x10, 0x20, 0x30); + memcpy(&lv_labels_title, &lv_labels_txt, sizeof(lv_labels_t)); lv_labels_title.letter_space = 4 * LV_DOWNSCALE; lv_labels_title.line_space = 4 * LV_DOWNSCALE; lv_labels_title.mid = 0; - - memcpy(&lv_labels_txt, &lv_labels_def, sizeof(lv_labels_t)); - lv_labels_txt.objs.color = COLOR_MAKE(0x16, 0x23, 0x34); - lv_labels_txt.letter_space = 0 * LV_DOWNSCALE; - lv_labels_txt.line_space = 1 * LV_DOWNSCALE; - lv_labels_txt.mid = 0; - } #endif diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index 330b0ba43..62ef494f6 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -50,21 +50,20 @@ typedef struct /*Style of label*/ typedef struct { - lv_objs_t objs; /*Style of ancestor*/ + lv_objs_t base; /*Style of ancestor*/ /*New style element for this type */ - font_types_t font; /*Name of the font. E.g: FONT_DEJAVU_20*/ - uint16_t letter_space; - uint16_t line_space; + const font_t * font; /*Pointer to a font*/ + cord_t letter_space; + cord_t line_space; uint8_t mid :1; /*1: Align the lines into the middle*/ }lv_labels_t; /*Built-in styles of label*/ typedef enum { - LV_LABELS_DEF, - LV_LABELS_BTN, - LV_LABELS_TXT, LV_LABELS_TITLE, + LV_LABELS_TXT, + LV_LABELS_BTN, }lv_labels_builtin_t; /********************** diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index 0bcb76238..c11410c09 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -283,7 +283,7 @@ static void lv_leds_init(void) lv_leds_def.bg_rect.bwidth = 4 * LV_DOWNSCALE; lv_leds_def.bg_rect.bopa = 50; lv_leds_def.bg_rect.light = 15 * LV_DOWNSCALE; - lv_leds_def.bg_rect.round = LV_RECT_CIRCLE; + lv_leds_def.bg_rect.radius = LV_RECT_CIRCLE; lv_leds_def.bg_rect.hpad = 0; lv_leds_def.bg_rect.vpad = 0; lv_leds_def.bg_rect.opad = 0; diff --git a/lv_objx/lv_line.c b/lv_objx/lv_line.c index 16bf56f16..48985b9ac 100644 --- a/lv_objx/lv_line.c +++ b/lv_objx/lv_line.c @@ -40,8 +40,6 @@ static void lv_lines_init(void); * STATIC VARIABLES **********************/ static lv_lines_t lv_lines_def; -static lv_lines_t lv_lines_decor; -static lv_lines_t lv_lines_chart; /********************** * MACROS @@ -265,20 +263,11 @@ lv_lines_t * lv_lines_get(lv_lines_builtin_t style, lv_lines_t * copy) case LV_LINES_DEF: style_p = &lv_lines_def; break; - case LV_LINES_DECOR: - style_p = &lv_lines_decor; - break; - case LV_LINES_CHART: - style_p = &lv_lines_chart; - break; default: style_p = &lv_lines_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_lines_t)); - else memcpy(copy, &lv_lines_def, sizeof(lv_lines_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_lines_t)); return style_p; } @@ -305,9 +294,7 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ if(ext->point_num == 0 || ext->point_array == NULL) return false; - lv_lines_t * lines = lv_obj_get_style(line); - - opa_t opa = lv_obj_get_opa(line); + lv_lines_t * style = lv_obj_get_style(line); area_t area; lv_obj_get_cords(line, &area); cord_t x_ofs = area.x1; @@ -334,7 +321,7 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ p1.y = h - ext->point_array[i].y * us + y_ofs; p2.y = h - ext->point_array[i + 1].y * us + y_ofs; } - lv_draw_line(&p1, &p2, mask, lines, opa); + lv_draw_line(&p1, &p2, mask, style); } } return true; @@ -346,18 +333,8 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ static void lv_lines_init(void) { /*Default style*/ - lv_lines_def.width = 2 * LV_DOWNSCALE; - lv_lines_def.objs.color = COLOR_RED; - lv_lines_def.objs.transp = 0; - - /*Decoration line style*/ - memcpy(&lv_lines_decor, &lv_lines_def, sizeof(lv_lines_t)); - lv_lines_decor.width = 1 * LV_DOWNSCALE; - lv_lines_decor.objs.color = COLOR_GRAY; - - /*Chart line style*/ - memcpy(&lv_lines_chart, &lv_lines_def, sizeof(lv_lines_t)); - lv_lines_chart.width = 3 * LV_DOWNSCALE; - lv_lines_chart.objs.color = COLOR_RED; + lv_lines_def.width = LV_DPI / 25; + lv_lines_def.base.color = COLOR_RED; + lv_lines_def.base.opa = OPA_COVER; } #endif diff --git a/lv_objx/lv_line.h b/lv_objx/lv_line.h index bb1819630..07b4e73d3 100644 --- a/lv_objx/lv_line.h +++ b/lv_objx/lv_line.h @@ -36,17 +36,15 @@ typedef struct /*Style of line*/ typedef struct { - lv_objs_t objs; /*Style of ancestor*/ + lv_objs_t base; /*Style of ancestor*/ /*New style element for this type */ - uint16_t width; + cord_t width; /*Line width*/ }lv_lines_t; /*Built-in styles of line*/ typedef enum { LV_LINES_DEF, - LV_LINES_DECOR, - LV_LINES_CHART, }lv_lines_builtin_t; /********************** diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index a84f82d0e..bb1a7b53f 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -34,7 +34,6 @@ static void lv_lists_init(void); * STATIC VARIABLES **********************/ static lv_lists_t lv_lists_def; -static lv_lists_t lv_lists_scrl; static lv_lists_t lv_lists_transp; /********************** @@ -118,23 +117,23 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l /*Create a list element with the image an the text*/ lv_obj_t * liste; liste = lv_btn_create(list, NULL); - lv_obj_set_style(liste, &lists->liste_btns); + lv_obj_set_style(liste, &lists->liste_btn); lv_btn_set_rel_action(liste, rel_action); lv_page_glue_obj(liste, true); - lv_rect_set_layout(liste, lists->liste_layout); + lv_rect_set_layout(liste, LV_RECT_LAYOUT_ROW_M); lv_rect_set_fit(liste, false, true); - if(img_fn != NULL) { + if(img_fn != NULL && img_fn[0] != '\0') { lv_obj_t * img = lv_img_create(liste, NULL); lv_img_set_file(img, img_fn); - lv_obj_set_style(img, &lists->liste_imgs); + lv_obj_set_style(img, &lists->liste_img); lv_obj_set_click(img, false); } if(txt != NULL) { lv_obj_t * label = lv_label_create(liste, NULL); lv_label_set_text(label, txt); - lv_obj_set_style(label,&lists->liste_labels); + lv_obj_set_style(label,&lists->liste_label); lv_obj_set_click(label, false); } @@ -143,12 +142,12 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l /*Make the size adjustment*/ cord_t w = lv_obj_get_width(list); - cord_t hpad_tot = lists->bg_pages.bg_rects.hpad + lists->bg_pages.scrl_rects.hpad; + cord_t hpad_tot = lists->page.bg.hpad + lists->page.scrl.hpad; w -= hpad_tot * 2; /*Make place for the scrollbar if hpad_tot is too small*/ - if(style->widthe_sb != 0) { - if(hpad_tot < lists->bg_pages.sb_width) w -= lists->bg_pages.sb_width - hpad_tot; + if(style->width_sb != 0) { + if(hpad_tot < lists->page.sb_width) w -= lists->page.sb_width - hpad_tot; } lv_obj_set_width(liste, w); @@ -240,11 +239,8 @@ lv_lists_t * lv_lists_get(lv_lists_builtin_t style, lv_lists_t * list) lv_lists_t *style_p; switch(style) { - case LV_LISTS_DEF: + case LV_LISTS_DEF: style_p = &lv_lists_def; - break; - case LV_LISTS_SCRL: - style_p = &lv_lists_scrl; break; case LV_LISTS_TRANSP: style_p = &lv_lists_transp; @@ -253,10 +249,7 @@ lv_lists_t * lv_lists_get(lv_lists_builtin_t style, lv_lists_t * list) style_p = &lv_lists_def; } - if(list != NULL) { - if(style_p != NULL) memcpy(list, style_p, sizeof(lv_lists_t)); - else memcpy(list, &lv_lists_def, sizeof(lv_lists_t)); - } + if(list != NULL) memcpy(list, style_p, sizeof(lv_lists_t)); return style_p; } @@ -295,100 +288,36 @@ static bool lv_list_design(lv_obj_t * list, const area_t * mask, lv_design_mode_ */ static void lv_lists_init(void) { - /*Default style*/ - lv_pages_get(LV_PAGES_DEF, &lv_lists_def.bg_pages); - lv_lists_def.bg_pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.bg_rects.opad = 0 * LV_DOWNSCALE; + /*Default style*/ + lv_pages_get(LV_PAGES_MENU, &lv_lists_def.page); - lv_lists_def.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_def.bg_pages.scrl_rects.opad = 5 * LV_DOWNSCALE; - - lv_btns_get(LV_BTNS_DEF, &lv_lists_def.liste_btns); /*List element button style*/ - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x90, 0xa8, 0xc0); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x90, 0xa8, 0xc0); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_REL].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_REL].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_REL].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x40, 0x60, 0x80);// COLOR_MAKE(0x60, 0x80, 0xa0); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x40, 0x60, 0x80);//COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_PR].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_PR].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_PR].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_TGL_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_REL].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_REL].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_REL].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x40, 0x60, 0x80); - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x40, 0x60, 0x80); - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x20, 0x30, 0x40); - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_TGL_PR] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_PR].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_PR].transp = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_TGL_PR].empty = 0; - - lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_INA] = COLOR_SILVER; - lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_INA] = COLOR_GRAY; - lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_INA] = COLOR_WHITE; - lv_lists_def.liste_btns.lcolor[LV_BTN_STATE_INA] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_lists_def.liste_btns.flags[LV_BTN_STATE_INA].light_en = 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_INA].transp= 0; - lv_lists_def.liste_btns.flags[LV_BTN_STATE_INA].empty = 0; - - lv_lists_def.liste_btns.rects.objs.color = lv_lists_def.liste_btns.mcolor[LV_BTN_STATE_REL]; - lv_lists_def.liste_btns.rects.gcolor = lv_lists_def.liste_btns.gcolor[LV_BTN_STATE_REL]; - lv_lists_def.liste_btns.rects.bcolor = lv_lists_def.liste_btns.bcolor[LV_BTN_STATE_REL]; - lv_lists_def.liste_btns.rects.objs.transp = 0; - lv_lists_def.liste_btns.rects.empty = 0; - lv_lists_def.liste_btns.rects.light = 6 * LV_DOWNSCALE; - lv_lists_def.liste_btns.rects.bwidth = 0 * LV_DOWNSCALE; - lv_lists_def.liste_btns.rects.bopa = 70; - lv_lists_def.liste_btns.rects.empty = 0; - lv_lists_def.liste_btns.rects.round = 0 * LV_DOWNSCALE; - - lv_labels_get(LV_LABELS_DEF, &lv_lists_def.liste_labels); /*List element label style*/ - lv_lists_def.liste_labels.mid = 0; - - lv_imgs_get(LV_IMGS_DEF, &lv_lists_def.liste_imgs); /*Lit element image style*/ - - lv_lists_def.liste_layout = LV_RECT_LAYOUT_ROW_M; - lv_lists_def.widthe_sb = 1; - - /*Only the scrollable part is visible style*/ - memcpy(&lv_lists_scrl, &lv_lists_def, sizeof(lv_lists_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_lists_scrl.bg_pages); - lv_lists_scrl.bg_pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.bg_rects.opad = 0 * LV_DOWNSCALE; - - lv_lists_scrl.bg_pages.scrl_rects.objs.transp = 0; - lv_lists_scrl.bg_pages.scrl_rects.empty = 0; - lv_lists_scrl.bg_pages.scrl_rects.bwidth = 1 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_scrl.bg_pages.scrl_rects.opad = 0 * LV_DOWNSCALE; - - /*Transparent list background*/ - memcpy(&lv_lists_transp, &lv_lists_def, sizeof(lv_lists_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_lists_transp.bg_pages); - lv_lists_transp.bg_pages.bg_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.bg_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.bg_rects.opad = 0 * LV_DOWNSCALE; - - lv_lists_transp.bg_pages.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.scrl_rects.hpad = 0 * LV_DOWNSCALE; - lv_lists_transp.bg_pages.scrl_rects.opad = 5 * LV_DOWNSCALE; + lv_rects_get(LV_RECTS_TRANSP, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL]); + lv_rects_get(LV_RECTS_PLAIN, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR]); + lv_rects_get(LV_RECTS_TRANSP, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL]); + lv_rects_get(LV_RECTS_PLAIN, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR]); + lv_rects_get(LV_RECTS_PLAIN, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA]); + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL].hpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL].vpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL].opad = LV_DPI / 6; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].hpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].vpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].opad = LV_DPI / 6; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].radius = 0; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL].hpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL].vpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL].opad = LV_DPI / 6; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].hpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].vpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].opad = LV_DPI / 6; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].radius = 0; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].hpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].vpad = LV_DPI / 4; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].opad = LV_DPI / 6; + lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].radius = 0; + lv_labels_get(LV_LABELS_BTN, &lv_lists_def.liste_label); /*List element label style*/ + lv_imgs_get(LV_IMGS_DEF, &lv_lists_def.liste_img); /*List element image style*/ + memcpy(&lv_lists_transp, &lv_lists_def, sizeof(lv_lists_t)); + lv_pages_get(LV_PAGES_TRANSP, &lv_lists_transp.page); } #endif diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index 8125c7542..a3f0eeaa4 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -49,20 +49,18 @@ typedef struct /*Style of list*/ typedef struct { - lv_pages_t bg_pages; /*Style of ancestor*/ + lv_pages_t page; /*Style of ancestor*/ /*New style element for this type */ - lv_btns_t liste_btns; /*List element button style*/ - lv_labels_t liste_labels; /*List element label style*/ - lv_imgs_t liste_imgs; /*List element image style*/ - lv_rect_layout_t liste_layout; /*List element layout (will be removed)*/ - uint8_t widthe_sb :1; /*1: Keep space for the scrollbar*/ + lv_btns_t liste_btn; /*List element button style*/ + lv_labels_t liste_label; /*List element label style*/ + lv_imgs_t liste_img; /*List element image style*/ + uint8_t width_sb :1; /*1: Keep space for the scrollbar*/ }lv_lists_t; /*Built-in styles of list*/ typedef enum { LV_LISTS_DEF, - LV_LISTS_SCRL, LV_LISTS_TRANSP, }lv_lists_builtin_t; diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index 551eaef7c..3bc4e7106 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -467,12 +467,9 @@ static void lv_mbox_disable_fit(lv_obj_t * mbox) static void lv_mboxs_init(void) { /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_mboxs_def.bg); - lv_mboxs_def.bg.light = 8 * LV_DOWNSCALE; + lv_rects_get(LV_RECTS_FANCY, &lv_mboxs_def.bg); lv_btns_get(LV_BTNS_DEF, &lv_mboxs_def.btn); - lv_mboxs_def.btn.flags[LV_BTN_STATE_PR].light_en = 0; - lv_mboxs_def.btn.flags[LV_BTN_STATE_REL].light_en = 0; lv_labels_get(LV_LABELS_TITLE, &lv_mboxs_def.title); lv_labels_get(LV_LABELS_TXT, &lv_mboxs_def.txt); lv_labels_get(LV_LABELS_BTN, &lv_mboxs_def.btn_label); @@ -481,42 +478,43 @@ static void lv_mboxs_init(void) lv_mboxs_def.btnh.vpad = 0; memcpy(&lv_mboxs_info, &lv_mboxs_def, sizeof(lv_mboxs_t)); - lv_mboxs_info.bg.objs.color = COLOR_BLACK; + lv_mboxs_info.bg.base.color = COLOR_BLACK; lv_mboxs_info.bg.gcolor = COLOR_BLACK; lv_mboxs_info.bg.bcolor = COLOR_WHITE; - lv_mboxs_info.title.objs.color = COLOR_WHITE; - lv_mboxs_info.txt.objs.color = COLOR_WHITE; + lv_mboxs_info.title.base.color = COLOR_WHITE; + lv_mboxs_info.txt.base.color = COLOR_WHITE; lv_mboxs_info.txt.letter_space = 2 * LV_DOWNSCALE; lv_btns_get(LV_BTNS_BORDER, &lv_mboxs_info.btn); - lv_mboxs_info.btn.bcolor[LV_BTN_STATE_PR] = COLOR_SILVER; - lv_mboxs_info.btn.bcolor[LV_BTN_STATE_REL] = COLOR_WHITE; - lv_mboxs_info.btn.mcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - lv_mboxs_info.btn.gcolor[LV_BTN_STATE_PR] = COLOR_GRAY; - lv_mboxs_info.btn.rects.bopa = OPA_COVER; - lv_mboxs_info.btn_label.objs.color = COLOR_WHITE; + lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].bcolor = COLOR_SILVER; + lv_mboxs_info.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_WHITE; + lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_GRAY; + lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_GRAY; + lv_mboxs_info.btn.state_style[LV_BTN_STATE_REL].bopa = OPA_COVER; + lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].bopa = OPA_COVER; + lv_mboxs_info.btn_label.base.color = COLOR_WHITE; memcpy(&lv_mboxs_warn, &lv_mboxs_info, sizeof(lv_mboxs_t)); - lv_mboxs_warn.bg.objs.color = COLOR_MAKE(0xff, 0xb2, 0x66); + lv_mboxs_warn.bg.base.color = COLOR_MAKE(0xff, 0xb2, 0x66); lv_mboxs_warn.bg.gcolor = COLOR_MAKE(0xff, 0xad, 0x29); - lv_mboxs_warn.btn.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.btn.bcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.btn.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xa8, 0x6e, 0x33); - lv_mboxs_warn.btn.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0xa8, 0x6e, 0x33); - lv_mboxs_warn.title.objs.color = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.txt.objs.color = COLOR_MAKE(0x10, 0x10, 0x10);; - lv_mboxs_warn.btn_label.objs.color = COLOR_MAKE(0x10, 0x10, 0x10); + lv_mboxs_warn.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x10, 0x10, 0x10); + lv_mboxs_warn.btn.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0x10, 0x10, 0x10); + lv_mboxs_warn.btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xa8, 0x6e, 0x33); + lv_mboxs_warn.btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0xa8, 0x6e, 0x33); + lv_mboxs_warn.title.base.color = COLOR_MAKE(0x10, 0x10, 0x10); + lv_mboxs_warn.txt.base.color = COLOR_MAKE(0x10, 0x10, 0x10);; + lv_mboxs_warn.btn_label.base.color = COLOR_MAKE(0x10, 0x10, 0x10); memcpy(&lv_mboxs_err, &lv_mboxs_warn, sizeof(lv_mboxs_t)); - lv_mboxs_err.bg.objs.color = COLOR_MAKE(0xff, 0x66, 0x66); + lv_mboxs_err.bg.base.color = COLOR_MAKE(0xff, 0x66, 0x66); lv_mboxs_err.bg.gcolor = COLOR_MAKE(0x99, 0x22, 0x22); - lv_mboxs_err.btn.bcolor[LV_BTN_STATE_REL] = COLOR_BLACK; - lv_mboxs_err.btn.bcolor[LV_BTN_STATE_PR] = COLOR_BLACK; - lv_mboxs_err.btn.mcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x70, 0x00, 0x00); - lv_mboxs_err.btn.gcolor[LV_BTN_STATE_PR] = COLOR_MAKE(0x70, 0x00, 0x00); - lv_mboxs_err.title.objs.color = COLOR_BLACK; - lv_mboxs_err.txt.objs.color = COLOR_BLACK; - lv_mboxs_err.btn_label.objs.color = COLOR_BLACK; + lv_mboxs_err.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_BLACK; + lv_mboxs_err.btn.state_style[LV_BTN_STATE_PR].bcolor = COLOR_BLACK; + lv_mboxs_err.btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0x70, 0x00, 0x00); + lv_mboxs_err.btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x70, 0x00, 0x00); + lv_mboxs_err.title.base.color = COLOR_BLACK; + lv_mboxs_err.txt.base.color = COLOR_BLACK; + lv_mboxs_err.btn_label.base.color = COLOR_BLACK; } #endif diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 6097fe61e..63dd0b9cf 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -42,7 +42,7 @@ /*Data of message box*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_rect_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * title; /*Title of the message box*/ lv_obj_t * txt; /*Text of the message box*/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 400dcfd14..2d9d47cdf 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -40,7 +40,8 @@ static void lv_pages_init(void); * STATIC VARIABLES **********************/ static lv_pages_t lv_pages_def; -static lv_pages_t lv_pages_simple; +static lv_pages_t lv_pages_paper; +static lv_pages_t lv_pages_menu; static lv_pages_t lv_pages_transp; static lv_design_f_t ancestor_design_f; @@ -81,20 +82,20 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new page object*/ if(copy == NULL) { - lv_pages_t * pages = lv_pages_get(LV_PAGES_DEF, NULL); + lv_pages_t * style = lv_pages_get(LV_PAGES_DEF, NULL); ext->scrl = lv_rect_create(new_page, NULL); lv_obj_set_signal_f(ext->scrl, lv_scrl_signal); lv_obj_set_drag(ext->scrl, true); lv_obj_set_drag_throw(ext->scrl, true); lv_obj_set_protect(ext->scrl, LV_PROTECT_PARENT); lv_rect_set_fit(ext->scrl, true, true); - lv_obj_set_style(ext->scrl, &pages->scrl_rects); + lv_obj_set_style(ext->scrl, &style->scrl); /* Add the signal function only if 'scrolling' is created * because everything has to be ready before any signal is received*/ lv_obj_set_signal_f(new_page, lv_page_signal); lv_obj_set_design_f(new_page, lv_page_design); - lv_obj_set_style(new_page, pages); + lv_obj_set_style(new_page, style); } else { lv_page_ext_t * copy_ext = lv_obj_get_ext(copy); ext->scrl = lv_rect_create(new_page, copy_ext->scrl); @@ -135,7 +136,7 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) * make the object specific signal handling */ if(obj_valid != false) { lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * pages = lv_obj_get_style(page); + lv_pages_t * style = lv_obj_get_style(page); lv_obj_t * child; switch(sign) { case LV_SIGNAL_CHILD_CHG: /*Move children to the scrollable object*/ @@ -152,11 +153,11 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: - area_set_height(&ext->sbh, pages->sb_width); - area_set_width(&ext->sbv, pages->sb_width); - lv_obj_set_style(ext->scrl, &pages->scrl_rects); + area_set_height(&ext->sbh, style->sb_width); + area_set_width(&ext->sbv, style->sb_width); + lv_obj_set_style(ext->scrl, &style->scrl); - if(pages->sb_mode == LV_PAGE_SB_MODE_ON) { + if(style->sb_mode == LV_PAGE_SB_MODE_ON) { ext->sbh_draw = 1; ext->sbv_draw = 1; } else { @@ -227,8 +228,8 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) lv_obj_t * page = lv_obj_get_parent(scrl); lv_pages_t * style = lv_obj_get_style(page); lv_page_ext_t * page_ext = lv_obj_get_ext(page); - cord_t hpad = style->bg_rects.hpad; - cord_t vpad = style->bg_rects.vpad; + cord_t hpad = style->bg.hpad; + cord_t vpad = style->bg.vpad; switch(sign) { case LV_SIGNAL_CORD_CHG: @@ -281,8 +282,8 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) case LV_SIGNAL_DRAG_BEGIN: if(style->sb_mode == LV_PAGE_SB_MODE_DRAG ) { - cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg_rects.hpad); - cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg_rects.vpad); + cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg.hpad); + cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg.vpad); if(area_get_height(&page_ext->sbv) < lv_obj_get_height(scrl) - 2 * sbv_pad) { page_ext->sbv_draw = 1; } @@ -400,8 +401,8 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) if((obj_h <= page_h && top_err > 0) || (obj_h > page_h && top_err < bot_err)) { /*Calculate a new position and to let scrable_rects.vpad space above*/ - scrlable_y = -(obj_y - style->scrl_rects.vpad - style->bg_rects.vpad); - scrlable_y += style->scrl_rects.vpad; + scrlable_y = -(obj_y - style->scrl.vpad - style->bg.vpad); + scrlable_y += style->scrl.vpad; refr = true; } /*Out of the page on the bottom*/ @@ -410,7 +411,7 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) /*Calculate a new position and to let scrable_rects.vpad space below*/ scrlable_y = -obj_y; scrlable_y += page_h - obj_h; - scrlable_y -= style->scrl_rects.vpad; + scrlable_y -= style->scrl.vpad; refr = true; } @@ -477,8 +478,11 @@ lv_pages_t * lv_pages_get(lv_pages_builtin_t style, lv_pages_t * copy) case LV_PAGES_DEF: style_p = &lv_pages_def; break; - case LV_PAGES_SIMPLE: - style_p = &lv_pages_simple; + case LV_PAGES_PAPER: + style_p = &lv_pages_paper; + break; + case LV_PAGES_MENU: + style_p = &lv_pages_menu; break; case LV_PAGES_TRANSP: style_p = &lv_pages_transp; @@ -487,10 +491,7 @@ lv_pages_t * lv_pages_get(lv_pages_builtin_t style, lv_pages_t * copy) style_p = &lv_pages_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_pages_t)); - else memcpy(copy, &lv_pages_def, sizeof(lv_pages_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_pages_t)); return style_p; } @@ -519,7 +520,6 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ ancestor_design_f(page, mask, mode); lv_page_ext_t * ext = lv_obj_get_ext(page); lv_pages_t * style = lv_obj_get_style(page); - opa_t sb_opa = lv_obj_get_opa(page) * style->sb_opa /100; /*Draw the scrollbars*/ area_t sb_area; @@ -530,7 +530,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ sb_area.y1 += page->cords.y1; sb_area.x2 += page->cords.x1; sb_area.y2 += page->cords.y1; - lv_draw_rect(&sb_area, mask, &style->sb_rects, sb_opa); + lv_draw_rect(&sb_area, mask, &style->sb); } if(ext->sbv_draw != 0) { @@ -540,7 +540,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ sb_area.y1 += page->cords.y1; sb_area.x2 += page->cords.x1; sb_area.y2 += page->cords.y1; - lv_draw_rect(&sb_area, mask, &style->sb_rects, sb_opa); + lv_draw_rect(&sb_area, mask, &style->sb); } } @@ -565,12 +565,12 @@ static void lv_page_sb_refresh(lv_obj_t * page) cord_t size_tmp; cord_t scrl_w = lv_obj_get_width(scrl); cord_t scrl_h = lv_obj_get_height(scrl); - cord_t hpad = style->bg_rects.hpad; - cord_t vpad = style->bg_rects.vpad; + cord_t hpad = style->bg.hpad; + cord_t vpad = style->bg.vpad; cord_t obj_w = lv_obj_get_width(page); cord_t obj_h = lv_obj_get_height(page); - cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg_rects.hpad); - cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg_rects.vpad); + cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg.hpad); + cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg.vpad); if(style->sb_mode == LV_PAGE_SB_MODE_OFF) return; @@ -655,40 +655,56 @@ static void lv_page_sb_refresh(lv_obj_t * page) */ static void lv_pages_init(void) { - /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_pages_def.bg_rects); + /*Deafult style*/ + lv_rects_get(LV_RECTS_FANCY, &lv_pages_def.bg); + lv_pages_def.bg.swidth = 0; + lv_rects_get(LV_RECTS_PLAIN, &lv_pages_def.scrl); + lv_rects_get(LV_RECTS_PLAIN, &lv_pages_def.sb); + lv_pages_def.sb.base.opa = OPA_70; + lv_pages_def.sb.base.color = COLOR_SILVER; + lv_pages_def.sb.gcolor = COLOR_GRAY; + lv_pages_def.sb.bcolor = COLOR_GRAY; + lv_pages_def.sb.bopa = OPA_COVER; + lv_pages_def.sb.bwidth = LV_DPI / 50 == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 50; + lv_pages_def.sb.radius = LV_RECT_CIRCLE; + lv_pages_def.sb_width = LV_DPI / 6; + lv_pages_def.sb_mode = LV_PAGE_SB_MODE_ON; - lv_rects_get(LV_RECTS_DEF, &lv_pages_def.scrl_rects); - lv_pages_def.scrl_rects.objs.color = COLOR_WHITE; - lv_pages_def.scrl_rects.gcolor = COLOR_SILVER; - lv_pages_def.scrl_rects.bcolor = COLOR_GRAY; + /*Paper style*/ + lv_rects_get(LV_RECTS_FANCY, &lv_pages_paper.bg); + lv_rects_get(LV_RECTS_TRANSP, &lv_pages_paper.scrl); + lv_pages_paper.scrl.hpad = LV_DPI / 4; + lv_pages_paper.scrl.vpad = LV_DPI / 4; + lv_pages_paper.scrl.opad = LV_DPI / 3; + lv_pages_paper.bg.hpad = 0; + lv_pages_paper.bg.vpad = 0; + lv_pages_paper.bg.opad = 0; + lv_pages_paper.bg.base.color = COLOR_WHITE; + lv_pages_paper.bg.gcolor = COLOR_SILVER; + memcpy(&lv_pages_paper.sb, &lv_pages_def.sb, sizeof(lv_rects_t)); + lv_pages_paper.sb_width = LV_DPI / 6; + lv_pages_paper.sb_mode = LV_PAGE_SB_MODE_AUTO; - lv_rects_get(LV_RECTS_DEF, &lv_pages_def.sb_rects); - lv_pages_def.sb_rects.objs.color = COLOR_BLACK; - lv_pages_def.sb_rects.gcolor = COLOR_BLACK; - lv_pages_def.sb_rects.bcolor = COLOR_WHITE; - lv_pages_def.sb_rects.bwidth = 1 * LV_DOWNSCALE; - lv_pages_def.sb_rects.round = 5 * LV_DOWNSCALE; - - lv_pages_def.sb_width= 8 * LV_DOWNSCALE; - lv_pages_def.sb_opa=50; - lv_pages_def.sb_mode = LV_PAGE_SB_MODE_AUTO; - - /*No (transparent) scrollable style*/ - memcpy(&lv_pages_simple, &lv_pages_def, sizeof(lv_pages_t)); - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_simple.scrl_rects); - lv_pages_simple.scrl_rects.vpad = 0 * LV_DOWNSCALE; - lv_pages_simple.scrl_rects.hpad = 0 * LV_DOWNSCALE; + /*Menu style*/ + lv_rects_get(LV_RECTS_TRANSP, &lv_pages_menu.bg); + lv_rects_get(LV_RECTS_PLAIN, &lv_pages_menu.scrl); + lv_pages_menu.scrl.hpad = 0; + lv_pages_menu.scrl.vpad = 0; + lv_pages_menu.scrl.opad = LV_DPI / 6; + lv_pages_menu.bg.hpad = 0; + lv_pages_menu.bg.vpad = 0; + lv_pages_menu.bg.opad = 0; + lv_pages_menu.scrl.base.color = COLOR_SILVER; + lv_pages_menu.scrl.gcolor = COLOR_SILVER; + memcpy(&lv_pages_menu.sb, &lv_pages_def.sb, sizeof(lv_rects_t)); + lv_pages_menu.sb_width = LV_DPI / 6; + lv_pages_menu.sb_mode = LV_PAGE_SB_MODE_AUTO; /*Transparent style*/ - memcpy(&lv_pages_transp, &lv_pages_simple, sizeof(lv_pages_t)); - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_transp.bg_rects); - lv_pages_transp.bg_rects.vpad = 10 * LV_DOWNSCALE; - lv_pages_transp.bg_rects.hpad = 10 * LV_DOWNSCALE; - lv_pages_transp.bg_rects.opad = 10 * LV_DOWNSCALE; - /* Make transparent bg. only witth bwidth = 0 nad empty = 1 - * because with transp = 1 the design function will not be called - * to draw the scrollbars*/ - lv_pages_transp.bg_rects.objs.transp = 0; + lv_rects_get(LV_RECTS_TRANSP, &lv_pages_transp.bg); + lv_rects_get(LV_RECTS_TRANSP, &lv_pages_transp.scrl); + memcpy(&lv_pages_transp.sb, &lv_pages_def.sb, sizeof(lv_rects_t)); + lv_pages_transp.sb_width = LV_DPI / 6; + lv_pages_transp.sb_mode = LV_PAGE_SB_MODE_AUTO; } #endif diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 9ad5149fd..8ab794adb 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -54,20 +54,20 @@ typedef enum /*Style of page*/ typedef struct { - lv_rects_t bg_rects; /*Style of ancestor*/ + lv_rects_t bg; /*Style of ancestor*/ /*New style element for this type */ - lv_rects_t scrl_rects; /*Style of the scrollable rectangle*/ - lv_rects_t sb_rects; /*Style of scrollbars*/ - cord_t sb_width; /*Width of the scrollbars*/ - lv_page_sb_mode_t sb_mode; /*Scrollbar visibility from 'lv_page_sb_mode_t'*/ - uint8_t sb_opa; /*Opacity of scrollbars in percentage of object opacity (0..100)*/ + lv_rects_t scrl; /*Style of the scrollable rectangle*/ + lv_rects_t sb; /*Style of scrollbars*/ + cord_t sb_width; /*Width of the scrollbars*/ + lv_page_sb_mode_t sb_mode; /*Scrollbar visibility from 'lv_page_sb_mode_t'*/ }lv_pages_t; /*Built-in styles of page*/ typedef enum { - LV_PAGES_DEF, - LV_PAGES_SIMPLE, + LV_PAGES_DEF, + LV_PAGES_PAPER, /*White background, transparent scrollable*/ + LV_PAGES_MENU, /*Transparent background, gray scrollable*/ LV_PAGES_TRANSP, }lv_pages_builtin_t; diff --git a/lv_objx/lv_pb.c b/lv_objx/lv_pb.c index aa776c2d8..9673b53da 100644 --- a/lv_objx/lv_pb.c +++ b/lv_objx/lv_pb.c @@ -338,8 +338,7 @@ static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mo } /*Draw the main bar*/ - opa_t opa = lv_obj_get_opa(pb); - lv_draw_rect(&bar_area, mask, &style->bar, opa); + lv_draw_rect(&bar_area, mask, &style->bar); /*Draw a button if its size is not 0*/ if(style->btn_size != 0) { @@ -372,7 +371,7 @@ static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mo } } - lv_draw_rect(&bar_area, mask, &tmp_rects, opa ); + lv_draw_rect(&bar_area, mask, &tmp_rects ); } } return true; @@ -401,32 +400,31 @@ void lv_pb_set_tmp_value(lv_obj_t * pb, int16_t value) static void lv_pbs_init(void) { /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bg); /*Background*/ - lv_pbs_def.bg.objs.color = COLOR_WHITE; + lv_rects_get(LV_RECTS_PLAIN, &lv_pbs_def.bg); /*Background*/ + lv_pbs_def.bg.base.color = COLOR_WHITE; lv_pbs_def.bg.gcolor = COLOR_SILVER, lv_pbs_def.bg.bcolor = COLOR_BLACK; - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.bar); /*Bar*/ - lv_pbs_def.bar.objs.color = COLOR_LIME; + lv_rects_get(LV_RECTS_PLAIN, &lv_pbs_def.bar); /*Bar*/ + lv_pbs_def.bar.base.color = COLOR_LIME; lv_pbs_def.bar.gcolor = COLOR_GREEN; lv_pbs_def.bar.bcolor = COLOR_BLACK; - lv_rects_get(LV_RECTS_DEF, &lv_pbs_def.btn); /*Button*/ - lv_pbs_def.btn.objs.color = COLOR_WHITE; + lv_rects_get(LV_RECTS_FANCY, &lv_pbs_def.btn); /*Button*/ + lv_pbs_def.btn.base.color = COLOR_WHITE; lv_pbs_def.btn.gcolor = COLOR_GRAY; lv_pbs_def.btn.bcolor = COLOR_GRAY; lv_pbs_def.btn.bopa = 100; lv_pbs_def.btn_size = 0; - lv_labels_get(LV_LABELS_DEF, &lv_pbs_def.label); /*Label*/ - lv_pbs_def.label.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); + lv_labels_get(LV_LABELS_TXT, &lv_pbs_def.label); /*Label*/ lv_pbs_def.label.line_space = 0; /*Slider style*/ memcpy(&lv_pbs_slider, &lv_pbs_def, sizeof(lv_pbs_t)); - lv_pbs_slider.bg.round = LV_RECT_CIRCLE; - lv_pbs_slider.bar.round = LV_RECT_CIRCLE; - lv_pbs_slider.btn.round = LV_RECT_CIRCLE; + lv_pbs_slider.bg.radius = LV_RECT_CIRCLE; + lv_pbs_slider.bar.radius = LV_RECT_CIRCLE; + lv_pbs_slider.btn.radius = LV_RECT_CIRCLE; lv_pbs_slider.btn_size = 40 * LV_DOWNSCALE; } diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_rect.c index 626b25741..bde81cacf 100644 --- a/lv_objx/lv_rect.c +++ b/lv_objx/lv_rect.c @@ -36,7 +36,7 @@ * STATIC PROTOTYPES **********************/ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode); -static void lv_rect_draw_light(lv_obj_t * rect, const area_t * mask); +static void lv_rect_draw_shadow(lv_obj_t * rect, const area_t * mask); static void lv_rect_refr_layout(lv_obj_t * rect); static void lv_rect_layout_col(lv_obj_t * rect); static void lv_rect_layout_row(lv_obj_t * rect); @@ -49,9 +49,10 @@ static void lv_rects_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_rects_t lv_rects_def; -static lv_rects_t lv_rects_transp; +static lv_rects_t lv_rects_plain; +static lv_rects_t lv_rects_fancy; static lv_rects_t lv_rects_border; +static lv_rects_t lv_rects_transp; /********************** * MACROS @@ -88,7 +89,7 @@ lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new rectangle*/ if(copy == NULL) { - lv_obj_set_style(new_rect, lv_rects_get(LV_RECTS_DEF, NULL)); + lv_obj_set_style(new_rect, lv_rects_get(LV_RECTS_PLAIN, NULL)); } /*Copy an existing object*/ else { @@ -142,7 +143,7 @@ bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) } break; case LV_SIGNAL_REFR_EXT_SIZE: - if(style->light > rect->ext_size) rect->ext_size = style->light; + if(style->swidth > rect->ext_size) rect->ext_size = style->swidth; break; default: break; @@ -246,9 +247,12 @@ lv_rects_t * lv_rects_get(lv_rects_builtin_t style, lv_rects_t * copy) lv_rects_t * style_p; switch(style) { - case LV_RECTS_DEF: - style_p = &lv_rects_def; + case LV_RECTS_PLAIN: + style_p = &lv_rects_plain; break; + case LV_RECTS_FANCY: + style_p = &lv_rects_fancy; + break; case LV_RECTS_BORDER: style_p = &lv_rects_border; break; @@ -256,12 +260,11 @@ lv_rects_t * lv_rects_get(lv_rects_builtin_t style, lv_rects_t * copy) style_p = &lv_rects_transp; break; default: - style_p = &lv_rects_def; + style_p = &lv_rects_plain; } if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_rects_t)); - else memcpy(copy, &lv_rects_def, sizeof(lv_rects_t)); + memcpy(copy, style_p, sizeof(lv_rects_t)); } return style_p; @@ -289,7 +292,7 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ * Check the areas where there is no radius*/ if(LV_SA(rect, lv_rects_t)->empty != 0) return false; - uint16_t r = LV_SA(rect, lv_rects_t)->round; + uint16_t r = LV_SA(rect, lv_rects_t)->radius; if(r == LV_RECT_CIRCLE) return false; @@ -309,14 +312,13 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ return false; } else if(mode == LV_DESIGN_DRAW_MAIN) { - opa_t opa = lv_obj_get_opa(rect); lv_rects_t * style = lv_obj_get_style(rect); area_t area; lv_obj_get_cords(rect, &area); /*Draw the rectangle*/ - lv_draw_rect(&area, mask, style, opa); - lv_rect_draw_light(rect, mask); + lv_draw_rect(&area, mask, style); + lv_rect_draw_shadow(rect, mask); } else if(mode == LV_DESIGN_DRAW_POST) { @@ -325,50 +327,50 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ } /** - * Draw a light around the object + * Draw a shadow around the object * @param rect pointer to rectangle object * @param mask pointer to a mask area (from the design functions) */ -static void lv_rect_draw_light(lv_obj_t * rect, const area_t * mask) +static void lv_rect_draw_shadow(lv_obj_t * rect, const area_t * mask) { lv_rects_t * style = lv_obj_get_style(rect); - cord_t light_size = style->light; - if(light_size == 0) return; - if(light_size < LV_DOWNSCALE) light_size = LV_DOWNSCALE; + cord_t swidth = style->swidth; + if(swidth == 0) return; + uint8_t res = LV_DOWNSCALE * 2; + if(swidth < res) return; - area_t light_area; - lv_rects_t light_style; - lv_obj_get_cords(rect, &light_area); + area_t shadow_area; + lv_rects_t shadow_style; + lv_obj_get_cords(rect, &shadow_area); - memcpy(&light_style, style, sizeof(lv_rects_t)); + memcpy(&shadow_style, style, sizeof(lv_rects_t)); - light_style.empty = 1; - light_style.bwidth = light_size; - light_style.round = style->round; - if(light_style.round == LV_RECT_CIRCLE) { - light_style.round = MATH_MIN(lv_obj_get_width(rect), lv_obj_get_height(rect)); + shadow_style.empty = 1; + shadow_style.bwidth = swidth; + shadow_style.radius = style->radius; + if(shadow_style.radius == LV_RECT_CIRCLE) { + shadow_style.radius = MATH_MIN(lv_obj_get_width(rect), lv_obj_get_height(rect)); } - light_style.round += light_size + 1; - light_style.bcolor = style->lcolor; - light_style.bopa = 100; + shadow_style.radius += swidth + 1; + shadow_style.bcolor = style->scolor; + shadow_style.bopa = 100; - light_area.x1 -= light_size; - light_area.y1 -= light_size; - light_area.x2 += light_size; - light_area.y2 += light_size; + shadow_area.x1 -= swidth; + shadow_area.y1 -= swidth; + shadow_area.x2 += swidth; + shadow_area.y2 += swidth; cord_t i; - uint8_t res = LV_DOWNSCALE ; - opa_t opa_sub = lv_obj_get_opa(rect) / (light_size / LV_DOWNSCALE); + shadow_style.base.opa = style->base.opa / (swidth / res); - for(i = 1; i < light_size; i += res) { - lv_draw_rect(&light_area, mask, &light_style, (uint16_t) opa_sub); - light_style.round -= res; - light_style.bwidth -= res; - light_area.x1 += res; - light_area.y1 += res; - light_area.x2 -= res; - light_area.y2 -= res; + for(i = 1; i < swidth; i += res) { + lv_draw_rect(&shadow_area, mask, &shadow_style); + shadow_style.radius -= res; + shadow_style.bwidth -= res; + shadow_area.x1 += res; + shadow_area.y1 += res; + shadow_area.x2 -= res; + shadow_area.y2 -= res; } } @@ -742,32 +744,51 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) */ static void lv_rects_init(void) { - /*Default style*/ - lv_rects_def.objs.color = COLOR_MAKE(0x50, 0x70, 0x90); - lv_rects_def.gcolor = COLOR_MAKE(0x70, 0xA0, 0xC0); - lv_rects_def.bcolor = COLOR_WHITE; - lv_rects_def.bwidth = 2 * LV_DOWNSCALE; - lv_rects_def.bopa = 50; - lv_rects_def.round = 4 * LV_DOWNSCALE; - lv_rects_def.empty = 0; - lv_rects_def.hpad = 10 * LV_DOWNSCALE; - lv_rects_def.vpad = 10 * LV_DOWNSCALE; - lv_rects_def.opad = 10 * LV_DOWNSCALE; - lv_rects_def.light = 0; - lv_rects_def.lcolor = COLOR_MAKE(0x60, 0x60, 0x60); + /*Plain style*/ + lv_objs_get(LV_OBJS_PLAIN, &lv_rects_plain.base); + lv_rects_plain.base.color = COLOR_MAKE(0x80, 0xb3, 0xe6); //6BA3BF + lv_rects_plain.gcolor = lv_rects_plain.base.color; + lv_rects_plain.bcolor = COLOR_WHITE; + lv_rects_plain.scolor = COLOR_GRAY; + lv_rects_plain.bwidth = (LV_DPI / 30) == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 30; + lv_rects_plain.swidth = 0; + lv_rects_plain.bopa = OPA_COVER; + lv_rects_plain.radius = LV_DPI / 10; + lv_rects_plain.empty = 0; + lv_rects_plain.hpad = LV_DPI / 2; + lv_rects_plain.vpad = LV_DPI / 2; + lv_rects_plain.opad = LV_DPI / 4; + + /*Fancy style*/ + lv_objs_get(LV_OBJS_PLAIN, &lv_rects_fancy.base); + lv_rects_fancy.gcolor = COLOR_MAKE(0xd3, 0xe1, 0xea); + lv_rects_fancy.bcolor = COLOR_WHITE; + lv_rects_fancy.scolor = COLOR_GRAY; + lv_rects_fancy.bwidth = (LV_DPI / 30) == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 30; + lv_rects_fancy.swidth = LV_DPI / 8; + lv_rects_fancy.bopa = OPA_50; + lv_rects_fancy.radius = LV_DPI / 10; + lv_rects_fancy.empty = 0; + lv_rects_fancy.hpad = LV_DPI / 4; + lv_rects_fancy.vpad = LV_DPI / 4; + lv_rects_fancy.opad = LV_DPI / 6; + /*Transparent style*/ - memcpy(&lv_rects_transp, &lv_rects_def, sizeof(lv_rects_t)); - lv_rects_transp.objs.transp = 1; - lv_rects_transp.bwidth = 0; + memcpy(&lv_rects_transp, &lv_rects_plain, sizeof(lv_rects_t)); + /* Do not use opa=OPA_TRANSP because design function will not be called + * but it might draw something on transparent background*/ lv_rects_transp.empty = 1; + lv_rects_transp.bwidth = 0; + lv_rects_transp.swidth = 0; + lv_rects_transp.hpad = 0; + lv_rects_transp.vpad = 0; /*Border style*/ - memcpy(&lv_rects_border, &lv_rects_def, sizeof(lv_rects_t)); - lv_rects_border.bcolor = COLOR_BLACK; - lv_rects_border.bwidth = 2 * LV_DOWNSCALE; - lv_rects_border.bopa = 100; - lv_rects_border.round = 4 * LV_DOWNSCALE; + memcpy(&lv_rects_border, &lv_rects_plain, sizeof(lv_rects_t)); + lv_rects_border.bcolor = COLOR_MAKE(0x30, 0x30, 0x30); + lv_rects_border.bwidth = LV_DPI / 30; + lv_rects_border.swidth = 0; lv_rects_border.empty = 1; } #endif diff --git a/lv_objx/lv_rect.h b/lv_objx/lv_rect.h index a38954886..3a17e0108 100644 --- a/lv_objx/lv_rect.h +++ b/lv_objx/lv_rect.h @@ -52,27 +52,28 @@ typedef struct /*Style of rectangle*/ typedef struct { - lv_objs_t objs; /*Style of ancestor*/ + lv_objs_t base; /*Style of ancestor*/ /*New style element for this type */ color_t gcolor; /*Gradient color*/ color_t bcolor; /*Border color*/ - color_t lcolor; /*Light color*/ - uint16_t bwidth;/*Border width*/ - uint16_t round; /*Radius on the corners*/ + color_t scolor; /*Shadow color*/ + cord_t bwidth; /*Border width*/ + cord_t swidth; /*Shadow width*/ + cord_t radius; /*Radius on the corners*/ cord_t hpad; /*Horizontal padding. Used by fit and layout.*/ cord_t vpad; /*Vertical padding. Used by fit and layout.*/ cord_t opad; /*Object padding. Used by fit */ - cord_t light; /*Light size*/ - uint8_t bopa; /*Border opacity in percentage of object opacity (0..100)*/ + opa_t bopa; /*Border opacity relative to the object*/ uint8_t empty :1; /*1: Do not draw the body of the rectangle*/ }lv_rects_t; /*Built-in styles of rectangle*/ typedef enum { - LV_RECTS_DEF, - LV_RECTS_TRANSP, + LV_RECTS_PLAIN, + LV_RECTS_FANCY, LV_RECTS_BORDER, + LV_RECTS_TRANSP, }lv_rects_builtin_t; /********************** diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index 8a8f5f06a..7d7996d71 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -46,8 +46,6 @@ static void lv_tas_init(void); * STATIC VARIABLES **********************/ static lv_tas_t lv_tas_def; -static lv_tas_t lv_tas_simple; -static lv_tas_t lv_tas_transp; lv_design_f_t ancestor_design_f; lv_design_f_t scrl_design_f; @@ -158,9 +156,9 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: if(ext->label) { - lv_obj_set_style(ext->label, &style->labels); + lv_obj_set_style(ext->label, &style->label); lv_obj_set_width(ext->label, lv_obj_get_width(ta) - 2 * - (style->pages.bg_rects.hpad + style->pages.scrl_rects.hpad)); + (style->page.bg.hpad + style->page.scrl.hpad)); lv_label_set_text(ext->label, NULL); } break; @@ -168,7 +166,7 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) case LV_SIGNAL_CORD_CHG: if(ext->label != NULL) { lv_obj_set_width(ext->label, lv_obj_get_width(ta) - 2 * - (style->pages.bg_rects.hpad + style->pages.scrl_rects.hpad)); + (style->page.bg.hpad + style->page.scrl.hpad)); lv_label_set_text(ext->label, NULL); } break; @@ -313,7 +311,7 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) lv_obj_t * label_par = lv_obj_get_parent(ext->label); point_t cur_pos; lv_tas_t * style = lv_obj_get_style(ta); - const font_t * font_p = font_get(style->labels.font); + const font_t * font_p = style->label.font; area_t label_cords; area_t ta_cords; lv_label_get_letter_pos(ext->label, pos, &cur_pos); @@ -327,9 +325,9 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) /*Check the bottom*/ cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; - if(label_cords.y1 + cur_pos.y + font_h + style->pages.scrl_rects.vpad > ta_cords.y2) { + if(label_cords.y1 + cur_pos.y + font_h + style->page.scrl.vpad > ta_cords.y2) { lv_obj_set_y(label_par, -(cur_pos.y - lv_obj_get_height(ta) + - font_h + 2 * style->pages.scrl_rects.vpad)); + font_h + 2 * style->page.scrl.vpad)); } lv_obj_inv(ta); @@ -380,7 +378,7 @@ void lv_ta_cursor_down(lv_obj_t * ta) /*Increment the y with one line and keep the valid x*/ lv_labels_t * label_style = lv_obj_get_style(ext->label); - const font_t * font_p = font_get(label_style->font); + const font_t * font_p = label_style->font; cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; pos.y += font_h + label_style->line_space + 1; pos.x = ext->cursor_valid_x; @@ -407,7 +405,7 @@ void lv_ta_cursor_up(lv_obj_t * ta) /*Decrement the y with one line and keep the valid x*/ lv_labels_t * label_style = lv_obj_get_style(ext->label); - const font_t * font = font_get(label_style->font); + const font_t * font = label_style->font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; pos.y -= font_h + label_style->line_space - 1; pos.x = ext->cursor_valid_x; @@ -464,20 +462,11 @@ lv_tas_t * lv_tas_get(lv_tas_builtin_t style, lv_tas_t * copy) case LV_TAS_DEF: style_p = &lv_tas_def; break; - case LV_TAS_SIMPLE: - style_p = &lv_tas_simple; - break; - case LV_TAS_TRANSP: - style_p = &lv_tas_transp; - break; default: style_p = &lv_tas_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_tas_t)); - else memcpy(copy, &lv_tas_def, sizeof(lv_tas_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_tas_t)); return style_p; } @@ -546,15 +535,15 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1 - (ta_style->cursor_width >> 1); cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + (ta_style->cursor_width >> 1); - cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(font_get(labels_p->font)) >> LV_FONT_ANTIALIAS); + cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> LV_FONT_ANTIALIAS); lv_rects_t cur_rects; - lv_rects_get(LV_RECTS_DEF, &cur_rects); - cur_rects.round = 0; + lv_rects_get(LV_RECTS_PLAIN, &cur_rects); + cur_rects.radius = 0; cur_rects.bwidth = 0; - cur_rects.objs.color = ta_style->cursor_color; + cur_rects.base.color = ta_style->cursor_color; cur_rects.gcolor = ta_style->cursor_color; - lv_draw_rect(&cur_area, mask, &cur_rects, OPA_COVER); + lv_draw_rect(&cur_area, mask, &cur_rects); } } @@ -594,27 +583,14 @@ static void lv_ta_save_valid_cursor_x(lv_obj_t * ta) static void lv_tas_init(void) { /*Default style*/ - lv_pages_get(LV_PAGES_DEF, &lv_tas_def.pages); - lv_tas_def.pages.sb_mode = LV_PAGE_SB_MODE_DRAG; + lv_pages_get(LV_PAGES_PAPER, &lv_tas_def.page); + lv_tas_def.page.sb_mode = LV_PAGE_SB_MODE_DRAG; - lv_labels_get(LV_LABELS_TXT, &lv_tas_def.labels); - lv_tas_def.labels.objs.color = COLOR_MAKE(0x20, 0x20, 0x20); + lv_labels_get(LV_LABELS_TXT, &lv_tas_def.label); lv_tas_def.cursor_color = COLOR_MAKE(0x10, 0x10, 0x10); lv_tas_def.cursor_width = 1 * LV_DOWNSCALE; /*>=1 px for visible cursor*/ lv_tas_def.cursor_show = 1; - memcpy(&lv_tas_simple, &lv_tas_def, sizeof(lv_tas_t)); - lv_pages_get(LV_PAGES_SIMPLE, &lv_tas_simple.pages); - lv_tas_simple.pages.sb_mode = LV_PAGE_SB_MODE_DRAG; - lv_tas_simple.pages.scrl_rects.objs.transp = 0; /*if transp == 1 the cursor will not be drawn*/ - lv_tas_simple.pages.bg_rects.objs.color = COLOR_WHITE; - lv_tas_simple.pages.bg_rects.gcolor = COLOR_SILVER; - lv_tas_simple.pages.bg_rects.bcolor = COLOR_GRAY; - - memcpy(&lv_tas_transp, &lv_tas_def, sizeof(lv_tas_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_tas_transp.pages); - lv_tas_transp.pages.scrl_rects.objs.transp = 0; /*if transp == 1 the cursor will not be drawn*/ - } #endif diff --git a/lv_objx/lv_ta.h b/lv_objx/lv_ta.h index 4a8bbc55c..6af19129f 100644 --- a/lv_objx/lv_ta.h +++ b/lv_objx/lv_ta.h @@ -48,9 +48,9 @@ typedef struct /*Style of text area*/ typedef struct { - lv_pages_t pages; /*Style of ancestor*/ + lv_pages_t page; /*Style of ancestor*/ /*New style element for this type */ - lv_labels_t labels; + lv_labels_t label; color_t cursor_color; cord_t cursor_width; uint8_t cursor_show :1; @@ -60,8 +60,6 @@ typedef struct typedef enum { LV_TAS_DEF, - LV_TAS_SIMPLE, - LV_TAS_TRANSP, }lv_tas_builtin_t; /********************** diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index c1a63df0c..61ebe0525 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -69,8 +69,10 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new window object*/ if(copy == NULL) { - lv_obj_set_size(new_win, lv_obj_get_width(new_win), lv_obj_get_height(new_win)); + lv_obj_set_size(new_win, LV_HOR_RES, LV_VER_RES); lv_obj_set_pos(new_win, 0, 0); + lv_obj_t * scrl = lv_page_get_scrl(new_win); + lv_rect_set_fit(scrl, false, true); /*Create a holder for the header*/ ext->header = lv_rect_create(new_win, NULL); @@ -151,14 +153,12 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param) lv_obj_set_style(ext->ctrl_holder, &style->ctrl_holder); lv_obj_set_style(ext->title, &style->title); lv_obj_set_style(ext->header, &style->header); - lv_obj_set_opa(ext->header, style->header_opa); /*Refresh the style of all control buttons*/ child = lv_obj_get_child(ext->ctrl_holder, NULL); while(child != NULL) { lv_obj_set_style(child, &style->ctrl_btn); - lv_obj_set_opa(child, style->ctrl_btn_opa); /*Refresh the image style too*/ lv_obj_set_style(lv_obj_get_child(child, NULL), &style->ctrl_img); @@ -201,7 +201,6 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ lv_obj_t * btn = lv_btn_create(ext->ctrl_holder, NULL); lv_obj_set_style(btn, &style->ctrl_btn); - lv_obj_set_opa(btn, style->ctrl_btn_opa); lv_obj_set_size(btn, style->ctrl_btn_w, style->ctrl_btn_h); lv_btn_set_rel_action(btn, rel_action); @@ -299,10 +298,7 @@ lv_wins_t * lv_wins_get(lv_wins_builtin_t style, lv_wins_t * copy) style_p = &lv_wins_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_wins_t)); - else memcpy(copy, &lv_wins_def, sizeof(lv_wins_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_wins_t)); return style_p; } @@ -347,51 +343,42 @@ static bool lv_win_design(lv_obj_t * win, const area_t * mask, lv_design_mode_t static void lv_wins_init(void) { /*Style for the content*/ - lv_pages_get(LV_PAGES_DEF, &lv_wins_def.pages); - lv_wins_def.pages.bg_rects.objs.color = COLOR_WHITE; - lv_wins_def.pages.bg_rects.gcolor = COLOR_WHITE; - lv_wins_def.pages.bg_rects.bwidth = 1 * LV_DOWNSCALE; - lv_wins_def.pages.bg_rects.bcolor = COLOR_GRAY; - lv_wins_def.pages.bg_rects.round = 0; - lv_wins_def.pages.bg_rects.hpad = 0; - lv_wins_def.pages.bg_rects.vpad = 0; + lv_pages_get(LV_PAGES_PAPER, &lv_wins_def.page); /*LV_PAGES_PAPER: White bg, transparent scrl*/ + lv_wins_def.page.bg.base.color = COLOR_WHITE; + lv_wins_def.page.bg.gcolor = COLOR_WHITE; + lv_wins_def.page.bg.bwidth = 1 * LV_DOWNSCALE; + lv_wins_def.page.bg.bcolor = COLOR_GRAY; + lv_wins_def.page.bg.radius = 0; + lv_wins_def.page.bg.vpad = LV_DPI; /*Great vpad on the background to move the content below the header*/ + lv_wins_def.page.bg.hpad = LV_DPI / 4; /*Styles for the header*/ - lv_rects_get(LV_RECTS_DEF, &lv_wins_def.header); - lv_wins_def.header.hpad = 5 * LV_DOWNSCALE; - lv_wins_def.header.vpad = 5 * LV_DOWNSCALE; - lv_wins_def.header.objs.color = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.header.gcolor = COLOR_MAKE(0x30, 0x40, 0x50); + lv_rects_get(LV_RECTS_PLAIN, &lv_wins_def.header); + lv_wins_def.header.bwidth = 0; + lv_wins_def.header.radius = 0; + lv_wins_def.header.hpad = LV_DPI / 10; + lv_wins_def.header.vpad = LV_DPI / 10; lv_wins_def.header.bwidth = 0; - lv_wins_def.header.round = 0; + lv_wins_def.header.radius = 0; lv_rects_get(LV_RECTS_TRANSP, &lv_wins_def.ctrl_holder); lv_wins_def.ctrl_holder.hpad = 0; lv_wins_def.ctrl_holder.vpad = 0; - lv_wins_def.ctrl_holder.opad = 5 * LV_DOWNSCALE; + lv_wins_def.ctrl_holder.opad = LV_DPI / 10; lv_btns_get(LV_BTNS_DEF, &lv_wins_def.ctrl_btn); - lv_wins_def.ctrl_btn.bcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0xD0, 0xE0, 0xF0); - lv_wins_def.ctrl_btn.mcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.ctrl_btn.gcolor[LV_BTN_STATE_REL] = COLOR_MAKE(0x30, 0x40, 0x50); - lv_wins_def.ctrl_btn.rects.bopa = 70; - lv_wins_def.ctrl_btn.rects.bwidth = 2 * LV_DOWNSCALE; - lv_wins_def.ctrl_btn.rects.round = LV_RECT_CIRCLE; + lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_REL].swidth = 0; + lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_PR].swidth = 0; + lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_TREL].swidth = 0; + lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_TPR].swidth = 0; + lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_INA].swidth = 0; lv_imgs_get(LV_IMGS_DEF, &lv_wins_def.ctrl_img); - lv_wins_def.ctrl_img.recolor_opa = OPA_50; - lv_wins_def.ctrl_img.objs.color = COLOR_WHITE; lv_labels_get(LV_LABELS_TITLE, &lv_wins_def.title); - lv_wins_def.title.objs.color = COLOR_MAKE(0xD0, 0xE0, 0xF0); - lv_wins_def.title.letter_space = 1 * LV_DOWNSCALE; - lv_wins_def.title.line_space = 1 * LV_DOWNSCALE; - lv_wins_def.ctrl_btn_w = 30 * LV_DOWNSCALE; - lv_wins_def.ctrl_btn_h = 30 * LV_DOWNSCALE; - - lv_wins_def.header_opa = OPA_COVER; - lv_wins_def.ctrl_btn_opa = OPA_COVER; + lv_wins_def.ctrl_btn_w = 2 * LV_DPI / 3; + lv_wins_def.ctrl_btn_h = 2 * LV_DPI / 3; } /** @@ -427,6 +414,8 @@ static void lv_win_realign(lv_obj_t * win) lv_obj_set_pos_us(ext->header, 0, 0); + lv_obj_t * scrl = lv_page_get_scrl(win); + lv_obj_set_width(scrl, LV_HOR_RES - 2 * style->page.bg.hpad); } #endif diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index 85f2e480a..57a229948 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -65,7 +65,7 @@ typedef struct /*Style of window*/ typedef struct { - lv_pages_t pages; /*Style of ancestor*/ + lv_pages_t page; /*Style of ancestor*/ /*New style element for this type */ /*Header settings*/ lv_rects_t header; /*Style of the header rectangle*/ @@ -75,8 +75,6 @@ typedef struct lv_imgs_t ctrl_img; /*Style of the image on the control buttons*/ cord_t ctrl_btn_w; /*Width of the control buttons*/ cord_t ctrl_btn_h; /*Height of the control buttons*/ - opa_t ctrl_btn_opa; /*Width of the control buttons in the percentage of object opacity (0..100)*/ - opa_t header_opa; /*Opacity of the header in the percentage of object opacity (0..100)*/ }lv_wins_t; /*Built-in styles of window*/ From c4f3838b1e973df71fc7d77602127b16c137796b Mon Sep 17 00:00:00 2001 From: Gabor Date: Tue, 11 Apr 2017 10:50:57 +0200 Subject: [PATCH 24/53] further renames --- lv_app/lv_app_util/lv_app_kb.c | 2 +- lv_appx/lv_app_sysmon.c | 76 +++--- lv_obj/lv_obj.h | 7 +- lv_objx/lv_bar.c | 320 ++++++++++++++++++++++++ lv_objx/{lv_pb.h => lv_bar.h} | 68 +++--- lv_objx/lv_btn.h | 19 +- lv_objx/lv_btnm.c | 18 +- lv_objx/lv_btnm.h | 12 +- lv_objx/lv_cb.h | 14 +- lv_objx/lv_chart.c | 8 +- lv_objx/lv_chart.h | 2 +- lv_objx/lv_ddlist.h | 14 +- lv_objx/lv_gauge.c | 88 +++---- lv_objx/lv_gauge.h | 20 +- lv_objx/lv_img.h | 16 +- lv_objx/lv_label.c | 2 +- lv_objx/lv_label.h | 20 +- lv_objx/lv_led.c | 63 ++--- lv_objx/lv_led.h | 11 +- lv_objx/lv_list.c | 2 +- lv_objx/lv_list.h | 6 +- lv_objx/lv_mbox.h | 2 +- lv_objx/lv_page.h | 14 +- lv_objx/lv_pb.c | 431 --------------------------------- lv_objx/lv_rect.c | 29 ++- lv_objx/lv_rect.h | 8 +- lv_objx/lv_ta.c | 11 +- lv_objx/lv_ta.h | 6 +- lvgl.h | 3 +- 29 files changed, 580 insertions(+), 712 deletions(-) create mode 100644 lv_objx/lv_bar.c rename lv_objx/{lv_pb.h => lv_bar.h} (52%) delete mode 100644 lv_objx/lv_pb.c diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 6a2c8dfa7..90be28aff 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -116,7 +116,7 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t kb_btnm = lv_btnm_create(lv_scr_act(), NULL); lv_obj_set_size(kb_btnm, LV_HOR_RES, LV_VER_RES / 2); lv_obj_align(kb_btnm, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); - lv_btnm_set_cb(kb_btnm, lv_app_kb_action); + lv_btnm_set_action(kb_btnm, lv_app_kb_action); if(mode & LV_APP_KB_MODE_TXT) { kb_btnms.label.font = font_get(LV_APP_FONT_MEDIUM); lv_btnm_set_map(kb_btnm, kb_map_lc); diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 8cd4fe341..deb12b63a 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -44,8 +44,8 @@ typedef struct /*Application specific data for a shortcut of this application*/ typedef struct { - lv_obj_t * pb_cpu; - lv_obj_t * pb_mem; + lv_obj_t * bar_cpu; + lv_obj_t * bar_mem; }my_sc_data_t; /********************** @@ -83,8 +83,8 @@ static lv_app_dsc_t my_app_dsc = static uint8_t mem_pct[LV_APP_SYSMON_PNUM]; static uint8_t cpu_pct[LV_APP_SYSMON_PNUM]; -static lv_pbs_t cpu_pbs; -static lv_pbs_t mem_pbs; +static lv_bars_t cpu_bars; +static lv_bars_t mem_bars; #if USE_DYN_MEM != 0 && DM_CUSTOM == 0 static dm_mon_t mem_mon; #endif @@ -108,31 +108,31 @@ const lv_app_dsc_t * lv_app_sysmon_init(void) memset(mem_pct, 0, sizeof(mem_pct)); memset(cpu_pct, 0, sizeof(cpu_pct)); - /*Create progress bar styles for the shortcut*/ - lv_pbs_get(LV_PBS_DEF, &cpu_pbs); - cpu_pbs.bg.gcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); - cpu_pbs.bg.base.color = COLOR_MAKE(0xFF, 0xD0, 0xD0); - cpu_pbs.bg.bcolor = COLOR_MAKE(0xFF, 0x20, 0x20); - cpu_pbs.bg.bwidth = 1 * LV_DOWNSCALE; + /*Create bar styles for the shortcut*/ + lv_bars_get(LV_BARS_DEF, &cpu_bars); + cpu_bars.bg.gcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); + cpu_bars.bg.base.color = COLOR_MAKE(0xFF, 0xD0, 0xD0); + cpu_bars.bg.bcolor = COLOR_MAKE(0xFF, 0x20, 0x20); + cpu_bars.bg.bwidth = 1 * LV_DOWNSCALE; - cpu_pbs.bar.gcolor = COLOR_MARRON; - cpu_pbs.bar.base.color = COLOR_RED; - cpu_pbs.bar.bwidth = 0; + cpu_bars.indic.gcolor = COLOR_MARRON; + cpu_bars.indic.base.color = COLOR_RED; + cpu_bars.indic.bwidth = 0; - cpu_pbs.label.base.color = COLOR_MAKE(0x40, 0x00, 0x00); - cpu_pbs.label.font = font_get(LV_APP_FONT_MEDIUM); - cpu_pbs.label.line_space = 0; - cpu_pbs.label.mid = 1; + cpu_bars.label.base.color = COLOR_MAKE(0x40, 0x00, 0x00); + cpu_bars.label.font = font_get(LV_APP_FONT_MEDIUM); + cpu_bars.label.line_space = 0; + cpu_bars.label.mid = 1; - memcpy(&mem_pbs, &cpu_pbs, sizeof(mem_pbs)); - mem_pbs.bg.gcolor = COLOR_MAKE(0xD0, 0xFF, 0xD0); - mem_pbs.bg.base.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); - mem_pbs.bg.bcolor = COLOR_MAKE(0x20, 0xFF, 0x20); + memcpy(&mem_bars, &cpu_bars, sizeof(cpu_bars)); + mem_bars.bg.gcolor = COLOR_MAKE(0xD0, 0xFF, 0xD0); + mem_bars.bg.base.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); + mem_bars.bg.bcolor = COLOR_MAKE(0x20, 0xFF, 0x20); - mem_pbs.bar.gcolor = COLOR_GREEN; - mem_pbs.bar.base.color = COLOR_LIME; + mem_bars.indic.gcolor = COLOR_GREEN; + mem_bars.indic.base.color = COLOR_LIME; - mem_pbs.label.base.color = COLOR_MAKE(0x00, 0x40, 0x00); + mem_bars.label.base.color = COLOR_MAKE(0x00, 0x40, 0x00); return &my_app_dsc; } @@ -189,19 +189,19 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) cord_t w = lv_obj_get_width(sc) / 5; - /*Create 2 progress bars fr the CPU and the Memory*/ - sc_data->pb_cpu = lv_pb_create(sc, NULL); - lv_obj_set_size(sc_data->pb_cpu, w, 5 * lv_obj_get_height(sc) / 8); - lv_obj_align(sc_data->pb_cpu, NULL, LV_ALIGN_IN_BOTTOM_LEFT, w, - lv_obj_get_height(sc) / 8); - lv_obj_set_style(sc_data->pb_cpu, &cpu_pbs); - lv_obj_set_click(sc_data->pb_cpu, false); - lv_pb_set_min_max_value(sc_data->pb_cpu, 0, 100); - lv_pb_set_format_str(sc_data->pb_cpu, "C\nP\nU"); + /*Create 2 bars for the CPU and the Memory*/ + sc_data->bar_cpu = lv_bar_create(sc, NULL); + lv_obj_set_size(sc_data->bar_cpu, w, 5 * lv_obj_get_height(sc) / 8); + lv_obj_align(sc_data->bar_cpu, NULL, LV_ALIGN_IN_BOTTOM_LEFT, w, - lv_obj_get_height(sc) / 8); + lv_obj_set_style(sc_data->bar_cpu, &cpu_bars); + lv_obj_set_click(sc_data->bar_cpu, false); + lv_bar_set_range(sc_data->bar_cpu, 0, 100); + lv_bar_set_format_str(sc_data->bar_cpu, "C\nP\nU"); - sc_data->pb_mem = lv_pb_create(sc, sc_data->pb_cpu); - lv_obj_align(sc_data->pb_mem, sc_data->pb_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); - lv_obj_set_style(sc_data->pb_mem, &mem_pbs); - lv_pb_set_format_str(sc_data->pb_mem, "M\ne\nm"); + sc_data->bar_mem = lv_bar_create(sc, sc_data->bar_cpu); + lv_obj_align(sc_data->bar_mem, sc_data->bar_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); + lv_obj_set_style(sc_data->bar_mem, &mem_bars); + lv_bar_set_format_str(sc_data->bar_mem, "M\ne\nm"); lv_app_sysmon_refr(); } @@ -387,8 +387,8 @@ static void lv_app_sysmon_refr(void) /*Refresh the shortcut*/ my_sc_data_t * sc_data = app->sc_data; if(sc_data != NULL) { - lv_pb_set_value(sc_data->pb_cpu, cpu_pct[LV_APP_SYSMON_PNUM - 1]); - lv_pb_set_value(sc_data->pb_mem, mem_pct[LV_APP_SYSMON_PNUM - 1]); + lv_bar_set_value(sc_data->bar_cpu, cpu_pct[LV_APP_SYSMON_PNUM - 1]); + lv_bar_set_value(sc_data->bar_mem, mem_pct[LV_APP_SYSMON_PNUM - 1]); } lv_app_com_send(app, LV_APP_COM_TYPE_CHAR, buf_short, strlen(buf_short)); diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index 47d3aa05d..0606fe7ea 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -105,7 +105,9 @@ typedef struct __LV_OBJ_T cord_t ext_size; /*EXTtend the size of the object in every direction. Used to draw shadow, shine etc.*/ +#if LV_OBJ_FREE_NUM != 0 uint8_t free_num; /*Application specific identifier (set it freely)*/ +#endif }lv_obj_t; /*Protect some attributes (max. 8 bit)*/ @@ -113,9 +115,8 @@ typedef enum { LV_PROTECT_NONE = 0x00, LV_PROTECT_CHILD_CHG = 0x01, /*Disable the child change signal. Used by the library*/ - LV_PROTECT_OPA = 0x02, /*Prevent lv_obj_set_opar to modify the opacity*/ - LV_PROTECT_PARENT = 0x04, /*Prevent automatic parent change (e.g. in lv_page)*/ - LV_PROTECT_POS = 0x08, /*Prevent automatic positioning (e.g. in lv_rect layout)*/ + LV_PROTECT_PARENT = 0x02, /*Prevent automatic parent change (e.g. in lv_page)*/ + LV_PROTECT_POS = 0x04, /*Prevent automatic positioning (e.g. in lv_rect layout)*/ }lv_protect_t; typedef enum diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c new file mode 100644 index 000000000..f492ad202 --- /dev/null +++ b/lv_objx/lv_bar.c @@ -0,0 +1,320 @@ + + +/** + * @file lv_bar.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_BAR != 0 + +#include +#include "../lv_draw/lv_draw.h" +#include + +/********************* + * DEFINES + *********************/ +#define LV_BAR_TXT_MAX_LENGTH 64 +#define LV_BAR_DEF_FORMAT "%d %%" +#define LV_BAR_DEF_WIDTH (LV_DPI * 2) +#define LV_BAR_DEF_HEIGHT (LV_DPI / 2) + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode); +static void lv_bars_init(void); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_bars_t lv_bars_def; +static lv_design_f_t ancestor_design_f; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a bar objects + * @param par pointer to an object, it will be the parent of the new bar + * @param copy pointer to a bar object, if not NULL then the new object will be copied from it + * @return pointer to the created bar + */ +lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor basic object*/ + lv_obj_t * new_bar = lv_rect_create(par, copy); + dm_assert(new_bar); + + /*Allocate the object type specific extended data*/ + lv_bar_ext_t * ext = lv_obj_alloc_ext(new_bar, sizeof(lv_bar_ext_t)); + dm_assert(ext); + ext->min_value = 0; + ext->max_value = 100; + ext->act_value = 0; + ext->format_str = NULL; + ext->label = NULL; + + /* Save the rectangle design function. + * It will be used in the bar design function*/ + if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_bar); + + lv_obj_set_signal_f(new_bar, lv_bar_signal); + lv_obj_set_design_f(new_bar, lv_bar_design); + + /*Init the new bar object*/ + if(copy == NULL) { + ext->format_str = dm_alloc(strlen(LV_BAR_DEF_FORMAT) + 1); + strcpy(ext->format_str, LV_BAR_DEF_FORMAT); + + ext->label = lv_label_create(new_bar, NULL); + + lv_rect_set_layout(new_bar, LV_RECT_LAYOUT_CENTER); + lv_obj_set_click(new_bar, false); + lv_obj_set_size(new_bar, LV_BAR_DEF_WIDTH, LV_BAR_DEF_HEIGHT); + lv_obj_set_style(new_bar, lv_bars_get(LV_BARS_DEF, NULL)); + + lv_bar_set_value(new_bar, ext->act_value); + } else { + lv_bar_ext_t * ext_copy = lv_obj_get_ext(copy); + ext->format_str = dm_alloc(strlen(ext_copy->format_str) + 1); + strcpy(ext->format_str, ext_copy->format_str); + ext->min_value = ext_copy->min_value; + ext->max_value = ext_copy->max_value; + ext->act_value = ext_copy->act_value; + ext->label = lv_label_create(new_bar, ext_copy->label); + + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_bar); + + lv_bar_set_value(new_bar, ext->act_value); + + } + return new_bar; +} + +/** + * Signal function of the bar + * @param bar pointer to a bar object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + */ +bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_rect_signal(bar, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + lv_bars_t * style = lv_obj_get_style(bar); + point_t p; + char buf[LV_BAR_TXT_MAX_LENGTH]; + + switch(sign) { + case LV_SIGNAL_CLEANUP: + dm_free(ext->format_str); + ext->format_str = NULL; + break; + case LV_SIGNAL_STYLE_CHG: + lv_obj_set_style(ext->label, &style->label); + lv_bar_set_value(bar, lv_bar_get_value(bar)); + break; + default: + break; + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set a new value on the bar + * @param bar pointer to a bar object + * @param value new value + */ +void lv_bar_set_value(lv_obj_t * bar, int16_t value) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + ext->act_value = value > ext->max_value ? ext->max_value : value; + ext->act_value = ext->act_value < ext->min_value ? ext->min_value : ext->act_value; + + char buf[LV_BAR_TXT_MAX_LENGTH]; + sprintf(buf, ext->format_str, ext->act_value); + lv_label_set_text(ext->label, buf); + + lv_obj_inv(bar); +} + +/** + * Set minimum and the maximum values of a bar + * @param bar pointer to he bar object + * @param min minimum value + * @param max maximum value + */ +void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + ext->max_value = max; + ext->max_value = max; + if(ext->act_value > max) { + ext->act_value = max; + lv_bar_set_value(bar, ext->act_value); + } + lv_obj_inv(bar); +} + +/** + * Set format string for the label of the bar + * @param bar pointer to bar object + * @param format a printf-like format string with one number (e.g. "Loading (%d)") + */ +void lv_bar_set_format_str(lv_obj_t * bar, const char * format) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + dm_free(ext->format_str); + ext->format_str = dm_alloc(strlen(format) + 1); + strcpy(ext->format_str, format); + lv_bar_set_value(bar, ext->act_value); +} + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the value of a bar + * @param bar pointer to a bar object + * @return the value of the bar + */ +int16_t lv_bar_get_value(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + return ext->act_value; +} + +/** + * Return with a pointer to a built-in style and/or copy it to a variable + * @param style a style name from lv_bars_builtin_t enum + * @param copy copy the style to this variable. (NULL if unused) + * @return pointer to an lv_bars_t style + */ +lv_bars_t * lv_bars_get(lv_bars_builtin_t style, lv_bars_t * copy) +{ + static bool style_inited = false; + + /*Make the style initialization if it is not done yet*/ + if(style_inited == false) { + lv_bars_init(); + style_inited = true; + } + + lv_bars_t *style_p; + + switch(style) { + case LV_BARS_DEF: + style_p = &lv_bars_def; + break; + default: + style_p = &lv_bars_def; + } + + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_bars_t)); + + return style_p; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Handle the drawing related tasks of the bars + * @param bar pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode) +{ + if(ancestor_design_f == NULL) return false; + + if(mode == LV_DESIGN_COVER_CHK) { + /*Return false if the object is not covers the mask_p area*/ + return ancestor_design_f(bar, mask, mode); + } else if(mode == LV_DESIGN_DRAW_MAIN) { + ancestor_design_f(bar, mask, mode); + + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + lv_bars_t * style = lv_obj_get_style(bar); + area_t bar_area; + uint32_t tmp; + area_cpy(&bar_area, &bar->cords); + + cord_t w = lv_obj_get_width(bar); + cord_t h = lv_obj_get_height(bar); + + if(w >= h) { + bar_area.x2 = (int32_t) ((int32_t)w * ext->act_value) / (ext->max_value - ext->min_value); + bar_area.x2 += bar_area.x1; + } else { + bar_area.y1 = (int32_t) ((int32_t)h * ext->act_value) / (ext->max_value - ext->min_value); + bar_area.y1 = bar_area.y2 - bar_area.y1; + } + + /*Draw the main bar*/ + lv_draw_rect(&bar_area, mask, &style->indic); + } + return true; +} + +/** + * Initialize the bar styles + */ +static void lv_bars_init(void) +{ + /*Default style*/ + lv_rects_get(LV_RECTS_FANCY, &lv_bars_def.bg); /*Background*/ + lv_bars_def.bg.base.color = COLOR_WHITE; + lv_bars_def.bg.gcolor = COLOR_SILVER, + lv_bars_def.bg.bcolor = COLOR_BLACK; + + lv_rects_get(LV_RECTS_FANCY, &lv_bars_def.indic); /*Bar*/ + lv_bars_def.indic.base.color = COLOR_LIME; + lv_bars_def.indic.gcolor = COLOR_GREEN; + lv_bars_def.indic.bcolor = COLOR_BLACK; + lv_bars_def.indic.swidth = 0; + + lv_labels_get(LV_LABELS_TXT, &lv_bars_def.label); /*Label*/ + lv_bars_def.label.line_space = 0; + +} +#endif diff --git a/lv_objx/lv_pb.h b/lv_objx/lv_bar.h similarity index 52% rename from lv_objx/lv_pb.h rename to lv_objx/lv_bar.h index 7de556963..fc5b044e7 100644 --- a/lv_objx/lv_pb.h +++ b/lv_objx/lv_bar.h @@ -1,24 +1,24 @@ /** - * @file lv_pb.h + * @file lv_bar.h * */ -#ifndef LV_PB_H -#define LV_PB_H +#ifndef LV_BAR_H +#define LV_BAR_H /********************* * INCLUDES *********************/ #include "lv_conf.h" -#if USE_LV_PB != 0 +#if USE_LV_BAR != 0 /*Testing of dependencies*/ #if USE_LV_RECT == 0 -#error "lv_pb: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#error "lv_bar: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " #endif #if USE_LV_LABEL == 0 -#error "lv_pb: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " +#error "lv_bar: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " #endif #include "../lv_obj/lv_obj.h" @@ -34,36 +34,32 @@ * TYPEDEFS **********************/ -/*Data of progress bar*/ +/*Data of bar*/ typedef struct { lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * label; /*Pointer to the label on the progress bar*/ - int16_t act_value; /*Current value of the progress bar*/ - int16_t tmp_value; /*Value when settings from a display input*/ - int16_t min_value; /*Minimum value of the progress bar*/ - int16_t max_value; /*Maximum value of the progress bar*/ + lv_obj_t * label; /*Pointer to the label on the bar*/ + int16_t act_value; /*Current value of the bar*/ + int16_t min_value; /*Minimum value of the bar*/ + int16_t max_value; /*Maximum value of the bar*/ char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ -}lv_pb_ext_t; +}lv_bar_ext_t; -/*Style of progress bar*/ +/*Style of bar*/ typedef struct { lv_rects_t bg; /*Style of the background (inherited)*/ - lv_rects_t bar; /*Style of the bar*/ + lv_rects_t indic; /*Style of the indicator*/ lv_labels_t label; /*Style of the label*/ - lv_rects_t btn; /*Style of the button (it is rectangle but acts as a button)*/ - cord_t btn_size; /*Width or height of the button (depending on the orientation of the pb)*/ -}lv_pbs_t; +}lv_bars_t; -/*Built-in styles of progress bar*/ +/*Built-in styles of bar*/ typedef enum { - LV_PBS_DEF, - LV_PBS_SLIDER, -}lv_pbs_builtin_t; + LV_BARS_DEF, +}lv_bars_builtin_t; /********************** * GLOBAL PROTOTYPES @@ -75,52 +71,52 @@ typedef enum * @param copy pointer to a progress bar object, if not NULL then the new object will be copied from it * @return pointer to the created progress bar */ -lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy); +lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy); /** * Signal function of the progress bar - * @param pb pointer to a progress bar object + * @param bar pointer to a progress bar object * @param sign a signal type from lv_signal_t enum * @param param pointer to a signal specific variable */ -bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param); +bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param); /** * Set a new value on the progress bar - * @param pb pointer to a progress bar object + * @param bar pointer to a progress bar object * @param value new value */ -void lv_pb_set_value(lv_obj_t * pb, int16_t value); +void lv_bar_set_value(lv_obj_t * bar, int16_t value); /** * Set minimum and the maximum values of a progress bar - * @param pb pointer to he progress bar object + * @param bar pointer to he progress bar object * @param min minimum value * @param max maximum value */ -void lv_pb_set_min_max_value(lv_obj_t * pb, int16_t min, int16_t max); +void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max); /** * Set format string for the label of the progress bar - * @param pb pointer to progress bar object + * @param bar pointer to progress bar object * @param format a printf-like format string with one number (e.g. "Loading (%d)") */ -void lv_pb_set_format_str(lv_obj_t * pb, const char * format); +void lv_bar_set_format_str(lv_obj_t * bar, const char * format); /** * Get the value of a progress bar - * @param pb pointer to a progress bar object + * @param bar pointer to a progress bar object * @return the value of the progress bar */ -int16_t lv_pb_get_value(lv_obj_t * pb); +int16_t lv_bar_get_value(lv_obj_t * bar); /** * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pbs_builtin_t enum + * @param style a style name from lv_bars_builtin_t enum * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pbs_t style + * @return pointer to an lv_bars_t style */ -lv_pbs_t * lv_pbs_get(lv_pbs_builtin_t style, lv_pbs_t * copy); +lv_bars_t * lv_bars_get(lv_bars_builtin_t style, lv_bars_t * copy); /********************** * MACROS diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 924f27346..976ddfbca 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -28,6 +28,7 @@ * TYPEDEFS **********************/ +/*Button states*/ typedef enum { LV_BTN_STATE_PR, @@ -41,16 +42,16 @@ typedef enum /*Data of button*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + lv_rect_ext_t rect; /*Ext. of ancestor*/ /*New data for this type */ - lv_action_t pr_action; - lv_action_t rel_action; - lv_action_t lpr_action; - lv_action_t lpr_rep_action; + lv_action_t pr_action; /*A function to call when the button is pressed (NULL if unused)*/ + lv_action_t rel_action; /*A function to call when the button is released (NULL if unused)*/ + lv_action_t lpr_action; /*A function to call when the button is long pressed (NULL if unused)*/ + lv_action_t lpr_rep_action; /*A function to call periodically after long press (NULL if unused)*/ - lv_btn_state_t state; - uint8_t tgl :1; /*1: Toggle enabled*/ - uint8_t lpr_exec :1; /*1: long press action executed (Not for user)*/ + lv_btn_state_t state; /*Current state of the button from 'lv_btn_state_t' enum*/ + uint8_t tgl :1; /*1: Toggle enabled*/ + uint8_t lpr_exec :1; /*1: Long press action executed (Handled by the library)*/ }lv_btn_ext_t; /*Style of button*/ @@ -58,7 +59,7 @@ typedef struct { lv_rects_t current; /*Current style according to the state. Library use this. Style of ancestor*/ /*New style element for this type */ - lv_rects_t state_style[LV_BTN_STATE_NUM]; + lv_rects_t state_style[LV_BTN_STATE_NUM]; /*Rectangle styles for each state*/ }lv_btns_t; /*Built-in styles of button*/ diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index 88d49439e..c9d414f53 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -17,7 +17,7 @@ /********************* * DEFINES *********************/ -#define LV_BTNM_BTN_PR_INVALID 0xFFFF +#define LV_BTNM_PR_NONE 0xFFFF /********************** * TYPEDEFS @@ -71,7 +71,7 @@ lv_obj_t * lv_btnm_create(lv_obj_t * par, lv_obj_t * copy) lv_btnm_ext_t * ext = lv_obj_alloc_ext(new_btnm, sizeof(lv_btnm_ext_t)); dm_assert(ext); ext->btn_cnt = 0; - ext->btn_pr = LV_BTNM_BTN_PR_INVALID; + ext->btn_pr = LV_BTNM_PR_NONE; ext->btn_areas = NULL; ext->cb = NULL; ext->map_p = NULL; @@ -134,7 +134,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) lv_obj_get_cords(btnm, &btnm_area); if(new_btn != ext->btn_pr) { lv_dispi_reset_lpr(param); - if(ext->btn_pr != LV_BTNM_BTN_PR_INVALID) { + if(ext->btn_pr != LV_BTNM_PR_NONE) { area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); btn_area.x1 += btnm_area.x1; btn_area.y1 += btnm_area.y1; @@ -142,7 +142,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) btn_area.y2 += btnm_area.y1; lv_inv_area(&btn_area); } - if(new_btn != LV_BTNM_BTN_PR_INVALID) { + if(new_btn != LV_BTNM_PR_NONE) { area_cpy(&btn_area, &ext->btn_areas[new_btn]); btn_area.x1 += btnm_area.x1; btn_area.y1 += btnm_area.y1; @@ -157,7 +157,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) case LV_SIGNAL_RELEASED: case LV_SIGNAL_LONG_PRESS_REP: if(ext->cb != NULL && - ext->btn_pr != LV_BTNM_BTN_PR_INVALID) { + ext->btn_pr != LV_BTNM_PR_NONE) { uint16_t txt_i = 0; uint16_t btn_i = 0; /*Search the next valid text in the map*/ @@ -169,7 +169,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) ext->cb(btnm, txt_i); } - if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_BTN_PR_INVALID) { + if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_PR_NONE) { /*Invalidate to old area*/; lv_obj_get_cords(btnm, &btnm_area); area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); @@ -179,7 +179,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) btn_area.y2 += btnm_area.y1; lv_inv_area(&btn_area); - ext->btn_pr = LV_BTNM_BTN_PR_INVALID; + ext->btn_pr = LV_BTNM_PR_NONE; } break; default: @@ -294,7 +294,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) * @param btnm: pointer to button matrix object * @param cb pointer to a callback function */ -void lv_btnm_set_cb(lv_obj_t * btnm, lv_btnm_callback_t cb) +void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb) { LV_EA(btnm, lv_btnm_ext_t)->cb = cb; } @@ -509,7 +509,7 @@ static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p) } } - if(i == ext->btn_cnt) i = LV_BTNM_BTN_PR_INVALID; + if(i == ext->btn_cnt) i = LV_BTNM_PR_NONE; return i; } diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index f68020baa..851b7eb8b 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -35,7 +35,7 @@ * TYPEDEFS **********************/ -/* Type of callback function which is called when a button is released +/* Type of callback function which is called when a button is released on the button matrix * Parameters: button matrix, released button index in the map string * return LV_ACTION_RES_INV: the button matrix is deleted else LV_ACTION_RES_OK*/ typedef lv_action_res_t (*lv_btnm_callback_t) (lv_obj_t *, uint16_t); @@ -46,10 +46,10 @@ typedef struct lv_rect_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ const char ** map_p; /*Pointer to the current map*/ - area_t * btn_areas; - uint16_t btn_cnt; - uint16_t btn_pr; - lv_btnm_callback_t cb; + area_t * btn_areas; /*Array of areas for the buttons (Handled by the library)*/ + uint16_t btn_cnt; /*Number of button in 'map_p'(Handled by the library)*/ + uint16_t btn_pr; /*Index of the currently pressed button or LV_BTNM_PR_NONE (Handled by the library)*/ + lv_btnm_callback_t cb; /*A function to call when a button is releases*/ }lv_btnm_ext_t; /*Style of button matrix*/ @@ -106,7 +106,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map); * @param btnm: pointer to button matrix object * @param cb pointer to a callback function */ -void lv_btnm_set_cb(lv_obj_t * btnm, lv_btnm_callback_t cb); +void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb); /** * Get the current map of a button matrix diff --git a/lv_objx/lv_cb.h b/lv_objx/lv_cb.h index 524a9216b..f3408169d 100644 --- a/lv_objx/lv_cb.h +++ b/lv_objx/lv_cb.h @@ -37,24 +37,24 @@ typedef struct { lv_btn_ext_t bg_btn; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * bullet; - lv_obj_t * label; + lv_obj_t * bullet; /*Pointer to button*/ + lv_obj_t * label; /*Pointer to label*/ }lv_cb_ext_t; /*Style of check box*/ typedef struct { - lv_btns_t bg; /*Style of ancestor*/ + lv_btns_t bg; /*Style of the background button*/ /*New style element for this type */ - lv_btns_t bullet; - lv_labels_t label; - cord_t bullet_size; + lv_btns_t bullet; /*Style of the bullet*/ + lv_labels_t label; /*Style of the label*/ + cord_t bullet_size; /*Size of bullet (square)*/ }lv_cbs_t; /*Built-in styles of check box*/ typedef enum { - LV_CBS_DEF, + LV_CBS_DEF, /*Default style with transparent background*/ }lv_cbs_builtin_t; /********************** diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 13634e4f5..608e5f27c 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -427,7 +427,7 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) lv_lines_t lines; lv_lines_get(LV_LINES_DEF, &lines); lines.width = style->width; - lines.base.opa = (uint16_t)((uint16_t)style->bg.base.opa * style->data_opa) >> 8; + lines.base.opa = (uint16_t)((uint16_t)style->bg_rect.base.opa * style->data_opa) >> 8; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, y_data) { @@ -481,7 +481,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) rects.bwidth = 0; rects.empty = 0; rects.radius = LV_RECT_CIRCLE; - rects.base.opa = (uint16_t)((uint16_t)style->bg.base.opa * style->data_opa) >> 8; + rects.base.opa = (uint16_t)((uint16_t)style->bg_rect.base.opa * style->data_opa) >> 8; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, y_data) { @@ -531,7 +531,7 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) rects.bwidth = 0; rects.empty = 0; rects.radius = 0; - rects.base.opa = (uint16_t)((uint16_t)style->bg.base.opa * style->data_opa) >> 8; + rects.base.opa = (uint16_t)((uint16_t)style->bg_rect.base.opa * style->data_opa) >> 8; col_a.y2 = chart->cords.y2; @@ -574,7 +574,7 @@ static void lv_charts_init(void) { /*Default style*/ /* Background */ - lv_rects_get(LV_RECTS_FANCY, &lv_charts_def.bg); + lv_rects_get(LV_RECTS_FANCY, &lv_charts_def.bg_rect); /* Div. line */ lv_lines_get(LV_LINES_DEF, &lv_charts_def.div_line); diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index 70df5e06f..1b846b587 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -59,7 +59,7 @@ typedef enum /*Style of chart*/ typedef struct { - lv_rects_t bg; /*Style of the ancestor*/ + lv_rects_t bg_rect; /*Style of the ancestor*/ /*New style element for this type */ lv_lines_t div_line; color_t color[LV_CHART_DL_NUM]; /*Line/Point/Col colors */ diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 91a4fd101..0b7e7e5d1 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -27,11 +27,11 @@ typedef struct { lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * opt_label; /*Label for the options*/ - lv_action_res_t (*cb)(lv_obj_t *, uint16_t); - uint16_t sel_opt; - uint8_t opened :1; - uint8_t auto_size :1; + lv_obj_t * opt_label; /*Label for the options*/ + lv_action_res_t (*cb)(lv_obj_t *, uint16_t); /*Pointer to function to call when an option is slected*/ + uint16_t sel_opt; /*Index of the current option*/ + uint8_t opened :1; /*1: The list is opened*/ + uint8_t auto_size :1; /*1: Set height to show all options. 0: Set height maximum to the parent bottom*/ }lv_ddlist_ext_t; /*Style of drop down list*/ @@ -39,14 +39,14 @@ typedef struct { lv_pages_t page; /*Style of ancestor*/ /*New style element for this type */ - lv_rects_t sel; /*Select rectangle*/ + lv_rects_t sel; /*Select the 'selected' rectangle*/ lv_labels_t label; /*Style of labels*/ }lv_ddlists_t; /*Built-in styles of drop down list*/ typedef enum { - LV_DDLISTS_DEF, + LV_DDLISTS_DEF, /*Default drop down list*/ }lv_ddlists_builtin_t; /********************** diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 38d0abb0b..536ddcfbd 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -72,7 +72,7 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) /*Initialize the allocated 'ext' */ ext->min = 0; ext->max = 100; - ext->needle_num = 1; + ext->needle_num = 0; ext->low_critical = 0; ext->values = NULL; ext->txt = NULL; @@ -156,7 +156,12 @@ void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num) lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); if(ext->values != NULL) dm_free(ext->values); - ext->values = dm_alloc(num * sizeof(int16_t)); + ext->values = dm_realloc(ext->values, num * sizeof(int16_t)); + + uint8_t n; + for(n = ext->needle_num; n < num; n++) { + ext->values[n] = ext->min; + } ext->needle_num = num; lv_obj_inv(gauge); @@ -312,10 +317,7 @@ lv_gauges_t * lv_gauges_get(lv_gauges_builtin_t style, lv_gauges_t * copy) style_p = &lv_gauges_def; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_gauges_t)); - else memcpy(copy, &lv_gauges_def, sizeof(lv_gauges_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_gauges_t)); return style_p; } @@ -347,8 +349,8 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod /* Draw the background * Re-color the gauge according to the critical value*/ - color_t mcolor_min = style->rects.objs.color; - color_t gcolor_min = style->rects.gcolor; + color_t mcolor_min = style->bg_rect.base.color; + color_t gcolor_min = style->bg_rect.gcolor; int16_t critical_val = ext->low_critical == 0 ? ext->min : ext->max; uint8_t i; @@ -361,11 +363,11 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod if(ext->low_critical != 0) ratio = OPA_COVER - ratio; - style->rects.objs.color= color_mix(style->mcolor_critical, mcolor_min, ratio); - style->rects.gcolor = color_mix(style->gcolor_critical, gcolor_min, ratio); + style->bg_rect.base.color= color_mix(style->critical_mcolor, mcolor_min, ratio); + style->bg_rect.gcolor = color_mix(style->critical_gcolor, gcolor_min, ratio); ancestor_design_f(gauge, mask, mode); - style->rects.objs.color= mcolor_min; - style->rects.gcolor = gcolor_min; + style->bg_rect.base.color= mcolor_min; + style->bg_rect.gcolor = gcolor_min; lv_gauge_draw_scale(gauge, mask); @@ -391,7 +393,7 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) char scale_txt[16]; - cord_t r = lv_obj_get_width(gauge) / 2 - style->scale_pad; + cord_t r = lv_obj_get_width(gauge) / 2 - style->bg_rect.opad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; int16_t angle_ofs = 90 + (360 - style->scale_angle) / 2; @@ -413,7 +415,7 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) area_t label_cord; point_t label_size; - txt_get_size(&label_size, scale_txt, font_get(style->scale_labels.font), + txt_get_size(&label_size, scale_txt, style->scale_labels.font, style->scale_labels.letter_space, style->scale_labels.line_space, LV_CORD_MAX, TXT_FLAG_NONE); @@ -423,7 +425,7 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) label_cord.x2 = label_cord.x1 + label_size.x; label_cord.y2 = label_cord.y1 + label_size.y; - lv_draw_label(&label_cord, mask, &style->scale_labels, OPA_COVER, scale_txt, TXT_FLAG_NONE); + lv_draw_label(&label_cord, mask, &style->scale_labels, scale_txt, TXT_FLAG_NONE); } /*Calculate the critical value*/ @@ -440,7 +442,7 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) area_t label_cord; point_t label_size; - txt_get_size(&label_size, value_txt, font_get(style->value_labels.font), + txt_get_size(&label_size, value_txt, style->value_labels.font, style->value_labels.letter_space, style->value_labels.line_space, LV_CORD_MAX, TXT_FLAG_NONE); @@ -452,7 +454,7 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) label_cord.x2 = label_cord.x1 + label_size.x; label_cord.y2 = label_cord.y1 + label_size.y; - lv_draw_label(&label_cord, mask, &style->value_labels, OPA_COVER, value_txt, TXT_FLAG_NONE); + lv_draw_label(&label_cord, mask, &style->value_labels, value_txt, TXT_FLAG_NONE); } } @@ -466,7 +468,7 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask) lv_gauges_t * style = lv_obj_get_style(gauge); lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - cord_t r = lv_obj_get_width(gauge) / 2 - style->scale_pad; + cord_t r = lv_obj_get_width(gauge) / 2 - style->bg_rect.opad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; int16_t angle_ofs = 90 + (360 - style->scale_angle) / 2; @@ -484,27 +486,27 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask) p_end.x = (trigo_sin(needle_angle + 90) * r) / TRIGO_SIN_MAX + x_ofs; /*Draw the needle with the corresponding color*/ - style->needle_lines.objs.color = style->needle_color[i]; + style->needle_lines.base.color = style->needle_color[i]; - lv_draw_line(&p_mid, &p_end, mask, &style->needle_lines, style->needle_opa); + lv_draw_line(&p_mid, &p_end, mask, &style->needle_lines); } /*Draw the needle middle area*/ lv_rects_t nm; area_t nm_cord; - lv_rects_get(LV_RECTS_DEF, &nm); + lv_rects_get(LV_RECTS_PLAIN, &nm); nm.bwidth = 0; nm.radius = LV_RECT_CIRCLE; - nm.objs.color = style->needle_mid_color; + nm.base.color = style->needle_mid_color; nm.gcolor = style->needle_mid_color; - nm_cord.x1 = x_ofs - style->needle_mid_r; - nm_cord.y1 = y_ofs - style->needle_mid_r; - nm_cord.x2 = x_ofs + style->needle_mid_r; - nm_cord.y2 = y_ofs + style->needle_mid_r; + nm_cord.x1 = x_ofs - style->needle_mid_size; + nm_cord.y1 = y_ofs - style->needle_mid_size; + nm_cord.x2 = x_ofs + style->needle_mid_size; + nm_cord.y2 = y_ofs + style->needle_mid_size; - lv_draw_rect(&nm_cord, mask, &nm, OPA_100); + lv_draw_rect(&nm_cord, mask, &nm); } @@ -514,28 +516,30 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask) static void lv_gauges_init(void) { /*Default style*/ - lv_rects_get(LV_RECTS_DEF, &lv_gauges_def.rects); - lv_gauges_def.rects.radius = LV_RECT_CIRCLE; - lv_gauges_def.rects.bwidth = 4 * LV_DOWNSCALE; - lv_gauges_def.rects.objs.color = COLOR_MAKE(0x00, 0xaa, 0x00);//GREEN; - lv_gauges_def.rects.gcolor = COLOR_BLACK; - lv_gauges_def.rects.bcolor = COLOR_BLACK; + lv_rects_get(LV_RECTS_FANCY, &lv_gauges_def.bg_rect); + lv_gauges_def.bg_rect.radius = LV_RECT_CIRCLE; + lv_gauges_def.bg_rect.bwidth = 4 * LV_DOWNSCALE; + lv_gauges_def.bg_rect.base.color = COLOR_MAKE(0x00, 0xaa, 0x00);//GREEN; + lv_gauges_def.bg_rect.gcolor = COLOR_BLACK; + lv_gauges_def.bg_rect.bcolor = COLOR_BLACK; + lv_gauges_def.bg_rect.opad = LV_DPI / 4; - lv_gauges_def.gcolor_critical = COLOR_BLACK; - lv_gauges_def.mcolor_critical = COLOR_MAKE(0xff, 0x50, 0x50); + lv_gauges_def.critical_gcolor = COLOR_BLACK; + lv_gauges_def.critical_mcolor = COLOR_MAKE(0xff, 0x50, 0x50); - lv_labels_get(LV_LABELS_DEF, &lv_gauges_def.scale_labels); - lv_gauges_def.scale_labels.objs.color = COLOR_MAKE(0xd0, 0xd0, 0xd0); + lv_labels_get(LV_LABELS_TXT, &lv_gauges_def.scale_labels); + lv_gauges_def.scale_labels.base.color = COLOR_MAKE(0xd0, 0xd0, 0xd0); - lv_labels_get(LV_LABELS_DEF, &lv_gauges_def.value_labels); - lv_gauges_def.value_labels.objs.color = COLOR_WHITE; + lv_labels_get(LV_LABELS_TITLE, &lv_gauges_def.value_labels); + lv_gauges_def.value_labels.base.color = COLOR_WHITE; lv_gauges_def.value_labels.letter_space = 3 * LV_DOWNSCALE; lv_gauges_def.value_labels.mid = 1; lv_gauges_def.value_pos = 75; lv_lines_get(LV_LINES_DEF, &lv_gauges_def.needle_lines); - lv_gauges_def.needle_lines.objs.color = COLOR_WHITE; + lv_gauges_def.needle_lines.base.color = COLOR_WHITE; /*Overwritten by needle_color[]*/ + lv_gauges_def.needle_lines.base.opa = OPA_80; lv_gauges_def.needle_lines.width = 3 * LV_DOWNSCALE; lv_gauges_def.needle_color[0] = COLOR_SILVER; @@ -543,10 +547,8 @@ static void lv_gauges_init(void) lv_gauges_def.needle_color[2] = COLOR_MAKE(0x50, 0xe0, 0x50); lv_gauges_def.needle_color[3] = COLOR_MAKE(0xff, 0xff, 0x70); - lv_gauges_def.needle_mid_r = 5 * LV_DOWNSCALE; + lv_gauges_def.needle_mid_size = 5 * LV_DOWNSCALE; lv_gauges_def.needle_mid_color = COLOR_GRAY; - lv_gauges_def.needle_opa = OPA_80; - lv_gauges_def.scale_pad = 20 * LV_DOWNSCALE; lv_gauges_def.scale_label_num = 6; lv_gauges_def.scale_angle = 220; } diff --git a/lv_objx/lv_gauge.h b/lv_objx/lv_gauge.h index ed7c8531c..8e694f743 100644 --- a/lv_objx/lv_gauge.h +++ b/lv_objx/lv_gauge.h @@ -48,37 +48,35 @@ /*Data of gauge*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ /*New data for this type */ int16_t min; /*Minimum value of the scale*/ int16_t max; /*Maximum value of the scale*/ int16_t * values; /*Array of the set values (for needles) */ char * txt; /*Printf-like text to display with the most critical value (e.g. "Value: %d")*/ uint8_t needle_num; /*Number of needles*/ - uint8_t low_critical :1; /*0: the higher value is more critical, 1: the lower value is more critical*/ + uint8_t low_critical:1; /*0: the higher value is more critical, 1: the lower value is more critical*/ }lv_gauge_ext_t; /*Style of gauge*/ typedef struct { - lv_rects_t rects; /*Style of ancestor*/ + lv_rects_t bg_rect; /*Style of ancestor*/ /*New style element for this type */ - color_t mcolor_critical; /*Top color at critical.*/ - color_t gcolor_critical; /*Bottom color at critical*/ + color_t critical_mcolor; /*Top color at critical value*/ + color_t critical_gcolor; /*Bottom color at critical value*/ /*Scale settings*/ - uint16_t scale_angle; /*Angle of the scale in deg. (~220)*/ + uint16_t scale_angle; /*Angle of the scale in deg. (e.g. 220)*/ lv_labels_t scale_labels; /*Style of the scale labels*/ - cord_t scale_pad; /*Padding of scale labels from the edge*/ uint8_t scale_label_num; /*Number of scale labels (~6)*/ /*Needle settings*/ lv_lines_t needle_lines; /*Style of neddles*/ color_t needle_color[LV_GAUGE_MAX_NEEDLE]; /*Color of needles*/ - color_t needle_mid_color; /*Color of middle where the needles start*/ - cord_t needle_mid_r; /*Radius of the needle middle area*/ - opa_t needle_opa; /*Opacity of the needles*/ + color_t needle_mid_color; /*Color of middle where the needles start*/ + cord_t needle_mid_size; /*Size of the needle middle area (circle diameter)*/ /*Value text settings*/ lv_labels_t value_labels; /*Style of the value label*/ - uint8_t value_pos; /*Vertical position of the value label in percentage of object height (0..100 %)*/ + uint8_t value_pos; /*Vertical position of the value label in percentage of object height (0..100 %)*/ }lv_gauges_t; /*Built-in styles of gauge*/ diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index 0db3a061d..69ddd21bb 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -41,12 +41,12 @@ typedef struct { /*No inherited ext. because inherited from the base object*/ /*Ext. of ancestor*/ /*New data for this type */ - char* fn; /*Image file name. E.g. "U:/my_image"*/ - cord_t w; /*Width of the image (doubled when upscaled)*/ - cord_t h; /*Height of the image (doubled when upscaled)*/ - uint8_t auto_size :1; /*1: automatically set the object size to the image size*/ - uint8_t upscale :1; /*1: upscale to double size*/ - uint8_t transp :1; /*Transp. bit in the image header (library handles this)*/ + char* fn; /*Image file name. E.g. "U:/my_image"*/ + cord_t w; /*Width of the image (doubled when upscaled)*/ + cord_t h; /*Height of the image (doubled when upscaled)*/ + uint8_t auto_size :1; /*1: automatically set the object size to the image size*/ + uint8_t upscale :1; /*1: upscale to double size with antialaissing*/ + uint8_t transp :1; /*Transp. bit in the image header (Handled by the library)*/ }lv_img_ext_t; /*Style of image*/ @@ -54,9 +54,9 @@ typedef struct { lv_objs_t base; /*Style of ancestor*/ /*New style element for this type */ - opa_t recolor_opa; /*Intensity of recoloring (OPA_TRANSP, OPA_10 ... OPA_COVER)*/ + opa_t recolor_opa; /*Intensity of recoloring with base.color (OPA_TRANSP, OPA_10 ... OPA_COVER)*/ #if LV_IMG_ENABLE_SYMBOLS != 0 - const font_t * sym_font; /*Symbol font*/ + const font_t * sym_font; /*Symbol font is the image is used as icon*/ #endif }lv_imgs_t; diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index 2ed276aac..18ab2aa7f 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -668,7 +668,7 @@ static void lv_labels_init(void) { /*Text style*/ lv_objs_get(LV_OBJS_PLAIN, &lv_labels_txt.base); - lv_labels_txt.base.color = COLOR_MAKE(0x10, 0x18, 0x20); + lv_labels_txt.base.color = COLOR_MAKE(0x20, 0x20, 0x20); lv_labels_txt.font = font_get(LV_FONT_DEFAULT); lv_labels_txt.letter_space = 1 * LV_DOWNSCALE; lv_labels_txt.line_space = 2 * LV_DOWNSCALE; diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index 62ef494f6..bae3dc3c5 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -42,9 +42,9 @@ typedef struct char * txt; /*Text of the label*/ lv_label_long_mode_t long_mode; /*Determinate what to do with the long texts*/ char dot_tmp[LV_LABEL_DOT_NUM]; /*Store character which are replaced with dots*/ - uint16_t dot_end; /* The text end position in dot mode*/ - uint8_t static_txt :1; /* Flag to indicate the text is static*/ - uint8_t recolor :1; /* Enable in-line letter recoloring*/ + uint16_t dot_end; /*The text end position in dot mode*/ + uint8_t static_txt :1; /*Flag to indicate the text is static*/ + uint8_t recolor :1; /*Enable in-line letter re-coloring*/ }lv_label_ext_t; /*Style of label*/ @@ -52,18 +52,18 @@ typedef struct { lv_objs_t base; /*Style of ancestor*/ /*New style element for this type */ - const font_t * font; /*Pointer to a font*/ - cord_t letter_space; - cord_t line_space; - uint8_t mid :1; /*1: Align the lines into the middle*/ + const font_t * font; /*Pointer to a font*/ + cord_t letter_space; /*Letter space in px*/ + cord_t line_space; /*Line space in px*/ + uint8_t mid:1; /*1: Align the lines into the middle*/ }lv_labels_t; /*Built-in styles of label*/ typedef enum { - LV_LABELS_TITLE, - LV_LABELS_TXT, - LV_LABELS_BTN, + LV_LABELS_TXT, /*General text style*/ + LV_LABELS_TITLE, /*Like text style but greater spaces*/ + LV_LABELS_BTN, /*Mid. aligned style for buttons*/ }lv_labels_builtin_t; /********************** diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index c11410c09..edb89632f 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -16,10 +16,9 @@ /********************* * DEFINES *********************/ -#define LV_LED_WIDTH_DEF (30 * LV_DOWNSCALE) -#define LV_LED_HEIGHT_DEF (30 * LV_DOWNSCALE) -#define LV_LED_BRIGHT_DEF 128 -#define LV_LED_BRIGHT_OFF 60 +#define LV_LED_WIDTH_DEF (LV_DPI / 2) +#define LV_LED_HEIGHT_DEF (LV_DPI / 2) +#define LV_LED_BRIGHT_OFF 40 #define LV_LED_BRIGHT_ON 255 /********************** @@ -35,11 +34,11 @@ static void lv_leds_init(void); /********************** * STATIC VARIABLES **********************/ - -static lv_leds_t lv_leds_def; static lv_leds_t lv_leds_red; static lv_leds_t lv_leds_green; + static lv_design_f_t ancestor_design_f; + /********************** * MACROS **********************/ @@ -67,7 +66,7 @@ lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) /*Allocate the object type specific extended data*/ lv_led_ext_t * ext = lv_obj_alloc_ext(new_led, sizeof(lv_led_ext_t)); dm_assert(ext); - ext->bright = LV_LED_BRIGHT_DEF; + ext->bright = LV_LED_BRIGHT_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_led); @@ -76,7 +75,7 @@ lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new led object*/ if(copy == NULL) { - lv_obj_set_style(new_led, lv_leds_get(LV_LEDS_DEF, NULL)); + lv_obj_set_style(new_led, lv_leds_get(LV_LEDS_RED, NULL)); lv_obj_set_size(new_led, LV_LED_WIDTH_DEF, LV_LED_HEIGHT_DEF); } /*Copy an existing object*/ @@ -203,9 +202,6 @@ lv_leds_t * lv_leds_get(lv_leds_builtin_t style, lv_leds_t * copy) lv_leds_t *style_p; switch(style) { - case LV_LEDS_DEF: - style_p = &lv_leds_def; - break; case LV_LEDS_RED: style_p = &lv_leds_red; break; @@ -213,13 +209,10 @@ lv_leds_t * lv_leds_get(lv_leds_builtin_t style, lv_leds_t * copy) style_p = &lv_leds_green; break; default: - style_p = &lv_leds_def; + style_p = &lv_leds_red; } - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_leds_t)); - else memcpy(copy, &lv_leds_def, sizeof(lv_leds_t)); - } + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_leds_t)); return style_p; } @@ -253,14 +246,11 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t memcpy(&leds_tmp, style, sizeof(leds_tmp)); /*Mix. the color with black proportionally with brightness*/ - leds_tmp.bg_rect.objs.color = color_mix(leds_tmp.bg_rect.objs.color, COLOR_BLACK, ext->bright); + leds_tmp.bg_rect.base.color = color_mix(leds_tmp.bg_rect.base.color, COLOR_BLACK, ext->bright); leds_tmp.bg_rect.gcolor = color_mix(leds_tmp.bg_rect.gcolor, COLOR_BLACK, ext->bright); - /*Set smaller light size with lower brightness*/ - /*light = 0 comes to LV_LED_BRIGHTNESS_OFF and the original light comes to LV_LED_BRIGHTNESS_ON*/ - leds_tmp.bg_rect.light = (uint16_t)((uint16_t)(ext->bright - LV_LED_BRIGHT_OFF) * style->bg_rect.light) / - (LV_LED_BRIGHT_ON - LV_LED_BRIGHT_OFF); - + /*Set the current swidth according to brightness proportionally between LV_LED_BRIGHT_OFF and LV_LED_BRIGHT_ON*/ + leds_tmp.bg_rect.swidth = (uint16_t)(uint16_t)(ext->bright * style->bg_rect.swidth) >> 8; led->style_p = &leds_tmp; ancestor_design_f(led, mask, mode); @@ -275,28 +265,23 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t static void lv_leds_init(void) { /*Default style (red)*/ - lv_rects_get(LV_RECTS_DEF, &lv_leds_def.bg_rect); - lv_leds_def.bg_rect.objs.color = COLOR_RED; - lv_leds_def.bg_rect.gcolor = COLOR_MARRON, - lv_leds_def.bg_rect.bcolor = COLOR_MAKE(0x40, 0x00, 0x00); - lv_leds_def.bg_rect.lcolor = COLOR_RED; - lv_leds_def.bg_rect.bwidth = 4 * LV_DOWNSCALE; - lv_leds_def.bg_rect.bopa = 50; - lv_leds_def.bg_rect.light = 15 * LV_DOWNSCALE; - lv_leds_def.bg_rect.radius = LV_RECT_CIRCLE; - lv_leds_def.bg_rect.hpad = 0; - lv_leds_def.bg_rect.vpad = 0; - lv_leds_def.bg_rect.opad = 0; + lv_rects_get(LV_RECTS_PLAIN, &lv_leds_red.bg_rect); + lv_leds_red.bg_rect.base.color = COLOR_RED; + lv_leds_red.bg_rect.gcolor = COLOR_MARRON, + lv_leds_red.bg_rect.bcolor = COLOR_MAKE(0x40, 0x00, 0x00); + lv_leds_red.bg_rect.scolor = COLOR_RED; + lv_leds_red.bg_rect.bwidth = 3 * LV_DOWNSCALE; + lv_leds_red.bg_rect.bopa = OPA_50; + lv_leds_red.bg_rect.swidth = LV_DPI / 4; + lv_leds_red.bg_rect.radius = LV_RECT_CIRCLE; - /*Red style*/ - memcpy(&lv_leds_red, &lv_leds_def, sizeof(lv_leds_t)); /* Green style */ - memcpy(&lv_leds_green, &lv_leds_def, sizeof(lv_leds_t)); - lv_leds_green.bg_rect.objs.color = COLOR_LIME; + memcpy(&lv_leds_green, &lv_leds_red, sizeof(lv_leds_t)); + lv_leds_green.bg_rect.base.color = COLOR_LIME; lv_leds_green.bg_rect.gcolor = COLOR_GREEN; lv_leds_green.bg_rect.bcolor = COLOR_MAKE(0x00, 0x40, 0x00); - lv_leds_green.bg_rect.lcolor = COLOR_LIME; + lv_leds_green.bg_rect.scolor = COLOR_LIME; } #endif diff --git a/lv_objx/lv_led.h b/lv_objx/lv_led.h index 939bebdf4..f746cb35f 100644 --- a/lv_objx/lv_led.h +++ b/lv_objx/lv_led.h @@ -30,24 +30,23 @@ /*Data of led*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ /*New data for this type */ - uint8_t bright; /*Current brightness of the LED*/ + uint8_t bright; /*Current brightness of the LED (0..255)*/ }lv_led_ext_t; /*Style of led*/ typedef struct { - lv_rects_t bg_rect;/*Style of ancestor*/ + lv_rects_t bg_rect; /*Style of ancestor*/ /*New style element for this type */ }lv_leds_t; /*Built-in styles of led*/ typedef enum { - LV_LEDS_DEF, - LV_LEDS_RED, - LV_LEDS_GREEN, + LV_LEDS_RED, /*Red LED style*/ + LV_LEDS_GREEN, /*Green LED style*/ }lv_leds_builtin_t; /********************** diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index bb1a7b53f..77bc23813 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -68,7 +68,7 @@ lv_obj_t * lv_list_create(lv_obj_t * par, lv_obj_t * copy) if(copy == NULL) { lv_obj_set_size_us(new_list, 120, 150); lv_obj_set_style(new_list, lv_lists_get(LV_LISTS_DEF, NULL)); - lv_rect_set_layout(LV_EA(new_list, lv_list_ext_t)->page_ext.scrl, LV_LIST_LAYOUT_DEF); + lv_rect_set_layout(LV_EA(new_list, lv_list_ext_t)->page.scrl, LV_LIST_LAYOUT_DEF); } else { /*Refresh the style with new signal function*/ lv_obj_refr_style(new_list); diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index a3f0eeaa4..cbb4c1147 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -41,7 +41,7 @@ /*Data of list*/ typedef struct { - lv_page_ext_t page_ext; /*Ext. of ancestor*/ + lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ /*No new data*/ }lv_list_ext_t; @@ -60,8 +60,8 @@ typedef struct /*Built-in styles of list*/ typedef enum { - LV_LISTS_DEF, - LV_LISTS_TRANSP, + LV_LISTS_DEF, /*Default list style. Transparent background, visible scrlollable object*/ + LV_LISTS_TRANSP, /*Transparent list style. Transparent background and scrollable object*/ }lv_lists_builtin_t; /********************** diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 63dd0b9cf..5cf8fcbcc 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -53,7 +53,7 @@ typedef struct /*Style of message box*/ typedef struct { - lv_rects_t bg; /*Style of ancestor*/ + lv_rects_t bg; /*Style of ancestor*/ /*New style element for this type */ lv_labels_t title; /*Style of the title*/ lv_labels_t txt; /*Style of the text*/ diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 8ab794adb..8cdde5515 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -31,15 +31,15 @@ /*Data of page*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * scrl; /*The scrollable object on the background*/ - lv_action_t rel_action; /*Release action*/ - lv_action_t pr_action; /*Press action*/ - area_t sbh; /*Horizontal scrollbar area (relative to the page) */ - area_t sbv; /*Vertical scrollbar area (relative to the page)*/ - uint8_t sbh_draw :1; /*1: horizontal scrollbar is visible now*/ - uint8_t sbv_draw :1; /*1: vertical scrollbar is visible now*/ + lv_action_t rel_action; /*Function to call when the page is released*/ + lv_action_t pr_action; /*Function to call when the page is pressed*/ + area_t sbh; /*Horizontal scrollbar area relative to the page. (Handled by the library) */ + area_t sbv; /*Vertical scrollbar area relative to the page (Handled by the library)*/ + uint8_t sbh_draw :1; /*1: horizontal scrollbar is visible now (Handled by the library)*/ + uint8_t sbv_draw :1; /*1: vertical scrollbar is visible now (Handled by the library)*/ }lv_page_ext_t; /*Scrollbar modes: shows when should the scrollbars be visible*/ diff --git a/lv_objx/lv_pb.c b/lv_objx/lv_pb.c deleted file mode 100644 index 9673b53da..000000000 --- a/lv_objx/lv_pb.c +++ /dev/null @@ -1,431 +0,0 @@ - - -/** - * @file lv_pb.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#if USE_LV_PB != 0 - -#include "lv_pb.h" -#include "../lv_draw/lv_draw.h" -#include - -/********************* - * DEFINES - *********************/ -#define LV_PB_TXT_MAX_LENGTH 64 -#define LV_PB_DEF_FORMAT "%d %%" -#define LV_PB_DEF_WIDTH (120 * LV_DOWNSCALE) -#define LV_PB_DEF_HEIGHT (40 * LV_DOWNSCALE) - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mode); -static void lv_pbs_init(void); - -/********************** - * STATIC VARIABLES - **********************/ -static lv_pbs_t lv_pbs_def; -static lv_pbs_t lv_pbs_slider; -static lv_design_f_t ancestor_design_f; - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/*----------------- - * Create function - *-----------------*/ - -/** - * Create a progress bar objects - * @param par pointer to an object, it will be the parent of the new progress bar - * @param copy pointer to a progress bar object, if not NULL then the new object will be copied from it - * @return pointer to the created progress bar - */ -lv_obj_t * lv_pb_create(lv_obj_t * par, lv_obj_t * copy) -{ - /*Create the ancestor basic object*/ - lv_obj_t * new_pb = lv_rect_create(par, copy); - dm_assert(new_pb); - - /*Allocate the object type specific extended data*/ - lv_pb_ext_t * ext = lv_obj_alloc_ext(new_pb, sizeof(lv_pb_ext_t)); - dm_assert(ext); - ext->min_value = 0; - ext->max_value = 100; - ext->act_value = 0; - ext->tmp_value = 0; - ext->format_str = NULL; - ext->label = NULL; - - /* Save the rectangle design function. - * It will be used in the progress bar design function*/ - if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_pb); - - lv_obj_set_signal_f(new_pb, lv_pb_signal); - lv_obj_set_design_f(new_pb, lv_pb_design); - - /*Init the new progress bar object*/ - if(copy == NULL) { - ext->format_str = dm_alloc(strlen(LV_PB_DEF_FORMAT) + 1); - strcpy(ext->format_str, LV_PB_DEF_FORMAT); - - ext->label = lv_label_create(new_pb, NULL); - - lv_rect_set_layout(new_pb, LV_RECT_LAYOUT_CENTER); - lv_obj_set_click(new_pb, false); - lv_obj_set_size(new_pb, LV_PB_DEF_WIDTH, LV_PB_DEF_HEIGHT); - lv_obj_set_style(new_pb, lv_pbs_get(LV_PBS_DEF, NULL)); - - lv_pb_set_value(new_pb, ext->act_value); - } else { - lv_pb_ext_t * ext_copy = lv_obj_get_ext(copy); - ext->format_str = dm_alloc(strlen(ext_copy->format_str) + 1); - strcpy(ext->format_str, ext_copy->format_str); - ext->min_value = ext_copy->min_value; - ext->max_value = ext_copy->max_value; - ext->act_value = ext_copy->act_value; - ext->label = lv_label_create(new_pb, ext_copy->label); - - /*Refresh the style with new signal function*/ - lv_obj_refr_style(new_pb); - - lv_pb_set_value(new_pb, ext->act_value); - - } - return new_pb; -} - -/** - * Signal function of the progress bar - * @param pb pointer to a progress bar object - * @param sign a signal type from lv_signal_t enum - * @param param pointer to a signal specific variable - */ -bool lv_pb_signal(lv_obj_t * pb, lv_signal_t sign, void * param) -{ - bool valid; - - /* Include the ancient signal function */ - valid = lv_rect_signal(pb, sign, param); - - /* The object can be deleted so check its validity and then - * make the object specific signal handling */ - if(valid != false) { - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - lv_pbs_t * style = lv_obj_get_style(pb); - point_t p; - char buf[LV_PB_TXT_MAX_LENGTH]; - - switch(sign) { - case LV_SIGNAL_CORD_CHG: - lv_pb_set_value(pb, ext->act_value); - break; - case LV_SIGNAL_CLEANUP: - dm_free(ext->format_str); - ext->format_str = NULL; - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->label, &style->label); - lv_pb_set_value(pb, lv_pb_get_value(pb)); - break; - case LV_SIGNAL_PRESSING: - lv_dispi_get_point(param, &p); - if(lv_obj_get_width(pb) > lv_obj_get_height(pb)) { - p.x -= pb->cords.x1 + style->btn_size / 2; - ext->tmp_value = (int32_t) ((int32_t) p.x * (ext->max_value - ext->min_value + 1)) / - (lv_obj_get_width(pb) - style->btn_size); - } else { - p.y -= pb->cords.y1 + style->btn_size / 2; - ext->tmp_value = (int32_t) ((int32_t) p.y * (ext->max_value - ext->min_value + 1)) / - (lv_obj_get_height(pb) - style->btn_size); - - /*Invert the value: greater y means smaller value - * because it on a lower position on the screen*/ - ext->tmp_value = ext->max_value - ext->tmp_value; - } - - ext->tmp_value = ext->tmp_value > ext->max_value ? ext->max_value : ext->tmp_value; - ext->tmp_value = ext->tmp_value < ext->min_value ? ext->min_value : ext->tmp_value; - - sprintf(buf, ext->format_str, ext->tmp_value); - lv_label_set_text(ext->label, buf); - - lv_obj_inv(pb); - break; - case LV_SIGNAL_PRESS_LOST: - ext->tmp_value = ext->act_value; - sprintf(buf, ext->format_str, ext->act_value); - lv_label_set_text(ext->label, buf); - lv_obj_inv(pb); - break; - case LV_SIGNAL_RELEASED: - lv_pb_set_value(pb, ext->tmp_value); - break; - default: - break; - } - } - - return valid; -} - -/*===================== - * Setter functions - *====================*/ - -/** - * Set a new value on the progress bar - * @param pb pointer to a progress bar object - * @param value new value - */ -void lv_pb_set_value(lv_obj_t * pb, int16_t value) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - ext->act_value = value > ext->max_value ? ext->max_value : value; - ext->act_value = ext->act_value < ext->min_value ? ext->min_value : ext->act_value; - - ext->tmp_value = ext->act_value; - char buf[LV_PB_TXT_MAX_LENGTH]; - sprintf(buf, ext->format_str, ext->act_value); - lv_label_set_text(ext->label, buf); - - lv_obj_inv(pb); -} - -/** - * Set minimum and the maximum values of a progress bar - * @param pb pointer to he progress bar object - * @param min minimum value - * @param max maximum value - */ -void lv_pb_set_min_max_value(lv_obj_t * pb, int16_t min, int16_t max) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - ext->max_value = max; - ext->max_value = max; - if(ext->act_value > max) { - ext->act_value = max; - lv_pb_set_value(pb, ext->act_value); - } - lv_obj_inv(pb); -} - -/** - * Set format string for the label of the progress bar - * @param pb pointer to progress bar object - * @param format a printf-like format string with one number (e.g. "Loading (%d)") - */ -void lv_pb_set_format_str(lv_obj_t * pb, const char * format) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - dm_free(ext->format_str); - ext->format_str = dm_alloc(strlen(format) + 1); - strcpy(ext->format_str, format); - lv_pb_set_value(pb, ext->act_value); -} - -/*===================== - * Getter functions - *====================*/ - -/** - * Get the value of a progress bar - * @param pb pointer to a progress bar object - * @return the value of the progress bar - */ -int16_t lv_pb_get_value(lv_obj_t * pb) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - return ext->act_value; -} - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pbs_t style - */ -lv_pbs_t * lv_pbs_get(lv_pbs_builtin_t style, lv_pbs_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_pbs_init(); - style_inited = true; - } - - lv_pbs_t *style_p; - - switch(style) { - case LV_PBS_DEF: - style_p = &lv_pbs_def; - break; - case LV_PBS_SLIDER: - style_p = &lv_pbs_slider; - break; - default: - style_p = &lv_pbs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_pbs_t)); - else memcpy(copy, &lv_pbs_def, sizeof(lv_pbs_t)); - } - - return style_p; -} - -/********************** - * STATIC FUNCTIONS - **********************/ - - -/** - * Handle the drawing related tasks of the progress bars - * @param pb pointer to an object - * @param mask the object will be drawn only in this area - * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area - * (return 'true' if yes) - * LV_DESIGN_DRAW: draw the object (always return 'true') - * LV_DESIGN_DRAW_POST: drawing after every children are drawn - * @param return true/false, depends on 'mode' - */ -static bool lv_pb_design(lv_obj_t * pb, const area_t * mask, lv_design_mode_t mode) -{ - if(ancestor_design_f == NULL) return false; - - if(mode == LV_DESIGN_COVER_CHK) { - /*Return false if the object is not covers the mask_p area*/ - return ancestor_design_f(pb, mask, mode); - } else if(mode == LV_DESIGN_DRAW_MAIN) { - ancestor_design_f(pb, mask, mode); - - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - lv_pbs_t * style = lv_obj_get_style(pb); - area_t bar_area; - uint32_t tmp; - area_cpy(&bar_area, &pb->cords); - - cord_t w = lv_obj_get_width(pb); - cord_t h = lv_obj_get_height(pb); - - if(w >= h) { - tmp = (int32_t)ext->tmp_value * (w - style->btn_size); - tmp = (int32_t) tmp / (ext->max_value - ext->min_value); - bar_area.x2 = bar_area.x1 + style->btn_size + (cord_t) tmp; - } else { - tmp = (int32_t)ext->tmp_value * (h - style->btn_size); - tmp = (int32_t) tmp / (ext->max_value - ext->min_value); - bar_area.y1 = bar_area.y2 - style->btn_size - (cord_t) tmp; - } - - /*Draw the main bar*/ - lv_draw_rect(&bar_area, mask, &style->bar); - - /*Draw a button if its size is not 0*/ - if(style->btn_size != 0) { - lv_rects_t tmp_rects; - memcpy(&tmp_rects, &style->btn, sizeof(lv_rects_t)); - - if(w >= h) { - bar_area.x1 = bar_area.x2 - style->btn_size ; - - if(bar_area.x1 < pb->cords.x1) { - bar_area.x1 = pb->cords.x1; - bar_area.x2 = bar_area.x1 + style->btn_size; - } - - if(bar_area.x2 > pb->cords.x2) { - bar_area.x2 = pb->cords.x2; - bar_area.x1 = bar_area.x2 - style->btn_size; - } - } else { - bar_area.y2 = bar_area.y1 + style->btn_size ; - - if(bar_area.y1 < pb->cords.y1) { - bar_area.y1 = pb->cords.y1; - bar_area.y2 = bar_area.y1 + style->btn_size; - } - - if(bar_area.y2 > pb->cords.y2) { - bar_area.y2 = pb->cords.y2; - bar_area.y1 = bar_area.y2 - style->btn_size; - } - - } - lv_draw_rect(&bar_area, mask, &tmp_rects ); - } - } - return true; -} - -/** - * Set a new temporal (ghost) value on the progress bar - * @param pb pointer to a progress bar object - * @param value new value - */ -void lv_pb_set_tmp_value(lv_obj_t * pb, int16_t value) -{ - lv_pb_ext_t * ext = lv_obj_get_ext(pb); - ext->act_value = value > ext->max_value ? ext->max_value : value; - - char buf[LV_PB_TXT_MAX_LENGTH]; - sprintf(buf, ext->format_str, ext->act_value); - lv_label_set_text(ext->label, buf); - - lv_obj_inv(pb); -} - -/** - * Initialize the progress bar styles - */ -static void lv_pbs_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_PLAIN, &lv_pbs_def.bg); /*Background*/ - lv_pbs_def.bg.base.color = COLOR_WHITE; - lv_pbs_def.bg.gcolor = COLOR_SILVER, - lv_pbs_def.bg.bcolor = COLOR_BLACK; - - lv_rects_get(LV_RECTS_PLAIN, &lv_pbs_def.bar); /*Bar*/ - lv_pbs_def.bar.base.color = COLOR_LIME; - lv_pbs_def.bar.gcolor = COLOR_GREEN; - lv_pbs_def.bar.bcolor = COLOR_BLACK; - - lv_rects_get(LV_RECTS_FANCY, &lv_pbs_def.btn); /*Button*/ - lv_pbs_def.btn.base.color = COLOR_WHITE; - lv_pbs_def.btn.gcolor = COLOR_GRAY; - lv_pbs_def.btn.bcolor = COLOR_GRAY; - lv_pbs_def.btn.bopa = 100; - lv_pbs_def.btn_size = 0; - - lv_labels_get(LV_LABELS_TXT, &lv_pbs_def.label); /*Label*/ - lv_pbs_def.label.line_space = 0; - - /*Slider style*/ - memcpy(&lv_pbs_slider, &lv_pbs_def, sizeof(lv_pbs_t)); - lv_pbs_slider.bg.radius = LV_RECT_CIRCLE; - lv_pbs_slider.bar.radius = LV_RECT_CIRCLE; - lv_pbs_slider.btn.radius = LV_RECT_CIRCLE; - lv_pbs_slider.btn_size = 40 * LV_DOWNSCALE; - -} -#endif diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_rect.c index bde81cacf..3c7c012e5 100644 --- a/lv_objx/lv_rect.c +++ b/lv_objx/lv_rect.c @@ -80,8 +80,8 @@ lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_alloc_ext(new_rect, sizeof(lv_rect_ext_t)); lv_rect_ext_t * ext = lv_obj_get_ext(new_rect); dm_assert(ext); - ext->hfit_en = 0; - ext->vfit_en = 0; + ext->hpad_en = 0; + ext->vpad_en = 0; ext->layout = LV_RECT_LAYOUT_OFF; lv_obj_set_design_f(new_rect, lv_rect_design); @@ -94,8 +94,8 @@ lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) /*Copy an existing object*/ else { lv_rect_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->hfit_en = copy_ext->hfit_en; - ext->vfit_en = copy_ext->vfit_en; + ext->hpad_en = copy_ext->hpad_en; + ext->vpad_en = copy_ext->vpad_en; ext->layout = copy_ext->layout; /*Refresh the style with new signal function*/ @@ -183,8 +183,8 @@ void lv_rect_set_fit(lv_obj_t * rect, bool hor_en, bool ver_en) { lv_obj_inv(rect); lv_rect_ext_t * ext = lv_obj_get_ext(rect); - ext->hfit_en = hor_en == false ? 0 : 1; - ext->vfit_en = ver_en == false ? 0 : 1; + ext->hpad_en = hor_en == false ? 0 : 1; + ext->vpad_en = ver_en == false ? 0 : 1; /*Send a signal to set a new size*/ rect->signal_f(rect, LV_SIGNAL_CORD_CHG, rect); @@ -213,7 +213,7 @@ lv_rect_layout_t lv_rect_get_layout(lv_obj_t * rect) bool lv_rect_get_hfit(lv_obj_t * rect) { lv_rect_ext_t * ext = lv_obj_get_ext(rect); - return ext->hfit_en == 0 ? false : true; + return ext->hpad_en == 0 ? false : true; } /** @@ -224,7 +224,7 @@ bool lv_rect_get_hfit(lv_obj_t * rect) bool lv_rect_get_vfit(lv_obj_t * rect) { lv_rect_ext_t * ext = lv_obj_get_ext(rect); - return ext->vfit_en == 0 ? false : true; + return ext->vpad_en == 0 ? false : true; } @@ -673,8 +673,8 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) { lv_rect_ext_t * ext = lv_obj_get_ext(rect); - if(ext->hfit_en == 0 && - ext->vfit_en == 0) { + if(ext->hpad_en == 0 && + ext->vpad_en == 0) { return; } @@ -704,14 +704,14 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) /*If the value is not the init value then the page has >=1 child.*/ if(new_cords.x1 != LV_CORD_MAX) { - if(ext->hfit_en != 0) { + if(ext->hpad_en != 0) { new_cords.x1 -= hpad; new_cords.x2 += hpad; } else { new_cords.x1 = rect->cords.x1; new_cords.x2 = rect->cords.x2; } - if(ext->vfit_en != 0) { + if(ext->vpad_en != 0) { new_cords.y1 -= vpad; new_cords.y2 += vpad; } else { @@ -763,9 +763,9 @@ static void lv_rects_init(void) lv_objs_get(LV_OBJS_PLAIN, &lv_rects_fancy.base); lv_rects_fancy.gcolor = COLOR_MAKE(0xd3, 0xe1, 0xea); lv_rects_fancy.bcolor = COLOR_WHITE; - lv_rects_fancy.scolor = COLOR_GRAY; + lv_rects_fancy.scolor = COLOR_BLACK; lv_rects_fancy.bwidth = (LV_DPI / 30) == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 30; - lv_rects_fancy.swidth = LV_DPI / 8; + lv_rects_fancy.swidth = LV_DPI / 6; lv_rects_fancy.bopa = OPA_50; lv_rects_fancy.radius = LV_DPI / 10; lv_rects_fancy.empty = 0; @@ -773,7 +773,6 @@ static void lv_rects_init(void) lv_rects_fancy.vpad = LV_DPI / 4; lv_rects_fancy.opad = LV_DPI / 6; - /*Transparent style*/ memcpy(&lv_rects_transp, &lv_rects_plain, sizeof(lv_rects_t)); /* Do not use opa=OPA_TRANSP because design function will not be called diff --git a/lv_objx/lv_rect.h b/lv_objx/lv_rect.h index 3a17e0108..51c66832f 100644 --- a/lv_objx/lv_rect.h +++ b/lv_objx/lv_rect.h @@ -18,7 +18,7 @@ /********************* * DEFINES *********************/ -#define LV_RECT_CIRCLE 0xFFFF /*A very big radius to always draw as circle*/ +#define LV_RECT_CIRCLE ((cord_t)-1) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS @@ -43,9 +43,9 @@ typedef struct { /*Inherited from 'base_obj' so no inherited ext. */ /*Ext. of ancestor*/ /*New data for this type */ - uint8_t layout :5; - uint8_t hfit_en :1; - uint8_t vfit_en :1; + uint8_t layout :5; /*Set a layout from 'lv_rect_layout_t' enum*/ + uint8_t hpad_en :1; /*Enable horizontal padding according to the children*/ + uint8_t vpad_en :1; /*Enable horizontal padding according to the children*/ }lv_rect_ext_t; diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index 7d7996d71..30dfef3c8 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -532,17 +532,17 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des area_t cur_area; lv_labels_t * labels_p = lv_obj_get_style(ta_ext->label); - cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1 - (ta_style->cursor_width >> 1); + cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1; cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; - cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + (ta_style->cursor_width >> 1); + cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + LV_DOWNSCALE ; cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> LV_FONT_ANTIALIAS); lv_rects_t cur_rects; lv_rects_get(LV_RECTS_PLAIN, &cur_rects); cur_rects.radius = 0; cur_rects.bwidth = 0; - cur_rects.base.color = ta_style->cursor_color; - cur_rects.gcolor = ta_style->cursor_color; + cur_rects.base.color = ta_style->label.base.color; + cur_rects.gcolor = ta_style->label.base.color; lv_draw_rect(&cur_area, mask, &cur_rects); } } @@ -588,8 +588,7 @@ static void lv_tas_init(void) lv_labels_get(LV_LABELS_TXT, &lv_tas_def.label); - lv_tas_def.cursor_color = COLOR_MAKE(0x10, 0x10, 0x10); - lv_tas_def.cursor_width = 1 * LV_DOWNSCALE; /*>=1 px for visible cursor*/ + lv_tas_def.label.base.color = COLOR_MAKE(0x10, 0x10, 0x10); lv_tas_def.cursor_show = 1; } diff --git a/lv_objx/lv_ta.h b/lv_objx/lv_ta.h index 6af19129f..412b12e56 100644 --- a/lv_objx/lv_ta.h +++ b/lv_objx/lv_ta.h @@ -50,10 +50,8 @@ typedef struct { lv_pages_t page; /*Style of ancestor*/ /*New style element for this type */ - lv_labels_t label; - color_t cursor_color; - cord_t cursor_width; - uint8_t cursor_show :1; + lv_labels_t label; /*Style of the label*/ + uint8_t cursor_show :1; /*Flag to indicate the cursor is now being shown or not (Handled by the library)*/ }lv_tas_t; /*Built-in styles of text area*/ diff --git a/lvgl.h b/lvgl.h index 12fac2b0f..f73b0848b 100644 --- a/lvgl.h +++ b/lvgl.h @@ -38,7 +38,8 @@ #include "lv_objx/lv_list.h" #include "lv_objx/lv_chart.h" #include "lv_objx/lv_cb.h" -#include "lv_objx/lv_pb.h" +#include "lv_objx/lv_bar.h" +#include "lv_objx/lv_slider.h" #include "lv_objx/lv_led.h" #include "lv_objx/lv_btnm.h" #include "lv_objx/lv_ddlist.h" From 09967f66f2a8e4f5cf6008ee53ddb48c44857703 Mon Sep 17 00:00:00 2001 From: Gabor Date: Tue, 11 Apr 2017 10:51:31 +0200 Subject: [PATCH 25/53] lv_slider added --- lv_objx/lv_slider.c | 301 ++++++++++++++++++++++++++++++++++++++++++++ lv_objx/lv_slider.h | 83 ++++++++++++ 2 files changed, 384 insertions(+) create mode 100644 lv_objx/lv_slider.c create mode 100644 lv_objx/lv_slider.h diff --git a/lv_objx/lv_slider.c b/lv_objx/lv_slider.c new file mode 100644 index 000000000..ae87668aa --- /dev/null +++ b/lv_objx/lv_slider.c @@ -0,0 +1,301 @@ +/** + * @file lv_slider.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_SLIDER != 0 + +#include "lv_slider.h" +#include "misc/math/math_base.h" +#include "../lv_draw/lv_draw.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_mode_t mode); +static void lv_sliders_init(void); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_sliders_t lv_sliders_def; /*Default slider style*/ + +static lv_design_f_t ancestor_design_f; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a slider objects + * @param par pointer to an object, it will be the parent of the new slider + * @param copy pointer to a slider object, if not NULL then the new object will be copied from it + * @return pointer to the created slider + */ +lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor slider*/ + /*TODO modify it to the ancestor create function */ + lv_obj_t * new_slider = lv_bar_create(par, copy); + dm_assert(new_slider); + + /*Allocate the slider type specific extended data*/ + lv_slider_ext_t * ext = lv_obj_alloc_ext(new_slider, sizeof(lv_slider_ext_t)); + dm_assert(ext); + + /*Initialize the allocated 'ext' */ + ext->cb = NULL; + ext->tmp_value = ext->bar.min_value; + + /* Save the bar design function. + * It will be used in the sllider design function*/ + if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_slider); + + /*The signal and design functions are not copied so set them here*/ + lv_obj_set_signal_f(new_slider, lv_slider_signal); + lv_obj_set_design_f(new_slider, lv_slider_design); + + /*Init the new slider slider*/ + if(copy == NULL) { + lv_obj_set_style(new_slider, lv_sliders_get(LV_SLIDERS_DEF, NULL)); + lv_obj_set_click(new_slider, true); + } + /*Copy an existing slider*/ + else { + lv_slider_ext_t * copy_ext = lv_obj_get_ext(copy); + + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_slider); + } + + return new_slider; +} + +/** + * Signal function of the slider + * @param slider pointer to a slider object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + /* TODO update it to the ancestor's signal function*/ + valid = lv_bar_signal(slider, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + // lv_bars_t * style = lv_obj_get_style(slider); + point_t p; + cord_t w = lv_obj_get_width(slider); + cord_t h = lv_obj_get_height(slider); + int16_t tmp; + + switch(sign) { + case LV_SIGNAL_PRESSED: + ext->tmp_value = lv_bar_get_value(slider); + break; + case LV_SIGNAL_PRESSING: + lv_dispi_get_point(param, &p); + if(w > h) { + p.x -= slider->cords.x1 + h / 2; /*Modify the point to shift with half knob (important on the start and end)*/ + tmp = (int32_t) ((int32_t) p.x * (ext->bar.max_value - ext->bar.min_value + 1)) / (w - h); + } else { + p.y -= slider->cords.y1 + w / 2; /*Modify the point to shift with half knob (important on the start and end)*/ + tmp = (int32_t) ((int32_t) p.y * (ext->bar.max_value - ext->bar.min_value + 1)) / (h - w); + tmp = ext->bar.max_value - tmp; /*Invert he value: small value means higher y*/ + } + + lv_bar_set_value(slider, tmp); + break; + + case LV_SIGNAL_PRESS_LOST: + lv_bar_set_value(slider, ext->tmp_value); + break; + case LV_SIGNAL_RELEASED: + ext->tmp_value = lv_bar_get_value(slider); + lv_bar_set_value(slider, ext->tmp_value); + if(ext->cb != NULL) ext->cb(slider, param); + break; + default: + break; + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set a function which will be called when a new value is set on the slider + * @param slider pointer to slider object + * @param cb a callback function + */ +void lv_slider_set_action(lv_obj_t * slider, lv_action_t cb) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + ext->cb = cb; +} + + +/*===================== + * Getter functions + *====================*/ + +/* + * New object specific "get" function comes here + */ + + +/** + * Return with a pointer to a built-in style and/or copy it to a variable + * @param style a style name from lv_sliders_builtin_t enum + * @param copy copy the style to this variable. (NULL if unused) + * @return pointer to an lv_sliders_t style + */ +lv_sliders_t * lv_sliders_get(lv_sliders_builtin_t style, lv_sliders_t * copy) +{ + static bool style_inited = false; + + /*Make the style initialization if it is not done yet*/ + if(style_inited == false) { + lv_sliders_init(); + style_inited = true; + } + + lv_sliders_t *style_p; + + switch(style) { + case LV_SLIDERS_DEF: + style_p = &lv_sliders_def; + break; + default: + style_p = &lv_sliders_def; + } + + if(copy != NULL) memcpy(copy, style_p, sizeof(lv_sliders_t)); + + return style_p; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Handle the drawing related tasks of the sliders + * @param slider pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_mode_t mode) +{ + /*Return false if the object is not covers the mask_p area*/ + if(mode == LV_DESIGN_COVER_CHK) { + return ancestor_design_f(slider, mask, mode); + } + /*Draw the object*/ + else if(mode == LV_DESIGN_DRAW_MAIN) { + + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + + + cord_t w = lv_obj_get_width(slider); + cord_t h = lv_obj_get_height(slider); + + /*Modify the bar act_value to keep until the farer edge of knob*/ + int16_t tmp; + int16_t range = ext->bar.max_value - ext->bar.min_value; + if(w >= h) { + int16_t knob_value = (int32_t)((int32_t)h * range) / w; + tmp = (int32_t)((int32_t)(range - (ext->bar.act_value - ext->bar.min_value)) * knob_value) / range; + ext->bar.act_value +=tmp; + } else { + int16_t knob_value = (int32_t)((int32_t)w * range) / h; + tmp = (int32_t)((int32_t)(range - (ext->bar.act_value - ext->bar.min_value)) * knob_value) / range; + ext->bar.act_value +=tmp; + + } + + ancestor_design_f(slider, mask, mode); + ext->bar.act_value -=tmp; + lv_sliders_t * style = lv_obj_get_style(slider); + area_t knob_area; + area_cpy(&knob_area, &slider->cords); + + if(w >= h) { + knob_area.x2 = (int32_t) ((int32_t)(w - h) * ext->bar.act_value) / range; + knob_area.x2 += knob_area.x1; + knob_area.x2 += h; + knob_area.x1 = knob_area.x2 - h; + } else { + + knob_area.y1 = (int32_t) ((int32_t)(h - w) * ext->bar.act_value) / range; + knob_area.y1 = knob_area.y2 - knob_area.y1; + knob_area.y1 -= w; + knob_area.y2 = knob_area.y1 + w; + } + + lv_draw_rect(&knob_area, mask, &style->knob); + + } + /*Post draw when the children are drawn*/ + else if(mode == LV_DESIGN_DRAW_POST) { + + } + + return true; +} + + +/** + * Initialize the built-in slider styles + */ +static void lv_sliders_init(void) +{ + /*Default style*/ + lv_bars_get(LV_BARS_DEF, &lv_sliders_def.bar); + lv_sliders_def.bar.indic.radius = LV_RECT_CIRCLE; + lv_sliders_def.bar.bg.radius = LV_RECT_CIRCLE; + lv_rects_get(LV_RECTS_PLAIN, &lv_sliders_def.knob); + lv_sliders_def.knob.base.color = COLOR_SILVER; + lv_sliders_def.knob.gcolor = COLOR_GRAY; + lv_sliders_def.knob.base.opa = OPA_70; + lv_sliders_def.knob.radius = lv_sliders_def.bar.indic.radius; + +} + +#endif diff --git a/lv_objx/lv_slider.h b/lv_objx/lv_slider.h new file mode 100644 index 000000000..f8c8d6685 --- /dev/null +++ b/lv_objx/lv_slider.h @@ -0,0 +1,83 @@ +/** + * @file lv_slider.h + * + */ + +#ifndef LV_SLIDER_H +#define LV_SLIDER_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_SLIDER != 0 + +#include "../lv_obj/lv_obj.h" +#include "lv_bar.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/*Data of slider*/ +typedef struct +{ + lv_bar_ext_t bar; /*Ext. of ancestor*/ + /*New data for this type */ + lv_action_t cb; /*Function to call when a new value is set*/ + int16_t tmp_value; /*Store temporal value during press until release (Handled by the library)*/ +}lv_slider_ext_t; + +/*Style of slider*/ +typedef struct +{ + lv_bars_t bar; /*Style of ancestor*/ + /*New style element for this type */ + lv_rects_t knob; /*Style of the knob*/ +}lv_sliders_t; + +/*Built-in styles of slider*/ +typedef enum +{ + LV_SLIDERS_DEF, +}lv_sliders_builtin_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a slider objects + * @param par pointer to an object, it will be the parent of the new slider + * @param copy pointer to a slider object, if not NULL then the new object will be copied from it + * @return pointer to the created slider + */ +lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the slider + * @param slider pointer to a slider object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param); + +/** + * Return with a pointer to a built-in style and/or copy it to a variable + * @param style a style name from lv_sliders_builtin_t enum + * @param copy copy the style to this variable. (NULL if unused) + * @return pointer to an lv_sliders_t style + */ +lv_sliders_t * lv_sliders_get(lv_sliders_builtin_t style, lv_sliders_t * copy); + +/********************** + * MACROS + **********************/ + +#endif + +#endif From 6116e83815d1a23f1c584edf3c690c0096c7c334 Mon Sep 17 00:00:00 2001 From: Gabor Date: Thu, 13 Apr 2017 10:20:35 +0200 Subject: [PATCH 26/53] New style system introduced! Still not applied to apps --- lv_app/lv_app.c | 8 +- lv_draw/lv_draw.c | 131 ++++----- lv_draw/lv_draw.h | 21 +- lv_obj/lv_dispi.c | 2 +- lv_obj/lv_obj.c | 113 ++++---- lv_obj/lv_obj.h | 25 +- lv_obj/lv_refr.c | 10 +- lv_obj/lv_style.c | 643 ++++++++++++++++++++++++++++++++++++++++++++ lv_obj/lv_style.h | 361 +++++++++++++++++++++++++ lv_objx/lv_bar.c | 86 +++--- lv_objx/lv_bar.h | 38 +-- lv_objx/lv_btn.c | 167 ++++-------- lv_objx/lv_btn.h | 33 +-- lv_objx/lv_btnm.c | 249 ++++++++--------- lv_objx/lv_btnm.h | 30 +-- lv_objx/lv_cb.c | 101 ++----- lv_objx/lv_cb.h | 25 +- lv_objx/lv_chart.c | 215 +++++++-------- lv_objx/lv_chart.h | 49 ++-- lv_objx/lv_ddlist.c | 139 ++++------ lv_objx/lv_ddlist.h | 25 +- lv_objx/lv_img.c | 89 +----- lv_objx/lv_img.h | 33 --- lv_objx/lv_label.c | 76 +----- lv_objx/lv_label.h | 27 -- lv_objx/lv_led.c | 75 +----- lv_objx/lv_led.h | 23 -- lv_objx/lv_line.c | 53 +--- lv_objx/lv_line.h | 22 -- lv_objx/lv_list.c | 149 +++++----- lv_objx/lv_list.h | 31 +-- lv_objx/lv_mbox.c | 361 +++++++++---------------- lv_objx/lv_mbox.h | 48 +--- lv_objx/lv_page.c | 266 ++++++++---------- lv_objx/lv_page.h | 56 ++-- lv_objx/lv_rect.c | 127 ++------- lv_objx/lv_rect.h | 35 --- lv_objx/lv_slider.c | 85 +++--- lv_objx/lv_slider.h | 16 +- lv_objx/lv_ta.c | 87 ++---- lv_objx/lv_ta.h | 23 +- lv_objx/lv_win.c | 250 ++++++++--------- lv_objx/lv_win.h | 39 +-- 43 files changed, 2080 insertions(+), 2362 deletions(-) create mode 100644 lv_obj/lv_style.c create mode 100644 lv_obj/lv_style.h diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 65617572b..e38b982eb 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -811,7 +811,7 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t lv_obj_set_style(app->win, &wins_anim); /*Hide some elements to speed up the animation*/ - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); @@ -920,7 +920,7 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) lv_obj_set_style(app->win, &wins_anim); /*Hide some elements to speed up the animation*/ - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); @@ -1000,7 +1000,7 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) lv_obj_set_style(app->win, &wins_anim); /*Hide some elements to speed up the animation*/ - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->ctrl_holder, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); @@ -1052,7 +1052,7 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) static void lv_app_win_open_anim_cb(lv_obj_t * app_win) { /*Unhide the the elements*/ - lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->ctrl_holder, false); + lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->btnh, false); lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->title, false); lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->page.scrl, false); diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 375151b91..3323e71a7 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -18,6 +18,7 @@ #include "lv_draw_rbasic.h" #include "lv_draw_vbasic.h" #include "misc/fs/ufs/ufs.h" +#include "../lv_objx/lv_img.h" /********************* * DEFINES @@ -42,10 +43,10 @@ typedef enum * STATIC PROTOTYPES **********************/ #if USE_LV_RECT != 0 -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h); #endif /*USE_LV_RECT != 0*/ @@ -68,20 +69,6 @@ static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color #endif -#if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 -static lv_rects_t lv_img_no_pic_rects = { - .base.color = COLOR_BLACK, .gcolor = COLOR_BLACK, - .bcolor = COLOR_RED, .bwidth = 2 * LV_DOWNSCALE, .bopa = 100, - .radius = 0, .empty = 0 -}; - -static lv_labels_t lv_img_no_pic_labels = { - .base.color = COLOR_WHITE, - .letter_space = 1 * LV_DOWNSCALE, .line_space = 1 * LV_DOWNSCALE, - .mid = 1, -}; -#endif - /********************** * MACROS **********************/ @@ -95,25 +82,25 @@ static lv_labels_t lv_img_no_pic_labels = { * Draw a rectangle * @param cords_p the coordinates of the rectangle * @param mask_p the rectangle will be drawn only in this mask - * @param rects_p pointer to a rectangle style + * @param style_p pointer to a style */ -void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) +void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { if(area_get_height(cords_p) < 1 || area_get_width(cords_p) < 1) return; - if(rects_p->empty == 0){ - lv_draw_rect_main_mid(cords_p, mask_p, rects_p); + if(style_p->empty == 0){ + lv_draw_rect_main_mid(cords_p, mask_p, style_p); - if(rects_p->radius != 0) { - lv_draw_rect_main_corner(cords_p, mask_p, rects_p); + if(style_p->radius != 0) { + lv_draw_rect_main_corner(cords_p, mask_p, style_p); } } - if(rects_p->bwidth != 0) { - lv_draw_rect_border_straight(cords_p, mask_p, rects_p); + if(style_p->bwidth != 0) { + lv_draw_rect_border_straight(cords_p, mask_p, style_p); - if(rects_p->radius != 0) { - lv_draw_rect_border_corner(cords_p, mask_p, rects_p); + if(style_p->radius != 0) { + lv_draw_rect_border_corner(cords_p, mask_p, style_p); } } } @@ -233,11 +220,11 @@ void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t col * Write a text * @param cords_p coordinates of the label * @param mask_p the label will be drawn only in this area - * @param labels_p pointer to a label style + * @param style pointer to a style * @param txt 0 terminated text to write * @param flag settings for the text from 'txt_flag_t' enum */ -void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels_t * style, +void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_t * style, const char * txt, txt_flag_t flag) { const font_t * font = style->font; @@ -254,7 +241,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels pos.y = cords_p->y1; /*Align the line to middle if enabled*/ - if(style->mid != 0) { + if(style->txt_align != 0) { line_length = txt_get_width(&txt[line_start], line_end - line_start, font, style->letter_space, flag); pos.x += (w - line_length) / 2; @@ -298,7 +285,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels sscanf(buf, "%02x%02x%02x", &r, &g, &b); recolor = COLOR_MAKE(r, g, b); } else { - recolor.full = style->base.color.full; + recolor.full = style->ccolor.full; } cmd_state = CMD_STATE_IN; /*After the parameter the text is in the command*/ } @@ -306,8 +293,8 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels } } - if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font, txt[i], recolor, style->base.opa); - else letter_fp(&pos, mask_p, font, txt[i], style->base.color, style->base.opa); + if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font, txt[i], recolor, style->opa); + else letter_fp(&pos, mask_p, font, txt[i], style->ccolor, style->opa); pos.x += (font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; } /*Go to next line*/ @@ -316,7 +303,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels pos.x = cords_p->x1; /*Align to middle*/ - if(style->mid != 0) { + if(style->txt_align != 0) { line_length = txt_get_width(&txt[line_start], line_end - line_start, font, style->letter_space, flag); pos.x += (w - line_length) / 2; @@ -338,12 +325,11 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels * @param opa opacity of the image (0..255) */ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, - const lv_imgs_t * style, const char * fn) + const lv_style_t * style, const char * fn) { if(fn == NULL) { - lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects); - if(lv_img_no_pic_labels.font == NULL) lv_img_no_pic_labels.font = font_get(LV_FONT_DEFAULT); - lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, "No data", TXT_FLAG_NONE); + lv_draw_rect(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL)); + lv_draw_label(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL), "No data", TXT_FLAG_NONE); } else { fs_file_t file; fs_res_t res = fs_open(&file, fn, FS_MODE_RD); @@ -412,15 +398,15 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, uint8_t * f_data = ((ufs_file_t*)file.file_d)->ent->data_d; f_data += ((ufs_file_t*)file.file_d)->rwp; ((ufs_file_t*)file.file_d)->rwp += useful_data; - map_fp(&act_area, &mask_sub, (void*)f_data , style->base.opa, header.transp, upscale, - style->base.color, style->recolor_opa); + map_fp(&act_area, &mask_sub, (void*)f_data , style->opa, header.transp, upscale, + style->ccolor, style->img_recolor); } /*Or read the NOT const files normally*/ else { color_t buf[LV_HOR_RES]; res = fs_read(&file, buf, useful_data, &br); - map_fp(&act_area, &mask_sub, buf, style->base.opa, header.transp, upscale, - style->base.color, style->recolor_opa); + map_fp(&act_area, &mask_sub, buf, style->opa, header.transp, upscale, + style->ccolor, style->img_recolor); } fs_tell(&file, &act_pos); @@ -433,9 +419,8 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, fs_close(&file); if(res != FS_RES_OK) { - lv_draw_rect(cords_p, mask_p, &lv_img_no_pic_rects); - if(lv_img_no_pic_labels.font == NULL) lv_img_no_pic_labels.font = font_get(LV_FONT_DEFAULT); - lv_draw_label(cords_p, mask_p,&lv_img_no_pic_labels, fn, TXT_FLAG_NONE); + lv_draw_rect(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL)); + lv_draw_label(cords_p, mask_p, lv_style_get(LV_STYLE_PLAIN, NULL), "No data", TXT_FLAG_NONE); } } } @@ -452,9 +437,9 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, * @param lines_p pointer to a line style */ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, - const lv_lines_t * style) + const lv_style_t * style) { - if(style->width == 0) return; + if(style->line_width == 0) return; if(p1->x == p2->x && p1->y == p2->y) return; @@ -490,7 +475,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, } /*Make the correction on lie width*/ - width = ((style->width - 1) * width_corr_array[wcor]) >> LINE_WIDTH_CORR_SHIFT; + width = ((style->line_width - 1) * width_corr_array[wcor]) >> LINE_WIDTH_CORR_SHIFT; width_half = width >> 1; width_1 = width & 0x1 ? 1 : 0; @@ -509,7 +494,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } if (hor == false && last_x != act_point.x) { area_t act_area; @@ -525,7 +510,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } /*Calc. the next point of the line*/ @@ -553,7 +538,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } if (hor == false) { area_t act_area; @@ -567,7 +552,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, draw_area.x2 = MATH_MAX(act_area.x1, act_area.x2); draw_area.y1 = MATH_MIN(act_area.y1, act_area.y2); draw_area.y2 = MATH_MAX(act_area.y1, act_area.y2); - fill_fp(&draw_area, mask_p, style->base.color, style->base.opa); + fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } } #endif /*USE_LV_LINE != 0*/ @@ -583,14 +568,14 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { - uint16_t radius = rects_p->radius; + uint16_t radius = style->radius; - color_t mcolor = rects_p->base.color; - color_t gcolor = rects_p->gcolor; + color_t mcolor = style->mcolor; + color_t gcolor = style->gcolor; uint8_t mix; - opa_t opa = rects_p->base.opa; + opa_t opa = style->opa; cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); @@ -633,14 +618,14 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { - uint16_t radius = rects_p->radius; + uint16_t radius = style_p->radius; - color_t mcolor = rects_p->base.color; - color_t gcolor = rects_p->gcolor; + color_t mcolor = style_p->mcolor; + color_t gcolor = style_p->gcolor; color_t act_color; - opa_t opa = rects_p->base.opa; + opa_t opa = style_p->opa; uint8_t mix; cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); @@ -804,14 +789,14 @@ if(edge_top_area.y1 != mid_top_area.y1) { * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { - uint16_t radius = rects_p->radius; + uint16_t radius = style_p->radius; cord_t width = area_get_width(cords_p); cord_t height = area_get_height(cords_p); - uint16_t bwidth = rects_p->bwidth; - opa_t bopa = (uint16_t)((uint16_t) rects_p->base.opa * rects_p->bopa) >> 8; + uint16_t bwidth = style_p->bwidth; + opa_t bopa = (uint16_t)((uint16_t) style_p->opa * style_p->bopa) >> 8; area_t work_area; cord_t length_corr = 0; cord_t corner_size = 0; @@ -831,7 +816,7 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * /* Modify the corner_size if corner is drawn */ corner_size ++; - color_t b_color = rects_p->bcolor; + color_t b_color = style_p->bcolor; /*Left border*/ work_area.x1 = cords_p->x1; @@ -920,12 +905,12 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * * @param rects_p pointer to a rectangle style * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p) +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { - uint16_t radius = rects_p->radius; - uint16_t bwidth = rects_p->bwidth; - color_t bcolor = rects_p->bcolor; - opa_t bopa = (uint16_t)((uint16_t) rects_p->base.opa * rects_p->bopa ) >> 8; + uint16_t radius = style->radius; + uint16_t bwidth = style->bwidth; + color_t bcolor = style->bcolor; + opa_t bopa = (uint16_t)((uint16_t) style->opa * style->bopa ) >> 8; /*0 px border width drawn as 1 px, so decrement the bwidth*/ bwidth--; diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index eb4b94ca4..0bc693ef7 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -9,14 +9,9 @@ /********************* * INCLUDES *********************/ -#include "../lv_objx/lv_btn.h" -#include "../lv_objx/lv_rect.h" -#include "../lv_objx/lv_line.h" -#include "../lv_objx/lv_img.h" -#include "../lv_objx/lv_label.h" - #include "misc_conf.h" #include "../lv_misc/text.h" +#include "../lv_obj/lv_style.h" /********************* * DEFINES @@ -34,10 +29,10 @@ * Draw a rectangle * @param cords_p the coordinates of the rectangle * @param mask_p the rectangle will be drawn only in this mask - * @param rects_p pointer to a rectangle style + * @param style_p pointer to a style */ #if USE_LV_RECT != 0 -void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_rects_t * rects_p); +void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); #endif @@ -57,12 +52,12 @@ void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t col * Write a text * @param cords_p coordinates of the label * @param mask_p the label will be drawn only in this area - * @param labels_p pointer to a label style + * @param style_p pointer to a style * @param txt 0 terminated text to write * @param flags settings for the text from 'txt_flag_t' enum */ #if USE_LV_LABEL != 0 -void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels_t * style, +void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_t * style_p, const char * txt, txt_flag_t flag); #endif @@ -74,7 +69,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_labels */ #if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 void lv_draw_img(const area_t * cords_p, const area_t * mask_p, - const lv_imgs_t * imgs_p, const char * fn); + const lv_style_t * style_p, const char * fn); #endif /** @@ -82,11 +77,11 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, * @param p1 first point of the line * @param p2 second point of the line * @param mask_pthe line will be drawn only on this area - * @param lines_p pointer to a line style + * @param style_p pointer to a style */ #if USE_LV_LINE != 0 void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, - const lv_lines_t * lines_p); + const lv_style_t * style_p); #endif /********************** diff --git a/lv_obj/lv_dispi.c b/lv_obj/lv_dispi.c index 9cfdefe91..b3092cc3c 100644 --- a/lv_obj/lv_dispi.c +++ b/lv_obj/lv_dispi.c @@ -429,7 +429,7 @@ static void dispi_drag(lv_dispi_t * dispi_p) /*Set the drag in progress flag if the object is really moved*/ if(lv_obj_get_x(drag_obj) != act_x || lv_obj_get_y(drag_obj) != act_y) { - if(dispi_p->drag_range_out == 0) { /*Send the drag begin signal on first move*/ + if(dispi_p->drag_range_out != 0) { /*Send the drag begin signal on first move*/ drag_obj->signal_f(drag_obj, LV_SIGNAL_DRAG_BEGIN, dispi_p); } dispi_p->drag_in_prog = 1; diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index c322c0899..324ee829f 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -35,8 +35,8 @@ **********************/ static void lv_obj_pos_child_refr(lv_obj_t * obj, cord_t x_diff, cord_t y_diff); static void lv_style_refr_core(void * style_p, lv_obj_t * obj); +static void lv_child_refr_style(lv_obj_t * obj); static void lv_obj_del_child(lv_obj_t * obj); -static void lv_objs_init(void); static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode_t mode); /********************** @@ -46,11 +46,6 @@ static lv_obj_t * def_scr = NULL; static lv_obj_t * act_scr = NULL; static ll_dsc_t scr_ll; -static lv_objs_t lv_objs_scr; -static lv_objs_t lv_objs_plain; -static lv_objs_t lv_objs_transp; - - #ifdef LV_IMG_DEF_WALLPAPER LV_IMG_DECLARE(LV_IMG_DEF_WALLPAPER); #endif @@ -72,6 +67,9 @@ void lv_init(void) area_t scr_area; area_set(&scr_area, 0, 0, LV_HOR_RES, LV_VER_RES); lv_rfill(&scr_area, NULL, COLOR_BLACK, OPA_COVER); + + /*Init. the sstyles*/ + lv_style_init(); /*Init. the screen refresh system*/ lv_refr_init(); @@ -136,7 +134,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = 0; /*Set appearance*/ - new_obj->style_p = lv_objs_get(LV_OBJS_SCR, NULL); + new_obj->style_p = lv_style_get(LV_STYLE_PLAIN, NULL); /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); @@ -178,7 +176,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = 0; /*Set appearance*/ - new_obj->style_p = lv_objs_get(LV_OBJS_PLAIN, NULL); + new_obj->style_p = lv_style_get(LV_STYLE_PLAIN, NULL); /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); @@ -319,43 +317,6 @@ bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param) return valid; } -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_objs_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_objs_t style - */ -lv_objs_t * lv_objs_get(lv_objs_builtin_t style, lv_objs_t * copy_p) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_objs_init(); - style_inited = true; - } - - lv_objs_t * style_p; - - switch(style) { - case LV_OBJS_SCR: - style_p = &lv_objs_scr; - break; - case LV_OBJS_PLAIN: - style_p = &lv_objs_plain; - break; - case LV_OBJS_TRANSP: - style_p = &lv_objs_transp; - break; - default: - style_p = NULL; - } - - if(copy_p != NULL) memcpy(copy_p, style_p, sizeof(lv_objs_t)); - - return style_p; -} - /** * Mark the object as invalid therefore its current position will be redrawn by 'lv_refr_task' @@ -807,20 +768,17 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size) * @param obj pointer to an object * @param style_p pointer to the new style */ -void lv_obj_set_style(lv_obj_t * obj, void * style) +void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style) { - lv_obj_inv(obj); - if(obj->style_iso != 0) { dm_free(obj->style_p); obj->style_iso = 0; } obj->style_p = style; - /*Send a style change signal to the object*/ - lv_obj_refr_style(obj); + /*Send a signal about style change to every children with NULL style*/ + lv_child_refr_style(obj); - lv_obj_inv(obj); } /** @@ -1277,13 +1235,24 @@ cord_t lv_obj_getext_size(lv_obj_t * obj) *---------------*/ /** - * Get the style pointer of an object + * Get the style pointer of an object (if NULL get style of the parent) * @param obj pointer to an object * @return pointer to a style */ -void * lv_obj_get_style(lv_obj_t * obj) +lv_style_t * lv_obj_get_style(lv_obj_t * obj) { - return obj->style_p; + if(obj->style_p != NULL) return obj->style_p; + else { + lv_obj_t * par = obj->par; + + while(par != NULL) { + if(par->style_p != NULL) return par->style_p; + par = par->par; + } + } + + /*Never reach this, at least the screen has to be a style*/ + return NULL; } /*----------------- @@ -1460,13 +1429,13 @@ static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode cover = area_is_in(mask_p, &obj->cords); return cover; } else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_objs_t * style = lv_obj_get_style(obj); + lv_style_t * style = lv_obj_get_style(obj); /*Simply draw a rectangle*/ #if LV_VDB_SIZE == 0 lv_rfill(&obj->cords, mask_p, style->color, style->opa); #else - lv_vfill(&obj->cords, mask_p, style->color, style->opa); + lv_vfill(&obj->cords, mask_p, style->mcolor, style->opa); #endif } return true; @@ -1509,6 +1478,26 @@ static void lv_style_refr_core(void * style_p, lv_obj_t * obj) } } + +/** + * Recursively refresh the style of the children. Go deeper until a not NULL style is found + * because the NULL styles are inherited from the parent + * @param obj pointer to an object + */ +static void lv_child_refr_style(lv_obj_t * obj) +{ + lv_obj_t * child = lv_obj_get_child(obj, NULL); + while(child != NULL) { + if(child->style_p == NULL) { + lv_child_refr_style(child); + } + child = lv_obj_get_child(obj, child); + } + + /*Send a style change signal to the object*/ + lv_obj_refr_style(obj); +} + /** * Called by 'lv_obj_del' to delete the children objects * @param obj pointer to an object (all of its children will be deleted) @@ -1547,15 +1536,3 @@ static void lv_obj_del_child(lv_obj_t * obj) dm_free(obj); /*Free the object itself*/ } - -static void lv_objs_init(void) -{ - lv_objs_scr.color = LV_OBJ_DEF_SCR_COLOR; - lv_objs_scr.opa = OPA_COVER; - - lv_objs_plain.color =COLOR_MAKE(0x88, 0xaf, 0xcb); - lv_objs_plain.opa = OPA_COVER; - - lv_objs_transp.color = lv_objs_plain.color; - lv_objs_transp.opa = OPA_TRANSP; -} diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index 0606fe7ea..a7ffec8ed 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -15,6 +15,7 @@ #include "misc/mem/dyn_mem.h" #include "misc/mem/linked_list.h" #include "misc/others/color.h" +#include "lv_style.h" /********************* * DEFINES @@ -85,7 +86,7 @@ typedef struct __LV_OBJ_T lv_design_f_t design_f; void * ext; /*The object attributes can be extended here*/ - void * style_p; /*Object specific style*/ + lv_style_t * style_p; /*Object specific style*/ #if LV_OBJ_FREE_P != 0 void * free_p; /*Application specific pointer (set it freely)*/ @@ -151,13 +152,6 @@ typedef struct opa_t opa; }lv_objs_t; -typedef enum -{ - LV_OBJS_SCR, - LV_OBJS_PLAIN, - LV_OBJS_TRANSP, -}lv_objs_builtin_t; - typedef enum { LV_ANIM_NONE = 0, @@ -221,14 +215,6 @@ void lv_obj_del(lv_obj_t * obj); */ bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param); -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_objs_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_objs_t style - */ -lv_objs_t * lv_objs_get(lv_objs_builtin_t style, lv_objs_t * copy_p); - /** * Load a new screen * @param scr pointer to a screen @@ -365,7 +351,7 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size); * @param obj pointer to an object * @param style_p pointer to the new style */ -void lv_obj_set_style(lv_obj_t * obj, void * style); +void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style); /** * Isolate the style of an object. In other words a unique style will be created @@ -570,7 +556,7 @@ cord_t lv_obj_getext_size(lv_obj_t * obj); * @param obj pointer to an object * @return pointer to a style */ -void * lv_obj_get_style(lv_obj_t * obj); +lv_style_t * lv_obj_get_style(lv_obj_t * obj); /** * Get the hidden attribute of an object @@ -676,7 +662,4 @@ void * lv_obj_get_free_p(lv_obj_t * obj); * MACROS **********************/ -#define LV_SA(obj, style_type) ((style_type *) obj->style_p) -#define LV_EA(obj, ext_type) ((ext_type *) obj->ext) - #endif diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index 5bded67e3..e4d5530ba 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -316,7 +316,8 @@ static lv_obj_t * lv_refr_get_top_obj(const area_t * area_p, lv_obj_t * obj) /*If no better children check this object*/ if(found_p == NULL) { - if(((lv_objs_t *)obj->style_p)->opa == OPA_COVER && + lv_style_t * style = lv_obj_get_style(obj); + if(style->opa == OPA_COVER && obj->design_f(obj, area_p, LV_DESIGN_COVER_CHK) != false) { found_p = obj; } @@ -401,8 +402,9 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) /*Draw the parent and its children only if they ore on 'mask_parent'*/ if(union_ok != false) { - /* Redraw the object */ - if(((lv_objs_t *)obj->style_p)->opa != OPA_TRANSP) { + /* Redraw the object */ + lv_style_t * style = lv_obj_get_style(obj); + if(style->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_MAIN); /* tick_wait_ms(100); */ /*DEBUG: Wait after every object draw to see the order of drawing*/ } @@ -435,7 +437,7 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) } /* If all the children are redrawn make 'post draw' design */ - if(((lv_objs_t *)obj->style_p)->opa != OPA_TRANSP) { + if(style->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_POST); } } diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c new file mode 100644 index 000000000..cbc7b978a --- /dev/null +++ b/lv_obj/lv_style.c @@ -0,0 +1,643 @@ +/** + * @file lv_style.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#include "lv_style.h" + + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +static lv_style_t lv_style_scr; +static lv_style_t lv_style_transp; +static lv_style_t lv_style_transp_tight; +static lv_style_t lv_style_plain; +static lv_style_t lv_style_plain_color; +static lv_style_t lv_style_pretty; +static lv_style_t lv_style_pretty_color; +static lv_style_t lv_style_focus; +static lv_style_t lv_style_focus_color; +static lv_style_t lv_style_btn_rel; +static lv_style_t lv_style_btn_pr; +static lv_style_t lv_style_btn_trel; +static lv_style_t lv_style_btn_tpr; +static lv_style_t lv_style_btn_ina; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Init the basic styles + */ +void lv_style_init (void) +{ + /*Screen style*/ + lv_style_set_ccolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20, 0x20)); + lv_style_set_opa(&lv_style_scr, OPA_COVER); + lv_style_set_opa_prop(&lv_style_scr, true); + + lv_style_set_mcolor(&lv_style_scr, COLOR_WHITE); + lv_style_set_gcolor(&lv_style_scr, COLOR_WHITE); + lv_style_set_bcolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20 ,0x20)); + lv_style_set_scolor(&lv_style_scr, COLOR_GRAY); + lv_style_set_radius(&lv_style_scr, 0); + lv_style_set_bwidth(&lv_style_scr, LV_DPI / 30 >= 1 ? LV_DPI / 30 >= 1 : 1); + lv_style_set_swidth(&lv_style_scr, 0); + lv_style_set_vpad(&lv_style_scr, LV_DPI / 6); + lv_style_set_hpad(&lv_style_scr, LV_DPI / 6); + lv_style_set_opad(&lv_style_scr, LV_DPI / 6); + lv_style_set_bopa(&lv_style_scr, OPA_COVER); + lv_style_set_empty(&lv_style_scr, false); + + lv_style_set_font(&lv_style_scr, font_get(LV_FONT_DEFAULT)); + lv_style_set_letter_space(&lv_style_scr, 1 * LV_DOWNSCALE); + lv_style_set_line_space(&lv_style_scr, 5 * LV_DOWNSCALE); + lv_style_set_txt_align(&lv_style_scr, 0); + + lv_style_set_img_recolor(&lv_style_scr, OPA_TRANSP); + + lv_style_set_line_width(&lv_style_scr, 1 * LV_DOWNSCALE); + + /*Plain style (by default the same as the screen style)*/ + memcpy(&lv_style_plain, &lv_style_scr, sizeof(lv_style_t)); + + /*Plain color style*/ + memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); + lv_style_set_ccolor(&lv_style_plain_color, COLOR_SILVER); + lv_style_set_mcolor(&lv_style_plain_color, COLOR_CYAN); + lv_style_set_gcolor(&lv_style_plain_color, COLOR_CYAN); + + /*Pretty style */ + memcpy(&lv_style_pretty, &lv_style_plain, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_pretty, COLOR_WHITE); + lv_style_set_mcolor(&lv_style_pretty, COLOR_SILVER); + lv_style_set_radius(&lv_style_pretty, LV_DPI / 10); + + /*Pretty color style*/ + memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_pretty_color, COLOR_WHITE); + lv_style_set_mcolor(&lv_style_pretty_color, COLOR_CYAN); + + /*Transparent style*/ + memcpy(&lv_style_transp, &lv_style_plain, sizeof(lv_style_t)); + lv_style_set_empty(&lv_style_transp, true); + lv_style_set_bwidth(&lv_style_transp, 0); + + /*Transparent tight style*/ + memcpy(&lv_style_transp_tight, &lv_style_transp, sizeof(lv_style_t)); + lv_style_set_hpad(&lv_style_transp_tight, 0); + lv_style_set_vpad(&lv_style_transp_tight, 0); + + /*Button released style*/ + memcpy(&lv_style_btn_rel, &lv_style_plain, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_btn_rel, COLOR_WHITE); + lv_style_set_gcolor(&lv_style_btn_rel, COLOR_GRAY); + + /*Button pressed style*/ + memcpy(&lv_style_btn_pr, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_btn_pr, COLOR_BLACK); + lv_style_set_ccolor(&lv_style_btn_pr, COLOR_SILVER); + lv_style_set_scolor(&lv_style_btn_pr, COLOR_GRAY); + lv_style_set_swidth(&lv_style_btn_pr, 10); + + /*Button toggle released style*/ + memcpy(&lv_style_btn_trel, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_btn_trel, COLOR_LIME); + + /*Button toggle pressed style*/ + memcpy(&lv_style_btn_tpr, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_btn_tpr, COLOR_GREEN); + + /*Button inactive style*/ + memcpy(&lv_style_btn_ina, &lv_style_btn_rel, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_btn_ina, COLOR_YELLOW); +} + + +/** + * Get style from its name + * @param style_name an element of the 'lv_style_name_t' enum + * @return pointer to the requested style (lv_style_def by default) + */ +lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy) +{ + lv_style_t * style = &lv_style_plain; + + switch(style_name) { + case LV_STYLE_SCR: + style = &lv_style_scr; + break; + case LV_STYLE_PLAIN: + style = &lv_style_plain; + break; + case LV_STYLE_PLAIN_COLOR: + style = &lv_style_plain_color; + break; + case LV_STYLE_PRETTY: + style = &lv_style_pretty; + break; + case LV_STYLE_PRETTY_COLOR: + style = &lv_style_pretty_color; + break; + case LV_STYLE_TRANSP: + style = &lv_style_transp; + break; + case LV_STYLE_TRANSP_TIGHT: + style = &lv_style_transp_tight; + break; + case LV_STYLE_BTN_REL: + style = &lv_style_btn_rel; + break; + case LV_STYLE_BTN_PR: + style = &lv_style_btn_pr; + break; + case LV_STYLE_BTN_TREL: + style = &lv_style_btn_trel; + break; + case LV_STYLE_BTN_TPR: + style = &lv_style_btn_tpr; + break; + case LV_STYLE_BTN_INA: + style = &lv_style_btn_ina; + break; + default: + style = &lv_style_plain; + } + + if(copy != NULL) memcpy(copy, style, sizeof(lv_style_t)); + + return style; +} + +/** + * Set the content color of a style + * @param style pointer to style + * @param ccolor content color + */ +void lv_style_set_ccolor(lv_style_t * style, color_t ccolor) +{ + style->ccolor = ccolor; +} + +/** + * Set the opacity of a style + * @param style pointer to style + * @param opa opacity (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) + */ +void lv_style_set_opa(lv_style_t * style, opa_t opa) +{ + style->opa = opa; +} + +/** + * Set the proportional opacity attribute of a style (make the opacity relative to the parent) + * @param style pointer to style + * @param opa_prop true: enabled, false: disabled + */ +void lv_style_set_opa_prop(lv_style_t * style, bool opa_prop) +{ + style->opa_prop = opa_prop == false ? 0 : 1; +} + +/** + * Set the container main color of a style + * @param style pointer to style + * @param mcolor main color of the background + */ +void lv_style_set_mcolor(lv_style_t * style, color_t mcolor) +{ + style->mcolor = mcolor; +} + + +/** + * Set the container gradient color of a style + * @param style pointer to style + * @param gcolor gradient color of the background + */ +void lv_style_set_gcolor(lv_style_t * style, color_t gcolor) +{ + style->gcolor = gcolor; +} + +/** + * Set the container border color of a style + * @param style pointer to style + * @param bcolor border color of the background + */ +void lv_style_set_bcolor(lv_style_t * style, color_t bcolor) +{ + style->bcolor = bcolor; +} + + +/** + * Set the container shadow color of a style + * @param style pointer to style + * @param scolor shadow color of the background + */ +void lv_style_set_scolor(lv_style_t * style, color_t scolor) +{ + style->scolor = scolor; +} + +/** + * Set the container corner radius of a style + * @param style pointer to style + * @param radius corner radius of the background (>= 0) + */ +void lv_style_set_radius(lv_style_t * style, cord_t radius) +{ + style->radius = radius; +} + + +/** + * Set the container border width of a style + * @param style pointer to style + * @param bwidth border width of the background (>= 0, 0 means no border) + */ +void lv_style_set_bwidth(lv_style_t * style, cord_t bwidth) +{ + style->bwidth = bwidth; +} + + +/** + * Set the container shadow width of a style + * @param style pointer to style + * @param swidth shadow width of the background (>= 0, 0 means no shadow) + */ +void lv_style_set_swidth(lv_style_t * style, cord_t swidth) +{ + style->swidth = swidth; +} + + +/** + * Set the container vertical padding of a style + * @param style pointer to style + * @param vpad vertical padding on the background + */ +void lv_style_set_vpad(lv_style_t * style, cord_t vpad) +{ + style->vpad = vpad; +} + + +/** + * Set the container horizontal padding of a style + * @param style pointer to style + * @param hpad horizontal padding on the background + */ +void lv_style_set_hpad(lv_style_t * style, cord_t hpad) +{ + style->hpad = hpad; +} + +/** + * Set the container object padding of a style + * @param style pointer to style + * @param opad padding between objects on the background + */ +void lv_style_set_opad(lv_style_t * style, cord_t opad) +{ + style->opad = opad; +} + +/** + * Set the container border opacity of a style (relative to the object opacity) + * @param style pointer to style + * @param bopa border opacity of the background (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) + */ +void lv_style_set_bopa(lv_style_t * style, opa_t bopa) +{ + style->bopa = bopa; +} + + +/** + * Set container empty attribute of a style (transparent background but border drawn) + * @param style pointer to style + * @param empty true: empty enable, false: empty disable + */ +void lv_style_set_empty(lv_style_t * style, bool empty) +{ + style->empty = empty == false ? 0 : 1; +} + +/** + * Set the font of a style + * @param style pointer to style + * @param font pointer to a fint + */ +void lv_style_set_font(lv_style_t * style, const font_t * font) +{ + style->font = font; +} + + +/** + * Set the letter space of a style + * @param style pointer to style + * @param letter_space new letter space + */ +void lv_style_set_letter_space(lv_style_t * style, cord_t letter_space) +{ + style->letter_space = letter_space; +} + + +/** + * Set the line space of a style + * @param style pointer to style + * @param line_space new letter space + */ +void lv_style_set_line_space(lv_style_t * style, cord_t line_space) +{ + style->line_space = line_space; +} + +/** + * Set the text align of a style + * @param style pointer to style + * @param align TODO + */ +void lv_style_set_txt_align(lv_style_t * style, uint8_t align) +{ + style->txt_align = align; +} + + +/** + * Set the image re-color intensity of a style + * @param style pointer to style + * @param recolor re-coloring intensity (OPA_TRANSP: do nothing, OPA_COVER: fully re-color, OPA_10: little re-color) + */ +void lv_style_set_img_recolor(lv_style_t * style, opa_t recolor) +{ + style->img_recolor = recolor; +} + + +/** + * Set the line width of a style + * @param style pointer to style + * @param width new line width (>=0) + */ +void lv_style_set_line_width(lv_style_t * style, cord_t width) +{ + style->line_width = width; +} + +/************************* + * GET FUNTIONS + *************************/ +/** + * Get the content color of a style + * @param style pointer to style + * @return content color + */ +color_t lv_style_get_ccolor(lv_style_t * style) +{ + return style->ccolor; +} + +/** + * Get the opacity of a style + * @param style pointer to style + * @return opacity (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) + */ +opa_t lv_style_get_opa(lv_style_t * style) +{ + return style->opa; +} + +/** + * Get the proportional opacity attribute of a style (make the opacity relative to the parent) + * @param style pointer to style + * @return true: enabled, false: disabled + */ +bool lv_style_get_opa_prop(lv_style_t * style) +{ + return style->opa_prop == 0 ? false : true; +} + +/** + * Get the container main color of a style + * @param style pointer to style + * @return main color of the background + */ +color_t lv_style_get_mcolor(lv_style_t * style) +{ + return style->mcolor; +} + + +/** + * Get the container gradient color of a style + * @param style pointer to style + * @return gradient color of the background + */ +color_t lv_style_get_gcolor(lv_style_t * style) +{ + return style->gcolor; +} + +/** + * Get the container border color of a style + * @param style pointer to style + * @return border color of the background + */ +color_t lv_style_get_bcolor(lv_style_t * style) +{ + return style->bcolor; +} + + +/** + * Get the container shadow color of a style + * @param style pointer to style + * @return shadow color of the background + */ +color_t lv_style_get_Scolor(lv_style_t * style) +{ + return style->scolor; +} + +/** + * Get the container corner radius of a style + * @param style pointer to style + * @return corner radius of the background (>= 0) + */ + cord_t lv_style_get_radius(lv_style_t * style) +{ + return style->radius; +} + + +/** + * Get the container border width of a style + * @param style pointer to style + * @return border width of the background (>= 0, 0 means no border) + */ +cord_t lv_style_get_bwidth(lv_style_t * style) +{ + return style->bwidth; +} + + +/** + * Get the container shadow width of a style + * @param style pointer to style + * @return shadow width of the background (>= 0, 0 means no shadow) + */ +cord_t lv_style_get_swidth(lv_style_t * style) +{ + return style->swidth; +} + + +/** + * Get the container vertical padding of a style + * @param style pointer to style + * @return vertical padding on the background + */ +cord_t lv_style_get_vpad(lv_style_t * style) +{ + return style->vpad; +} + + +/** + * Get the container horizontal padding of a style + * @param style pointer to style + * @return horizontal padding on the background + */ +cord_t lv_style_get_hpad(lv_style_t * style) +{ + return style->hpad; +} + +/** + * Get the container object padding of a style + * @param style pointer to style + * @return padding between objects on the background + */ +cord_t lv_style_get_opad(lv_style_t * style) +{ + return style->opad; +} + +/** + * Get the container border opacity of a style (relative to the object opacity) + * @param style pointer to style + * @return border opacity of the background (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) + */ +opa_t lv_style_get_bopa(lv_style_t * style) +{ + return style->bopa; +} + + +/** + * Get container empty attribute of a style (transparent background but border drawn) + * @param style pointer to style + * @return true: empty enable, false: empty disable + */ +bool lv_style_get_empty(lv_style_t * style, bool empty) +{ + return style->empty == false ? 0 : 1; +} + +/** + * Get the font of a style + * @param style pointer to style + * @return pointer to a fint + */ +const font_t * lv_style_get_font(lv_style_t * style) +{ + return style->font; +} + + +/** + * Get the letter space of a style + * @param style pointer to style + * @return new letter space + */ +cord_t lv_style_get_letter_space(lv_style_t * style) +{ + return style->letter_space; +} + + +/** + * Get the line space of a style + * @param style pointer to style + * @return new letter space + */ +cord_t lv_style_get_line_space(lv_style_t * style) +{ + return style->line_space; +} + +/** + * Get the text align of a style + * @param style pointer to style + * @return TODO + */ +uint8_t lv_style_get_txt_align(lv_style_t * style) +{ + return style->txt_align; +} + + +/** + * Get the image re-color intensity of a style + * @param style pointer to style + * @return re-coloring intensity (OPA_TRANSP: do nothing, OPA_COVER: fully re-color, OPA_10: little re-color) + */ +opa_t lv_style_get_img_recolor(lv_style_t * style) +{ + return style->img_recolor; +} + + +/** + * Get the line width of a style + * @param style pointer to style + * @return new line width (>=0) + */ +cord_t lv_style_get_line_width(lv_style_t * style) +{ + return style->line_width; +} + + +/********************** + * STATIC FUNCTIONS + **********************/ diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h new file mode 100644 index 000000000..fe4d4ef33 --- /dev/null +++ b/lv_obj/lv_style.h @@ -0,0 +1,361 @@ +/** + * @file lv_style.h + * + */ + +#ifndef LV_STYLE_H +#define LV_STYLE_H + +/********************* + * INCLUDES + *********************/ +#include +#include "misc/others/color.h" +#include "../lv_misc/area.h" +#include "../lv_misc/font.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +typedef struct +{ + /*Object level styles*/ + color_t ccolor; /*Content color (e.g. text or image re-color )*/ + opa_t opa; /*Opacity of the object*/ + uint8_t opa_prop:1; /*Opacity is proportional to the parent*/ + uint8_t empty :1; /*Transparent background (border drawn)*/ + color_t mcolor; /*Main color of background*/ + color_t gcolor; /*Gradient color of background*/ + color_t bcolor; /*Border color of background*/ + color_t scolor; /*Shadow color of background*/ + cord_t radius; /*Corner radius of background*/ + cord_t bwidth; /*Width of the background border*/ + cord_t swidth; /*Width of the background shadow effect*/ + cord_t vpad; /*Vertical padding*/ + cord_t hpad; /*Horizontal padding*/ + cord_t opad; /*Object padding on the background*/ + opa_t bopa; /*Opacity of background border*/ + const font_t * font; + cord_t letter_space; + cord_t line_space; + uint8_t txt_align; + opa_t img_recolor; + cord_t line_width; +}lv_style_t; + +typedef enum { + LV_STYLE_SCR, + LV_STYLE_TRANSP, + LV_STYLE_TRANSP_TIGHT, + LV_STYLE_PLAIN, + LV_STYLE_PLAIN_COLOR, + LV_STYLE_PRETTY, + LV_STYLE_PRETTY_COLOR, + LV_STYLE_BTN_REL, + LV_STYLE_BTN_PR, + LV_STYLE_BTN_TREL, + LV_STYLE_BTN_TPR, + LV_STYLE_BTN_INA, +}lv_style_name_t; + + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Init the basic styles + */ +void lv_style_init (void); + +/** + * Get style from its name + * @param style_name an element of the 'lv_style_name_t' enum + * @return pointer to the requested style (lv_style_def by default) + */ +lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy); + +/** + * Inherit all not set attributes of child style from a parent style + * @param result pointer to a 'lv_style_t' variable to store the result style + * @param child pointer to a child style. (if NULL 'lv_style_def' will be used) + * @param parent pointer to a parent style (if NULL 'lv_style_def' will be used) + */ +lv_style_t * lv_style_inherit(lv_style_t * result, const lv_style_t * child, const lv_style_t * parent ); + +/** + * Set the content color of a style + * @param style pointer to style + * @param ccolor content color + */ +void lv_style_set_ccolor(lv_style_t * style, color_t ccolor); + +/** + * Clear the content color of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_ccolor(lv_style_t * style); + +/** + * Set the opacity of a style + * @param style pointer to style + * @param opa opacity (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) + */ +void lv_style_set_opa(lv_style_t * style, opa_t opa); + +/** + * Clear the opacity of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_opa(lv_style_t * style); + +/** + * Set the proportional opacity attribute of a style (make the opacity relative to the parent) + * @param style pointer to style + * @param opa_prop true: enabled, false: disabled + */ +void lv_style_set_opa_prop(lv_style_t * style, bool opa_prop); + +/** + * Clear the proportional opacity attribute of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_opa_prop(lv_style_t * style); + +/** + * Set the container main color of a style + * @param style pointer to style + * @param mcolor main color of the background + */ +void lv_style_set_mcolor(lv_style_t * style, color_t mcolor); + +/** + * Clear the container main color of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_mcolor(lv_style_t * style); + +/** + * Set the container gradient color of a style + * @param style pointer to style + * @param gcolor gradient color of the background + */ +void lv_style_set_gcolor(lv_style_t * style, color_t gcolor); + +/** + * Clear the container gradient color of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_gcolor(lv_style_t * style); + +/** + * Set the container border color of a style + * @param style pointer to style + * @param bcolor border color of the background + */ +void lv_style_set_bcolor(lv_style_t * style, color_t bcolor); + +/** + * Clear the container border color of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_bcolor(lv_style_t * style); + +/** + * Set the container light (shadow effect) color of a style + * @param style pointer to style + * @param lcolor light (shadow) color of the background + */ +void lv_style_set_scolor(lv_style_t * style, color_t lcolor); + +/** + * Set the container corner radius of a style + * @param style pointer to style + * @param radius corner radius of the background (>= 0) + */ +void lv_style_set_radius(lv_style_t * style, cord_t radius); + +/** + * Clear the container radius of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_radius(lv_style_t * style); + +/** + * Set the container border width of a style + * @param style pointer to style + * @param bwidth border width of the background (>= 0, 0 means no border) + */ +void lv_style_set_bwidth(lv_style_t * style, cord_t bwidth); + +/** + * Clear the container border width of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_bwidth(lv_style_t * style); + +/** + * Set the container shadow width of a style + * @param style pointer to style + * @param swidth shadow width of the background (>= 0, 0 means no shadow) + */ +void lv_style_set_swidth(lv_style_t * style, cord_t swidth); + +/** + * Clear the container light (shadow) width of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_lwidth(lv_style_t * style); + +/** + * Set the container vertical padding of a style + * @param style pointer to style + * @param vpad vertical padding on the background + */ +void lv_style_set_vpad(lv_style_t * style, cord_t vpad); + +/** + * Clear the container vertical padding of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_vpad(lv_style_t * style); + +/** + * Set the container horizontal padding of a style + * @param style pointer to style + * @param hpad horizontal padding on the background + */ +void lv_style_set_hpad(lv_style_t * style, cord_t hpad); + +/** + * Clear the container horizontal padding of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_hpad(lv_style_t * style); + +/** + * Set the container object padding of a style + * @param style pointer to style + * @param opad padding between objects on the background + */ +void lv_style_set_opad(lv_style_t * style, cord_t opad); + +/** + * Clear the container object padding of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_opad(lv_style_t * style); + +/** + * Set the container border opacity of a style (relative to the object opacity) + * @param style pointer to style + * @param bopa border opacity of the background (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) + */ +void lv_style_set_bopa(lv_style_t * style, opa_t bopa); + +/** + * Clear the container border opacity of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_bopa(lv_style_t * style); + +/** + * Set container empty attribute of a style (transparent background but border drawn) + * @param style pointer to style + * @param empty true: empty enable, false: empty disable + */ +void lv_style_set_empty(lv_style_t * style, bool empty); + +/** + * Clear the container empty attribute of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_empty(lv_style_t * style); + +/** + * Set the font of a style + * @param style pointer to style + * @param font pointer to a font + */ +void lv_style_set_font(lv_style_t * style, const font_t * font); + +/** + * Clear the font of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_font(lv_style_t * style); + +/** + * Set the letter space of a style + * @param style pointer to style + * @param letter_space new letter space + */ +void lv_style_set_letter_space(lv_style_t * style, cord_t letter_space); + +/** + * Clear the letter space of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_letter_space(lv_style_t * style); + +/** + * Set the line space of a style + * @param style pointer to style + * @param line_space new letter space + */ +void lv_style_set_line_space(lv_style_t * style, cord_t line_space); + +/** + * Clear the line space of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_line_space(lv_style_t * style); + +/** + * Set the text align of a style + * @param style pointer to style + * @param align TODO + */ +void lv_style_set_txt_align(lv_style_t * style, uint8_t align); + +/** + * Clear the text align of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_txt_align(lv_style_t * style); + +/** + * Set the image re-color intensity of a style + * @param style pointer to style + * @param recolor re-coloring intensity (OPA_TRANSP: do nothing, OPA_COVER: fully re-color, OPA_10: little re-color) + */ +void lv_style_set_img_recolor(lv_style_t * style, opa_t recolor); + +/** + * Clear the image recolor of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_img_recolor(lv_style_t * style); + +/** + * Set the line width of a style + * @param style pointer to style + * @param width new line width (>=0) + */ +void lv_style_set_line_width(lv_style_t * style, cord_t width); + +/** + * Clear the line width of a style (it will be inherited from the parent style) + * @param style pointer to a style + */ +void lv_style_clear_line_width(lv_style_t * style); + +/********************** + * MACROS + **********************/ + +#endif diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index f492ad202..57453d43a 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -31,12 +31,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode); -static void lv_bars_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_bars_t lv_bars_def; static lv_design_f_t ancestor_design_f; /********************** @@ -71,6 +69,7 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) ext->act_value = 0; ext->format_str = NULL; ext->label = NULL; + ext->style_indic = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); /* Save the rectangle design function. * It will be used in the bar design function*/ @@ -81,6 +80,8 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new bar object*/ if(copy == NULL) { + + ext->format_str = dm_alloc(strlen(LV_BAR_DEF_FORMAT) + 1); strcpy(ext->format_str, LV_BAR_DEF_FORMAT); @@ -89,7 +90,7 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) lv_rect_set_layout(new_bar, LV_RECT_LAYOUT_CENTER); lv_obj_set_click(new_bar, false); lv_obj_set_size(new_bar, LV_BAR_DEF_WIDTH, LV_BAR_DEF_HEIGHT); - lv_obj_set_style(new_bar, lv_bars_get(LV_BARS_DEF, NULL)); + lv_obj_set_style(new_bar, lv_style_get(LV_STYLE_PRETTY, NULL)); lv_bar_set_value(new_bar, ext->act_value); } else { @@ -99,13 +100,12 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) ext->min_value = ext_copy->min_value; ext->max_value = ext_copy->max_value; ext->act_value = ext_copy->act_value; + ext->style_indic = ext_copy->style_indic; ext->label = lv_label_create(new_bar, ext_copy->label); - /*Refresh the style with new signal function*/ lv_obj_refr_style(new_bar); lv_bar_set_value(new_bar, ext->act_value); - } return new_bar; } @@ -127,7 +127,7 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_bar_ext_t * ext = lv_obj_get_ext(bar); - lv_bars_t * style = lv_obj_get_style(bar); + lv_style_t * style = lv_obj_get_style(bar); point_t p; char buf[LV_BAR_TXT_MAX_LENGTH]; @@ -137,8 +137,7 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) ext->format_str = NULL; break; case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->label, &style->label); - lv_bar_set_value(bar, lv_bar_get_value(bar)); + lv_obj_set_style(ext->label, style); break; default: break; @@ -202,6 +201,20 @@ void lv_bar_set_format_str(lv_obj_t * bar, const char * format) lv_bar_set_value(bar, ext->act_value); } +/** + * Set the style of bar indicator + * @param bar pointer to a bar obeject + * @param style pointer to a style + */ +void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + + ext->style_indic = style; + + lv_obj_inv(bar); +} + /*===================== * Getter functions *====================*/ @@ -218,34 +231,17 @@ int16_t lv_bar_get_value(lv_obj_t * bar) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_bars_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_bars_t style + * Get the style of bar indicator + * @param bar pointer to a bar object + * @return pointer to the bar indicator style */ -lv_bars_t * lv_bars_get(lv_bars_builtin_t style, lv_bars_t * copy) +lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar) { - static bool style_inited = false; + lv_bar_ext_t * ext = lv_obj_get_ext(bar); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_bars_init(); - style_inited = true; - } + if(ext->style_indic == NULL) return lv_obj_get_style(bar); - lv_bars_t *style_p; - - switch(style) { - case LV_BARS_DEF: - style_p = &lv_bars_def; - break; - default: - style_p = &lv_bars_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_bars_t)); - - return style_p; + return ext->style_indic; } /********************** @@ -274,9 +270,7 @@ static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t ancestor_design_f(bar, mask, mode); lv_bar_ext_t * ext = lv_obj_get_ext(bar); - lv_bars_t * style = lv_obj_get_style(bar); area_t bar_area; - uint32_t tmp; area_cpy(&bar_area, &bar->cords); cord_t w = lv_obj_get_width(bar); @@ -291,30 +285,10 @@ static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t } /*Draw the main bar*/ - lv_draw_rect(&bar_area, mask, &style->indic); + lv_style_t * style_indic = lv_bar_get_style_indic(bar); + lv_draw_rect(&bar_area, mask, style_indic); } return true; } -/** - * Initialize the bar styles - */ -static void lv_bars_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_FANCY, &lv_bars_def.bg); /*Background*/ - lv_bars_def.bg.base.color = COLOR_WHITE; - lv_bars_def.bg.gcolor = COLOR_SILVER, - lv_bars_def.bg.bcolor = COLOR_BLACK; - - lv_rects_get(LV_RECTS_FANCY, &lv_bars_def.indic); /*Bar*/ - lv_bars_def.indic.base.color = COLOR_LIME; - lv_bars_def.indic.gcolor = COLOR_GREEN; - lv_bars_def.indic.bcolor = COLOR_BLACK; - lv_bars_def.indic.swidth = 0; - - lv_labels_get(LV_LABELS_TXT, &lv_bars_def.label); /*Label*/ - lv_bars_def.label.line_space = 0; - -} #endif diff --git a/lv_objx/lv_bar.h b/lv_objx/lv_bar.h index fc5b044e7..91fed1a2a 100644 --- a/lv_objx/lv_bar.h +++ b/lv_objx/lv_bar.h @@ -37,30 +37,16 @@ /*Data of bar*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * label; /*Pointer to the label on the bar*/ - int16_t act_value; /*Current value of the bar*/ - int16_t min_value; /*Minimum value of the bar*/ - int16_t max_value; /*Maximum value of the bar*/ - char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ + lv_obj_t * label; /*Pointer to the label on the bar*/ + int16_t act_value; /*Current value of the bar*/ + int16_t min_value; /*Minimum value of the bar*/ + int16_t max_value; /*Maximum value of the bar*/ + char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ + lv_style_t * style_indic; /*Style of the indicator*/ }lv_bar_ext_t; -/*Style of bar*/ -typedef struct -{ - lv_rects_t bg; /*Style of the background (inherited)*/ - lv_rects_t indic; /*Style of the indicator*/ - lv_labels_t label; /*Style of the label*/ - -}lv_bars_t; - -/*Built-in styles of bar*/ -typedef enum -{ - LV_BARS_DEF, -}lv_bars_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -110,14 +96,8 @@ void lv_bar_set_format_str(lv_obj_t * bar, const char * format); */ int16_t lv_bar_get_value(lv_obj_t * bar); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_bars_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_bars_t style - */ -lv_bars_t * lv_bars_get(lv_bars_builtin_t style, lv_bars_t * copy); - +lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar); +void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style); /********************** * MACROS **********************/ diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index 510fd3750..df1036eb0 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -31,14 +31,10 @@ **********************/ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t mode); -static void lv_btns_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_btns_t lv_btns_def; -static lv_btns_t lv_btns_border; -static lv_btns_t lv_btns_transp; static lv_design_f_t ancestor_design_f; @@ -70,6 +66,11 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) ext->rel_action = NULL; ext->lpr_action = NULL; ext->lpr_rep_action = NULL; + ext->styles[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles[LV_BTN_STATE_TPR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); ext->lpr_exec = 0; ext->tgl = 0; @@ -81,7 +82,7 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) /*If no copy do the basic initialization*/ if(copy == NULL) { lv_rect_set_layout(new_btn, LV_RECT_LAYOUT_CENTER); - lv_obj_set_style(new_btn, lv_btns_get(LV_BTNS_DEF, NULL)); + lv_obj_set_style(new_btn, ext->styles[LV_BTN_STATE_REL]); } /*Copy 'copy'*/ else { @@ -91,6 +92,11 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) ext->rel_action = copy_ext->rel_action; ext->lpr_action = copy_ext->lpr_action; ext->lpr_rep_action = copy_ext->lpr_action; + ext->styles[LV_BTN_STATE_REL] = copy_ext->styles[LV_BTN_STATE_REL]; + ext->styles[LV_BTN_STATE_PR] = copy_ext->styles[LV_BTN_STATE_PR]; + ext->styles[LV_BTN_STATE_TREL] = copy_ext->styles[LV_BTN_STATE_TREL]; + ext->styles[LV_BTN_STATE_TPR] = copy_ext->styles[LV_BTN_STATE_TPR]; + ext->styles[LV_BTN_STATE_INA] = copy_ext->styles[LV_BTN_STATE_INA]; ext->tgl = copy_ext->tgl; /*Refresh the style with new signal function*/ @@ -110,19 +116,14 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) { bool valid; - /*On style change preload the style for the rectangle signal*/ - lv_btn_ext_t * ext = lv_obj_get_ext(btn); - lv_btns_t * style = lv_obj_get_style(btn); - if(sign == LV_SIGNAL_STYLE_CHG) { - memcpy(&style->current, &style->state_style[ext->state], sizeof(lv_rects_t)); - } - /* Include the ancient signal function */ valid = lv_rect_signal(btn, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { + lv_btn_ext_t * ext = lv_obj_get_ext(btn); + lv_style_t * style = lv_obj_get_style(btn); lv_btn_state_t state = lv_btn_get_state(btn); bool tgl = lv_btn_get_tgl(btn); @@ -185,7 +186,7 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) case LV_SIGNAL_LONG_PRESS: /*Call the long press action, here 'param' is the caller dispi*/ if(ext->lpr_action != NULL && state != LV_BTN_STATE_INA) { - ext->lpr_exec = 1; + ext->lpr_exec = 1; valid = ext->lpr_action(btn, param); } break; @@ -230,9 +231,7 @@ void lv_btn_set_state(lv_obj_t * btn, lv_btn_state_t state) lv_btn_ext_t * ext = lv_obj_get_ext(btn); if(ext->state != state) { ext->state = state; - lv_btns_t * style = lv_obj_get_style(btn); - memcpy(&style->current, &style->state_style[ext->state], sizeof(lv_rects_t)); - lv_obj_refr_style(btn); + lv_obj_set_style(btn, ext->styles[state]); } } @@ -284,6 +283,28 @@ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action) ext->lpr_rep_action = lpr_rep_action; } +/** + * Set styles of a button is each state + * @param btn pointer to button object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina) +{ + lv_btn_ext_t * ext = lv_obj_get_ext(btn); + ext->styles[LV_BTN_STATE_REL] = rel; + ext->styles[LV_BTN_STATE_PR] = pr; + ext->styles[LV_BTN_STATE_TREL] = trel; + ext->styles[LV_BTN_STATE_TPR] = tpr; + ext->styles[LV_BTN_STATE_INA] = ina; + + lv_obj_set_style(btn, ext->styles[ext->state]); + +} + /*===================== * Getter functions *====================*/ @@ -313,42 +334,21 @@ bool lv_btn_get_tgl(lv_obj_t * btn) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btns_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btns_t style + * Get the style of a button in a given state + * @param btn pointer to a button object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state */ -lv_btns_t * lv_btns_get(lv_btns_builtin_t style, lv_btns_t * copy) +lv_style_t * lv_btn_get_style(lv_obj_t * btn, lv_btn_state_t state) { - static bool style_inited = false; + lv_btn_ext_t * ext = lv_obj_get_ext(btn); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_btns_init(); - style_inited = true; - } + if(ext->styles[state] == NULL) return lv_obj_get_style(btn->par); - lv_btns_t * style_p; - - switch(style) { - case LV_BTNS_DEF: - style_p = &lv_btns_def; - break; - case LV_BTNS_BORDER: - style_p = &lv_btns_border; - break; - case LV_BTNS_TRANSP: - style_p = &lv_btns_transp; - break; - default: - style_p = &lv_btns_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_btns_t)); - - return style_p; + return ext->styles[state]; } + /********************** * STATIC FUNCTIONS **********************/ @@ -367,85 +367,12 @@ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t /* Because of the radius it is not sure the area is covered*/ if(mode == LV_DESIGN_COVER_CHK) { - /*Temporally set a rectangle style for the button to look like as rectangle*/ - lv_rects_t rects_tmp; - lv_btns_t * btns_tmp = lv_obj_get_style(btn); - lv_btn_ext_t * ext = lv_obj_get_ext(btn); - bool ret = false; - memcpy(&rects_tmp, &btns_tmp->state_style[ext->state], sizeof(lv_rects_t)); - btn->style_p = &rects_tmp; - ret = ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - btn->style_p = btns_tmp; /*Reload the original button style*/ + return ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - return ret; } else if(mode == LV_DESIGN_DRAW_MAIN || mode == LV_DESIGN_DRAW_POST) { - area_t area; - lv_obj_get_cords(btn, &area); - - /*Temporally set a rectangle style for the button to draw it as rectangle*/ - lv_rects_t rects_tmp; - lv_btns_t * btns_tmp = lv_obj_get_style(btn); - lv_btn_ext_t * ext = lv_obj_get_ext(btn); - memcpy(&rects_tmp, &btns_tmp->state_style[ext->state], sizeof(lv_rects_t)); - btn->style_p = &rects_tmp; ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ - btn->style_p = btns_tmp; /*Reload the original button style*/ - } return true; } - - -/** - * Initialize the button styles - */ -static void lv_btns_init(void) -{ - - /*Default style*/ - lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_REL]); - lv_btns_def.state_style[LV_BTN_STATE_REL].base.color = COLOR_MAKE(0xcc, 0xe0, 0xf5); - lv_btns_def.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0xa6, 0xc9, 0xed); - lv_btns_def.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x33, 0x99, 0xff); - lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_PR]); - lv_btns_def.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xa6, 0xc9, 0xed); - lv_btns_def.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x60, 0x88, 0xb0); - lv_btns_def.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0x33, 0x99, 0xff); - lv_btns_def.state_style[LV_BTN_STATE_PR].swidth = 3 * lv_btns_def.state_style[LV_BTN_STATE_REL].swidth / 4; - lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_TREL]); - lv_btns_def.state_style[LV_BTN_STATE_TREL].base.color = COLOR_MAKE(0xff, 0xed, 0xd3); - lv_btns_def.state_style[LV_BTN_STATE_TREL].gcolor = COLOR_MAKE(0xfc, 0xc7, 0x7a); - lv_btns_def.state_style[LV_BTN_STATE_TREL].bcolor = COLOR_MAKE(0xff, 0x90, 0x00); - lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_TPR]); - lv_btns_def.state_style[LV_BTN_STATE_TPR].base.color = COLOR_MAKE(0xfc, 0xc7, 0x7a); - lv_btns_def.state_style[LV_BTN_STATE_TPR].gcolor = COLOR_MAKE(0xdd, 0x8a, 0x4e); - lv_btns_def.state_style[LV_BTN_STATE_TPR].bcolor = COLOR_MAKE(0xff, 0x90, 0x00); - lv_btns_def.state_style[LV_BTN_STATE_TPR].swidth = 3 * lv_btns_def.state_style[LV_BTN_STATE_TREL].swidth / 4; - lv_rects_get(LV_RECTS_FANCY, &lv_btns_def.state_style[LV_BTN_STATE_INA]); - lv_btns_def.state_style[LV_BTN_STATE_INA].base.color = COLOR_MAKE(0xe0, 0xe0, 0xe0); - lv_btns_def.state_style[LV_BTN_STATE_INA].gcolor = lv_btns_def.state_style[LV_BTN_STATE_INA].base.color; - lv_btns_def.state_style[LV_BTN_STATE_INA].bcolor = COLOR_MAKE(0x80, 0x80, 0x80); - - - /*Border style*/ - lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_REL]); - lv_btns_border.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x20, 0x20, 0x20); - lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_PR]); - lv_btns_border.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0x60, 0x60, 0x60); - lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_TREL]); - lv_btns_border.state_style[LV_BTN_STATE_TREL].bcolor = COLOR_MAKE(0x00, 0x33, 0xff); - lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_TPR]); - lv_btns_border.state_style[LV_BTN_STATE_TPR].bcolor = COLOR_MAKE(0x00, 0x33, 0x99); - lv_rects_get(LV_RECTS_BORDER, &lv_btns_border.state_style[LV_BTN_STATE_INA]); - lv_btns_border.state_style[LV_BTN_STATE_INA].bcolor = COLOR_MAKE(0xa0, 0xa0, 0xa0); - - /*Transparent style*/ - lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_REL]); - lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_PR]); - lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_TREL]); - lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_TPR]); - lv_rects_get(LV_RECTS_TRANSP, &lv_btns_transp.state_style[LV_BTN_STATE_INA]); -} - #endif diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 976ddfbca..51005de3f 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -31,10 +31,10 @@ /*Button states*/ typedef enum { - LV_BTN_STATE_PR, LV_BTN_STATE_REL, - LV_BTN_STATE_TPR, + LV_BTN_STATE_PR, LV_BTN_STATE_TREL, + LV_BTN_STATE_TPR, LV_BTN_STATE_INA, LV_BTN_STATE_NUM, }lv_btn_state_t; @@ -49,27 +49,13 @@ typedef struct lv_action_t lpr_action; /*A function to call when the button is long pressed (NULL if unused)*/ lv_action_t lpr_rep_action; /*A function to call periodically after long press (NULL if unused)*/ + lv_style_t * styles[LV_BTN_STATE_NUM]; /*Styles in each state*/ + lv_btn_state_t state; /*Current state of the button from 'lv_btn_state_t' enum*/ uint8_t tgl :1; /*1: Toggle enabled*/ uint8_t lpr_exec :1; /*1: Long press action executed (Handled by the library)*/ }lv_btn_ext_t; -/*Style of button*/ -typedef struct -{ - lv_rects_t current; /*Current style according to the state. Library use this. Style of ancestor*/ - /*New style element for this type */ - lv_rects_t state_style[LV_BTN_STATE_NUM]; /*Rectangle styles for each state*/ -}lv_btns_t; - -/*Built-in styles of button*/ -typedef enum -{ - LV_BTNS_DEF, - LV_BTNS_BORDER, - LV_BTNS_TRANSP, -}lv_btns_builtin_t; - /********************** * GLOBAL PROTOTYPES @@ -133,6 +119,8 @@ void lv_btn_set_lpr_action(lv_obj_t * btn, lv_action_t lpr_action); */ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action); +void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); + /** * Get the current state of the button * @param btn pointer to a button object @@ -147,14 +135,7 @@ lv_btn_state_t lv_btn_get_state(lv_obj_t * btn); */ bool lv_btn_get_tgl(lv_obj_t * btn); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btns_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btns_t style - */ -lv_btns_t * lv_btns_get(lv_btns_builtin_t style, lv_btns_t * copy); - +lv_style_t * lv_btn_get_style(lv_obj_t * btn, lv_btn_state_t state); /********************** * MACROS **********************/ diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index c9d414f53..95a498337 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -31,13 +31,10 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ static uint8_t lv_btnm_get_width_unit(const char * btn_str); static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p); static void lv_btnm_create_btns(lv_obj_t * btnm, const char ** map); -static void lv_btnms_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_btnms_t lv_btnms_def; - static const char * lv_btnm_def_map[] = {"Btn1","Btn2", "Btn3","\n", "\002Btn4","Btn5", ""}; @@ -75,17 +72,18 @@ lv_obj_t * lv_btnm_create(lv_obj_t * par, lv_obj_t * copy) ext->btn_areas = NULL; ext->cb = NULL; ext->map_p = NULL; + ext->style_btn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->style_btn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_btnm); lv_obj_set_signal_f(new_btnm, lv_btnm_signal); lv_obj_set_design_f(new_btnm, lv_btnm_design); - /*Init the new button matrix object*/ if(copy == NULL) { - lv_obj_set_size(new_btnm, LV_HOR_RES / 2, LV_VER_RES / 2); - lv_obj_set_style(new_btnm, lv_btnms_get(LV_BTNMS_DEF, NULL)); + lv_obj_set_size(new_btnm, LV_HOR_RES, LV_VER_RES / 2); + lv_obj_set_style(new_btnm, lv_style_get(LV_STYLE_PLAIN, NULL)); lv_btnm_set_map(new_btnm, lv_btnm_def_map); } /*Copy an existing object*/ @@ -114,77 +112,72 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - uint16_t new_btn; area_t btnm_area; area_t btn_area; point_t p; - switch(sign) { - case LV_SIGNAL_CLEANUP: - dm_free(ext->btn_areas); - break; - case LV_SIGNAL_STYLE_CHG: - case LV_SIGNAL_CORD_CHG: - lv_btnm_set_map(btnm, LV_EA(btnm, lv_btnm_ext_t)->map_p); - break; - case LV_SIGNAL_PRESSING: - /*Search the pressed area*/ - lv_dispi_get_point(param, &p); - new_btn = lv_btnm_get_btn_from_point(btnm, &p); - /*Invalidate to old and the new areas*/; - lv_obj_get_cords(btnm, &btnm_area); - if(new_btn != ext->btn_pr) { - lv_dispi_reset_lpr(param); - if(ext->btn_pr != LV_BTNM_PR_NONE) { - area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); - btn_area.x1 += btnm_area.x1; - btn_area.y1 += btnm_area.y1; - btn_area.x2 += btnm_area.x1; - btn_area.y2 += btnm_area.y1; - lv_inv_area(&btn_area); - } - if(new_btn != LV_BTNM_PR_NONE) { - area_cpy(&btn_area, &ext->btn_areas[new_btn]); - btn_area.x1 += btnm_area.x1; - btn_area.y1 += btnm_area.y1; - btn_area.x2 += btnm_area.x1; - btn_area.y2 += btnm_area.y1; - lv_inv_area(&btn_area); - } - } - - ext->btn_pr = new_btn; - break; - case LV_SIGNAL_RELEASED: - case LV_SIGNAL_LONG_PRESS_REP: - if(ext->cb != NULL && - ext->btn_pr != LV_BTNM_PR_NONE) { - uint16_t txt_i = 0; - uint16_t btn_i = 0; - /*Search the next valid text in the map*/ - while(btn_i != ext->btn_pr) { - btn_i ++; - txt_i ++; - if(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; - } - - ext->cb(btnm, txt_i); - } - if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_PR_NONE) { - /*Invalidate to old area*/; - lv_obj_get_cords(btnm, &btnm_area); + if(sign == LV_SIGNAL_CLEANUP) { + dm_free(ext->btn_areas); + } + else if(sign == LV_SIGNAL_STYLE_CHG || sign == LV_SIGNAL_CORD_CHG) { + lv_btnm_set_map(btnm, ext->map_p); + } + else if(sign == LV_SIGNAL_PRESSING) { + uint16_t btn_pr; + /*Search the pressed area*/ + lv_dispi_get_point(param, &p); + btn_pr = lv_btnm_get_btn_from_point(btnm, &p); + /*Invalidate to old and the new areas*/; + lv_obj_get_cords(btnm, &btnm_area); + if(btn_pr != ext->btn_pr) { + lv_dispi_reset_lpr(param); + if(ext->btn_pr != LV_BTNM_PR_NONE) { area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); btn_area.x1 += btnm_area.x1; btn_area.y1 += btnm_area.y1; btn_area.x2 += btnm_area.x1; btn_area.y2 += btnm_area.y1; lv_inv_area(&btn_area); + } + if(btn_pr != LV_BTNM_PR_NONE) { + area_cpy(&btn_area, &ext->btn_areas[btn_pr]); + btn_area.x1 += btnm_area.x1; + btn_area.y1 += btnm_area.y1; + btn_area.x2 += btnm_area.x1; + btn_area.y2 += btnm_area.y1; + lv_inv_area(&btn_area); + } + } - ext->btn_pr = LV_BTNM_PR_NONE; - } - break; - default: - break; + ext->btn_pr = btn_pr; } + else if(sign == LV_SIGNAL_RELEASED || sign == LV_SIGNAL_LONG_PRESS_REP) { + if(ext->cb != NULL && + ext->btn_pr != LV_BTNM_PR_NONE) { + uint16_t txt_i = 0; + uint16_t btn_i = 0; + /*Search the next valid text in the map*/ + while(btn_i != ext->btn_pr) { + btn_i ++; + txt_i ++; + if(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; + } + + ext->cb(btnm, txt_i); + } + if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_PR_NONE) { + /*Invalidate to old area*/; + lv_obj_get_cords(btnm, &btnm_area); + area_cpy(&btn_area, &ext->btn_areas[ext->btn_pr]); + btn_area.x1 += btnm_area.x1; + btn_area.y1 += btnm_area.y1; + btn_area.x2 += btnm_area.x1; + btn_area.y2 += btnm_area.y1; + lv_inv_area(&btn_area); + + ext->btn_pr = LV_BTNM_PR_NONE; + } + } + } return valid; @@ -208,16 +201,17 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) { if(map == NULL) return; - LV_EA(btnm, lv_btnm_ext_t)->map_p = map; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + ext->map_p = map; /*Analyze the map and create the required number of buttons*/ lv_btnm_create_btns(btnm, map); /*Set size and positions of the buttons*/ - lv_btnms_t * btnms = lv_obj_get_style(btnm); - cord_t max_w = lv_obj_get_width(btnm) - 2 * btnms->bg.hpad; - cord_t max_h = lv_obj_get_height(btnm) - 2 * btnms->bg.vpad; - cord_t act_y = btnms->bg.vpad; + lv_style_t * btnms = lv_obj_get_style(btnm); + cord_t max_w = lv_obj_get_width(btnm) - 2 * btnms->hpad; + cord_t max_h = lv_obj_get_height(btnm) - 2 * btnms->vpad; + cord_t act_y = btnms->vpad; /*Count the lines to calculate button height*/ uint8_t line_cnt = 1; @@ -226,7 +220,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) if(strcmp(map[li], "\n") == 0) line_cnt ++; } - cord_t btn_h = max_h - ((line_cnt - 1) * btnms->bg.opad); + cord_t btn_h = max_h - ((line_cnt - 1) * btnms->opad); btn_h = btn_h / line_cnt; /* Count the units and the buttons in a line @@ -237,7 +231,6 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) uint16_t i_tot = 0; /*Act. index in the str map*/ uint16_t btn_i = 0; /*Act. index of button areas*/ const char ** map_p_tmp = map; - lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); /*Count the units and the buttons in a line*/ while(1) { @@ -253,11 +246,11 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) /*Only deal with the non empty lines*/ if(btn_cnt != 0) { /*Calculate the width of all units*/ - cord_t all_unit_w = max_w - ((btn_cnt-1) * btnms->bg.opad); + cord_t all_unit_w = max_w - ((btn_cnt-1) * btnms->opad); /*Set the button size and positions and set the texts*/ uint16_t i; - cord_t act_x = btnms->bg.hpad; + cord_t act_x = btnms->hpad; cord_t act_unit_w; unit_act_cnt = 0; for(i = 0; i < btn_cnt; i++) { @@ -267,7 +260,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) act_unit_w = (all_unit_w * lv_btnm_get_width_unit(map_p_tmp[i])) / unit_cnt; /*Always recalculate act_x because of rounding errors */ - act_x = (unit_act_cnt * all_unit_w) / unit_cnt + i * btnms->bg.opad + btnms->bg.hpad; + act_x = (unit_act_cnt * all_unit_w) / unit_cnt + i * btnms->opad + btnms->hpad; area_set(&ext->btn_areas[btn_i], act_x, act_y, @@ -280,7 +273,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) btn_i ++; } } - act_y += btn_h + btnms->bg.opad; + act_y += btn_h + btnms->opad; if(strlen(map_p_tmp[btn_cnt]) == 0) break; /*Break on end of map*/ map_p_tmp = &map_p_tmp[btn_cnt + 1]; /*Set the map to the next line*/ i_tot ++; /*Skip the '\n'*/ @@ -296,7 +289,22 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map) */ void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb) { - LV_EA(btnm, lv_btnm_ext_t)->cb = cb; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + ext->cb = cb; +} + +/** + * Set the style of the buttons in a given state + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @param style pointer to style + */ +void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_btn_state_t state, lv_style_t * style) +{ + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + if(state == LV_BTN_STATE_REL) ext->style_btn_rel = style; + if(state == LV_BTN_STATE_PR) ext->style_btn_pr = style; + } /*===================== @@ -310,7 +318,8 @@ void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb) */ const char ** lv_btnm_get_map(lv_obj_t * btnm) { - return LV_EA(btnm, lv_btnm_ext_t)->map_p; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + return ext->map_p; } /** @@ -318,41 +327,37 @@ const char ** lv_btnm_get_map(lv_obj_t * btnm) * @param btnm: pointer to button matrix object * @return pointer to the callback function */ -lv_btnm_callback_t lv_btnm_get_cb(lv_obj_t * btnm) +lv_btnm_callback_t lv_btnm_get_action(lv_obj_t * btnm) { - return LV_EA(btnm, lv_btnm_ext_t)->cb; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); + return ext->cb; } - /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btnms_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btnms_t style + * Get the style of buttons in button matrix + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @return pointer the button style in the given state */ -lv_btnms_t * lv_btnms_get(lv_btnms_builtin_t style, lv_btnms_t * copy) +lv_style_t * lv_btnm_get_style_btn(lv_obj_t * btnm, lv_btn_state_t state) { - static bool style_inited = false; + lv_style_t * style; + lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_btnms_init(); - style_inited = true; - } + switch(state) { + case LV_BTN_STATE_PR: + style = ext->style_btn_pr; + break; + case LV_BTN_STATE_REL: + style = ext->style_btn_rel; + break; + default: + style = NULL; + } - lv_btnms_t *style_p; + if(style == NULL) style = lv_obj_get_style(btnm); - switch(style) { - case LV_BTNMS_DEF: - style_p = &lv_btnms_def; - break; - default: - style_p = &lv_btnms_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_btnms_t)); - - return style_p; + return style; } /********************** @@ -380,7 +385,8 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ ancestor_design_f(btnm, mask, mode); lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - lv_btnms_t * style = lv_obj_get_style(btnm); + lv_style_t * style = lv_obj_get_style(btnm); + lv_style_t * btn_style; area_t area_btnm; area_t area_tmp; @@ -402,19 +408,18 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ btn_h = area_get_height(&area_tmp); /*Load the style*/ - lv_btn_state_t state; - state = ext->btn_pr == btn_i ? LV_BTN_STATE_PR : LV_BTN_STATE_REL; + btn_style = lv_btnm_get_style_btn(btnm, ext->btn_pr == btn_i ? LV_BTN_STATE_PR : LV_BTN_STATE_REL); - lv_draw_rect(&area_tmp, mask, &style->btn.state_style[state]); + lv_draw_rect(&area_tmp, mask, btn_style); /*Search the next valid text in the map*/ while(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; /*Calculate the size of the text*/ - const font_t * font = style->label.font; + const font_t * font = style->font; point_t txt_size; txt_get_size(&txt_size, ext->map_p[txt_i], font, - style->label.letter_space, style->label.line_space, + style->letter_space, style->line_space, area_get_width(&area_btnm), TXT_FLAG_NONE); area_tmp.x1 += (btn_w - txt_size.x) / 2; @@ -422,7 +427,7 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ area_tmp.x2 = area_tmp.x1 + txt_size.x; area_tmp.y2 = area_tmp.y1 + txt_size.y; - lv_draw_label(&area_tmp, mask, &style->label, ext->map_p[txt_i], TXT_FLAG_NONE); + lv_draw_label(&area_tmp, mask, style, ext->map_p[txt_i], TXT_FLAG_NONE); txt_i ++; } } @@ -431,25 +436,6 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ return true; } - -/** - * Initialize the button matrix styles - */ -static void lv_btnms_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_PLAIN, &lv_btnms_def.bg); /*Background rectangle style*/ - lv_btnms_def.bg.vpad = LV_DPI / 30; - lv_btnms_def.bg.hpad = LV_DPI / 30; - lv_btnms_def.bg.opad = LV_DPI / 30; - lv_btnms_def.bg.radius = 0; - lv_btnms_def.bg.bwidth = 0; - lv_btns_get(LV_BTNS_DEF, &lv_btnms_def.btn); /*Button style*/ - lv_btnms_def.btn.state_style[LV_BTN_STATE_REL].swidth = 0; - lv_btnms_def.btn.state_style[LV_BTN_STATE_PR].swidth = 0; - lv_labels_get(LV_LABELS_BTN, &lv_btnms_def.label); /*BUtton label style*/ -} - /** * Create the required number of buttons according to a map * @param btnm pointer to button matrix object @@ -487,7 +473,6 @@ static uint8_t lv_btnm_get_width_unit(const char * btn_str) if(btn_str[0] <= '\011') return btn_str[0]; return 1; - } static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p) diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index 851b7eb8b..6b7e434ea 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -50,24 +50,10 @@ typedef struct uint16_t btn_cnt; /*Number of button in 'map_p'(Handled by the library)*/ uint16_t btn_pr; /*Index of the currently pressed button or LV_BTNM_PR_NONE (Handled by the library)*/ lv_btnm_callback_t cb; /*A function to call when a button is releases*/ + lv_style_t * style_btn_rel; /*Style of the released buttons*/ + lv_style_t * style_btn_pr; /*Style of the pressed buttons*/ }lv_btnm_ext_t; -/*Style of button matrix*/ -typedef struct -{ - lv_rects_t bg; /*Style of ancestor*/ - /*New style element for this type */ - lv_btns_t btn; /*Style of the buttons*/ - lv_labels_t label; /*Style of the labels on the buttons*/ -}lv_btnms_t; - -/*Built-in styles of button matrix*/ -typedef enum -{ - LV_BTNMS_DEF, -}lv_btnms_builtin_t; - - /********************** * GLOBAL PROTOTYPES **********************/ @@ -108,6 +94,7 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map); */ void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb); +void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_btn_state_t state, lv_style_t * style); /** * Get the current map of a button matrix * @param btnm pointer to a button matrix object @@ -120,16 +107,9 @@ const char ** lv_btnm_get_map(lv_obj_t * btnm); * @param btnm: pointer to button matrix object * @return pointer to the callback function */ -lv_btnm_callback_t lv_btnm_get_cb(lv_obj_t * btnm); - -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_btnms_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_btnms_t style - */ -lv_btnms_t * lv_btnms_get(lv_btnms_builtin_t style, lv_btnms_t * copy); +lv_btnm_callback_t lv_btnm_get_action(lv_obj_t * btnm); +lv_style_t * lv_btnm_get_style_btn(lv_obj_t * btnm, lv_btn_state_t state); /********************** * MACROS **********************/ diff --git a/lv_objx/lv_cb.c b/lv_objx/lv_cb.c index 64cac2d0c..82a981765 100644 --- a/lv_objx/lv_cb.c +++ b/lv_objx/lv_cb.c @@ -23,12 +23,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_cb_design(lv_obj_t * cb, const area_t * mask, lv_design_mode_t mode); -static void lv_cbs_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_cbs_t lv_cbs_def; static lv_design_f_t ancestor_design_f; /********************** * MACROS @@ -66,17 +64,22 @@ lv_obj_t * lv_cb_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new checkbox object*/ if(copy == NULL) { + ext->bullet = lv_btn_create(new_cb, NULL); + lv_btn_set_styles(new_cb, lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), + lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), + lv_style_get(LV_STYLE_TRANSP, NULL)); lv_rect_set_layout(new_cb, LV_RECT_LAYOUT_ROW_M); lv_rect_set_fit(new_cb, true, true); lv_btn_set_tgl(new_cb, true); - ext->bullet = lv_btn_create(new_cb, NULL); lv_obj_set_click(ext->bullet, false); + lv_btn_set_styles(ext->bullet, lv_style_get(LV_STYLE_BTN_REL, NULL), lv_style_get(LV_STYLE_BTN_PR, NULL), + lv_style_get(LV_STYLE_BTN_TREL, NULL), lv_style_get(LV_STYLE_BTN_TPR, NULL), + lv_style_get(LV_STYLE_BTN_INA, NULL)); ext->label = lv_label_create(new_cb, NULL); + lv_obj_set_style(ext->label, NULL); /*Inherit the style of the parent*/ lv_label_set_text(ext->label, "Check box"); - - lv_obj_set_style(new_cb, lv_cbs_get(LV_CBS_DEF, NULL)); } else { lv_cb_ext_t * copy_ext = lv_obj_get_ext(copy); ext->bullet = lv_btn_create(new_cb, copy_ext->bullet); @@ -106,29 +109,19 @@ bool lv_cb_signal(lv_obj_t * cb, lv_signal_t sign, void * param) valid = lv_btn_signal(cb, sign, param); lv_cb_ext_t * ext = lv_obj_get_ext(cb); - lv_cbs_t * cbs = lv_obj_get_style(cb); + lv_style_t * style = lv_obj_get_style(cb); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_PRESSED: - case LV_SIGNAL_RELEASED: - case LV_SIGNAL_LONG_PRESS: - case LV_SIGNAL_PRESS_LOST: - lv_btn_set_state(ext->bullet, lv_btn_get_state(cb)); - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_size(ext->bullet, cbs->bullet_size, cbs->bullet_size); - lv_obj_set_style(ext->bullet, &cbs->bullet); - lv_obj_set_style(ext->label, &cbs->label); - break; - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - default: - break; + if(sign == LV_SIGNAL_STYLE_CHG) { + lv_obj_set_size(ext->bullet, font_get_height(style->font), font_get_height(style->font)); } + if(sign == LV_SIGNAL_PRESSED || + sign == LV_SIGNAL_RELEASED || + sign == LV_SIGNAL_PRESS_LOST) { + lv_btn_set_state(lv_cb_get_bullet(cb), lv_btn_get_state(cb)); + } } return valid; @@ -167,35 +160,16 @@ const char * lv_cb_get_text(lv_obj_t * cb) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_cbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_cbs_t style + * Get the bullet (lv_btn) of a check box + * @param cb pointer to check box object + * @return pointer to the bullet of the check box (lv_btn) */ -lv_cbs_t * lv_cbs_get(lv_cbs_builtin_t style, lv_cbs_t * copy) +lv_obj_t * lv_cb_get_bullet(lv_obj_t * cb) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_cbs_init(); - style_inited = true; - } - - lv_cbs_t *style_p; - - switch(style) { - case LV_CBS_DEF: - style_p = &lv_cbs_def; - break; - default: - style_p = &lv_cbs_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_cbs_t)); - - return style_p; + lv_cb_ext_t * ext = lv_obj_get_ext(cb); + return ext->bullet; } + /********************** * STATIC FUNCTIONS **********************/ @@ -231,33 +205,4 @@ static bool lv_cb_design(lv_obj_t * cb, const area_t * mask, lv_design_mode_t mo return true; } -/** - * Initialize the rectangle styles - */ -static void lv_cbs_init(void) -{ - /*Default style*/ - - /*Bg style*/ - lv_btns_get(LV_BTNS_TRANSP, &lv_cbs_def.bg); - lv_cbs_def.bg.state_style[LV_BTN_STATE_REL].hpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_REL].vpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_PR].hpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_PR].vpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_TREL].hpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_TREL].vpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_TPR].hpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_TPR].vpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_INA].hpad = LV_DPI / 10; - lv_cbs_def.bg.state_style[LV_BTN_STATE_INA].vpad = LV_DPI / 10; - - /*Bullet style*/ - lv_btns_get(LV_BTNS_DEF, &lv_cbs_def.bullet); - - /*Label*/ - lv_labels_get(LV_LABELS_TXT, &lv_cbs_def.label); - - /*Others*/ - lv_cbs_def.bullet_size = LV_OBJ_DEF_WIDTH / 3; -} #endif diff --git a/lv_objx/lv_cb.h b/lv_objx/lv_cb.h index f3408169d..841d9a388 100644 --- a/lv_objx/lv_cb.h +++ b/lv_objx/lv_cb.h @@ -41,22 +41,6 @@ typedef struct lv_obj_t * label; /*Pointer to label*/ }lv_cb_ext_t; -/*Style of check box*/ -typedef struct -{ - lv_btns_t bg; /*Style of the background button*/ - /*New style element for this type */ - lv_btns_t bullet; /*Style of the bullet*/ - lv_labels_t label; /*Style of the label*/ - cord_t bullet_size; /*Size of bullet (square)*/ -}lv_cbs_t; - -/*Built-in styles of check box*/ -typedef enum -{ - LV_CBS_DEF, /*Default style with transparent background*/ -}lv_cbs_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -91,14 +75,7 @@ void lv_cb_set_text(lv_obj_t * cb, const char * txt); */ const char * lv_cb_get_text(lv_obj_t * cb); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_cbs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_cbs_t style - */ -lv_cbs_t * lv_cbs_get(lv_cbs_builtin_t style, lv_cbs_t * copy); - +lv_obj_t * lv_cb_get_bullet(lv_obj_t * cb); /********************** * MACROS **********************/ diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 608e5f27c..3c253953b 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -29,7 +29,6 @@ * STATIC PROTOTYPES **********************/ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mode_t mode); -static void lv_charts_init(void); static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask); static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask); static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask); @@ -39,7 +38,6 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask); /********************** * STATIC VARIABLES **********************/ -static lv_charts_t lv_charts_def; static lv_design_f_t ancestor_design_f; /********************** @@ -77,6 +75,8 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) ext->vdiv_num = LV_CHART_VDIV_DEF; ext->pnum = LV_CHART_PNUM_DEF; ext->type = LV_CHART_LINE; + ext->data_opa = OPA_COVER; + ext->dark_eff = OPA_50; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_chart); @@ -85,7 +85,7 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new chart background object*/ if(copy == NULL) { - lv_obj_set_style(new_chart, lv_charts_get(LV_CHARTS_DEF, NULL)); + lv_obj_set_style(new_chart, lv_style_get(LV_STYLE_PRETTY, NULL)); } else { lv_chart_ext_t * ext_copy = lv_obj_get_ext(copy); ext->type = ext_copy->type; @@ -94,6 +94,7 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) ext->hdiv_num = ext_copy->hdiv_num; ext->vdiv_num = ext_copy->vdiv_num; ext->pnum = ext_copy->pnum; + ext->data_opa = ext_copy->data_opa; /*Refresh the style with new signal function*/ lv_obj_refr_style(new_chart); @@ -120,17 +121,11 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) if(valid != false) { cord_t ** datal; lv_chart_ext_t * ext = lv_obj_get_ext(chart); - switch(sign) { - case LV_SIGNAL_CLEANUP: - LL_READ(ext->dl_ll, datal) { - dm_free(*datal); - } - - ll_clear(&ext->dl_ll); - - break; - default: - break; + if(sign == LV_SIGNAL_CLEANUP) { + LL_READ(ext->dl_ll, datal) { + dm_free(*datal); + } + ll_clear(&ext->dl_ll); } } @@ -140,20 +135,22 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) /** * Allocate and add a data line to the chart * @param chart pointer to a chart object - * @return pointer to the allocated data lie (an array for the data points) + * @param color color of the data line + * @param width line width/point radius/column width + * @return pointer to the allocated data line (an array for the data points) */ -cord_t * lv_chart_add_dataline(lv_obj_t * chart) +cord_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - cord_t ** dl = ll_ins_head(&ext->dl_ll); + lv_chart_dl_t * dl = ll_ins_head(&ext->dl_ll); cord_t def = (ext->ymax - ext->ymin) >> 2; /*1/4 range as default value*/ if(dl == NULL) return NULL; - *dl = dm_alloc(sizeof(cord_t) * ext->pnum); + dl->points = dm_alloc(sizeof(cord_t) * ext->pnum); uint16_t i; - cord_t * p_tmp = *dl; + cord_t * p_tmp = dl->points; for(i = 0; i < ext->pnum; i++) { *p_tmp = def; p_tmp++; @@ -161,7 +158,7 @@ cord_t * lv_chart_add_dataline(lv_obj_t * chart) ext->dl_num++; - return *dl; + return dl->points; } /** @@ -231,18 +228,39 @@ void lv_chart_set_type(lv_obj_t * chart, lv_chart_type_t type) void lv_chart_set_pnum(lv_obj_t * chart, uint16_t pnum) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - cord_t ** y_data; + lv_chart_dl_t * dl; if(pnum < 1) pnum = 1; - LL_READ_BACK(ext->dl_ll, y_data) { - *y_data = dm_realloc(*y_data, sizeof(cord_t) * pnum); + LL_READ_BACK(ext->dl_ll, dl) { + dl->points = dm_realloc(dl->points, sizeof(cord_t) * pnum); } ext->pnum = pnum; lv_chart_refr(chart); } +/** + * Set the opacity of the data lines + * @param chart pointer to chart object + * @param opa opacity of the data lines + */ +void lv_chart_set_data_opa(lv_obj_t * chart, opa_t opa) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + ext->data_opa = opa; +} + +/** + * Set the dark effect on the bottom of the points or columns + * @param chart pointer to chart object + * @param dark_eff dark effect level (OPA_TRANSP to turn off) + */ +void lv_chart_set_drak_effect(lv_obj_t * chart, opa_t dark_eff) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + ext->dark_eff = dark_eff; +} /** * Shift all data right and set the most right data on a data line * @param chart pointer to chart object @@ -263,6 +281,7 @@ void lv_chart_set_next(lv_obj_t * chart, cord_t * dl, cord_t y) } + /*===================== * Getter functions *====================*/ @@ -292,36 +311,26 @@ uint16_t lv_chart_get_pnum(lv_obj_t * chart) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_charts_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_charts_t style + * Get the opacity of the data lines + * @param chart pointer to chart object + * @return the opacity of the data lines */ -lv_charts_t * lv_charts_get(lv_charts_builtin_t style, lv_charts_t * copy) +opa_t lv_chart_get_data_opa(lv_obj_t * chart) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_charts_init(); - style_inited = true; - } - - lv_charts_t * style_p; - - switch(style) { - case LV_CHARTS_DEF: - style_p = &lv_charts_def; - break; - default: - style_p = &lv_charts_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_charts_t)); - - return style_p; + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + return ext->data_opa; } +/** + * Get the dark effect level on the bottom of the points or columns + * @param chart pointer to chart object + * @return dark effect level (OPA_TRANSP to turn off) + */ +opa_t lv_chart_get_dark_effect(lv_obj_t * chart, opa_t dark_eff) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + return ext->dark_eff; +} /********************** * STATIC FUNCTIONS **********************/ @@ -377,7 +386,7 @@ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mod static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t div_i; point_t p1; @@ -392,7 +401,7 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) p1.y = (int32_t)((int32_t)h * div_i) / (ext->hdiv_num + 1); p1.y += y_ofs; p2.y = p1.y; - lv_draw_line(&p1, &p2, mask, &style->div_line); + lv_draw_line(&p1, &p2, mask, style); } p1.y = 0 + y_ofs; @@ -401,7 +410,7 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) p1.x = (int32_t)((int32_t)w * div_i) / (ext->vdiv_num + 1); p1.x += x_ofs; p2.x = p1.x; - lv_draw_line(&p1, &p2, mask, &style->div_line); + lv_draw_line(&p1, &p2, mask, style); } } @@ -412,7 +421,7 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t i; point_t p1; @@ -422,20 +431,20 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; int32_t y_tmp; - cord_t ** y_data; + lv_chart_dl_t * dl; uint8_t dl_cnt = 0; - lv_lines_t lines; - lv_lines_get(LV_LINES_DEF, &lines); - lines.width = style->width; - lines.base.opa = (uint16_t)((uint16_t)style->bg_rect.base.opa * style->data_opa) >> 8; + lv_style_t lines; + lv_style_get(LV_STYLE_PLAIN, &lines); + lines.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, y_data) { - lines.base.color = style->color[dl_cnt]; + LL_READ_BACK(ext->dl_ll, dl) { + lines.line_width = dl->width; + lines.ccolor = dl->color; p1.x = 0 + x_ofs; p2.x = 0 + x_ofs; - y_tmp = (int32_t)((int32_t) (*y_data)[0] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[0] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); p2.y = h - y_tmp + y_ofs; @@ -445,7 +454,7 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) p2.x = ((w * i) / (ext->pnum - 1)) + x_ofs; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); p2.y = h - y_tmp + y_ofs; @@ -463,7 +472,7 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t i; area_t cir_a; @@ -472,32 +481,32 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; int32_t y_tmp; - cord_t ** y_data; - uint8_t dl_cnt = 0; - lv_rects_t rects; - cord_t rad = style->width; + lv_chart_dl_t * dl; + uint8_t dl_cnt = 0; + lv_style_t rects; + lv_style_get(LV_STYLE_PLAIN, &rects); - lv_rects_get(LV_RECTS_PLAIN, &rects); rects.bwidth = 0; rects.empty = 0; rects.radius = LV_RECT_CIRCLE; - rects.base.opa = (uint16_t)((uint16_t)style->bg_rect.base.opa * style->data_opa) >> 8; + rects.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, y_data) { - rects.base.color = style->color[dl_cnt]; - rects.gcolor = color_mix(COLOR_BLACK, style->color[dl_cnt], style->dark_eff); + LL_READ_BACK(ext->dl_ll, dl) { + rects.radius = dl->width; + rects.mcolor = dl->color; + rects.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dark_eff); for(i = 0; i < ext->pnum; i ++) { cir_a.x1 = ((w * i) / (ext->pnum - 1)) + x_ofs; - cir_a.x2 = cir_a.x1 + rad; - cir_a.x1 -= rad; + cir_a.x2 = cir_a.x1 + rects.radius; + cir_a.x1 -= rects.radius; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); cir_a.y1 = h - y_tmp + y_ofs; - cir_a.y2 = cir_a.y1 + rad; - cir_a.y1 -= rad; + cir_a.y2 = cir_a.y1 + rects.radius; + cir_a.y1 -= rects.radius; lv_draw_rect(&cir_a, mask, &rects); } @@ -513,7 +522,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - lv_charts_t * style = lv_obj_get_style(chart); + lv_style_t * style = lv_obj_get_style(chart); uint8_t i; area_t col_a; @@ -522,23 +531,24 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); int32_t y_tmp; - cord_t ** y_data; - uint8_t dl_cnt = 0; - lv_rects_t rects; + lv_chart_dl_t * dl; + uint8_t dl_cnt = 0; + lv_style_t rects; cord_t col_w = w / (2 * ext->dl_num * ext->pnum); /* Suppose (2 * dl_num) * pnum columns*/ cord_t x_ofs = col_w / 2; /*Shift with a half col.*/ - lv_rects_get(LV_RECTS_PLAIN, &rects); + + lv_style_get(LV_STYLE_PLAIN, &rects); rects.bwidth = 0; rects.empty = 0; rects.radius = 0; - rects.base.opa = (uint16_t)((uint16_t)style->bg_rect.base.opa * style->data_opa) >> 8; + rects.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; col_a.y2 = chart->cords.y2; /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, y_data) { - rects.base.color = style->color[dl_cnt]; - rects.gcolor = color_mix(COLOR_BLACK, style->color[dl_cnt], style->dark_eff); + LL_READ_BACK(ext->dl_ll, dl) { + rects.mcolor = dl->color; + rects.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dark_eff); for(i = 0; i < ext->pnum; i ++) { /* Calculate the x coordinates. Suppose (2 * dl_num) * pnum columns and draw to every second @@ -554,7 +564,7 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) col_a.x1 += x_ofs; col_a.x2 += x_ofs; - y_tmp = (int32_t)((int32_t) (*y_data)[i] - ext->ymin) * h; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); col_a.y1 = h - y_tmp + chart->cords.y1; @@ -566,35 +576,4 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) dl_cnt++; } } - -/** - * Initialize the chart styles - */ -static void lv_charts_init(void) -{ - /*Default style*/ - /* Background */ - lv_rects_get(LV_RECTS_FANCY, &lv_charts_def.bg_rect); - - /* Div. line */ - lv_lines_get(LV_LINES_DEF, &lv_charts_def.div_line); - lv_charts_def.div_line.width = 1 * LV_DOWNSCALE; - lv_charts_def.div_line.base.color = COLOR_GRAY; - lv_charts_def.div_line.base.opa = OPA_50; - - /*Data lines*/ - lv_charts_def.width = 2 * LV_DOWNSCALE; - lv_charts_def.data_opa = OPA_COVER; - lv_charts_def.dark_eff = OPA_70; - lv_charts_def.color[0] = COLOR_RED; - lv_charts_def.color[1] = COLOR_GREEN; - lv_charts_def.color[2] = COLOR_BLUE; - lv_charts_def.color[3] = COLOR_MAGENTA; - lv_charts_def.color[4] = COLOR_CYAN; - lv_charts_def.color[5] = COLOR_YELLOW; - lv_charts_def.color[6] = COLOR_WHITE; - lv_charts_def.color[7] = COLOR_GRAY; - -} - #endif diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index 1b846b587..3e5a39931 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -33,6 +33,13 @@ /********************** * TYPEDEFS **********************/ +typedef struct +{ + cord_t * points; + color_t color; + cord_t width; +}lv_chart_dl_t; + /*Data of chart */ typedef struct { @@ -42,37 +49,23 @@ typedef struct cord_t ymax; /*y max value (used to scale the data)*/ uint8_t hdiv_num; /*Number of horizontal division lines*/ uint8_t vdiv_num; /*Number of vertical division lines*/ - ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores cord_t * )*/ + ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores lv_chart_dl_t)*/ uint16_t pnum; /*Point number in a data line*/ - uint8_t type :2; /*Line, column or point chart (from 'lv_chart_type_t')*/ - uint8_t dl_num; /*Data line number in dl_ll*/ + uint8_t type :3; /*Line, column or point chart (from 'lv_chart_type_t')*/ + uint8_t dl_num; /*Number of data lines in dl_ll*/ + opa_t data_opa; /*Opacity of data lines*/ + opa_t dark_eff; /*Dark level of the point/column bottoms*/ }lv_chart_ext_t; /*Chart types*/ typedef enum { + LV_CHART_NONE = 0, LV_CHART_LINE, LV_CHART_COL, LV_CHART_POINT, }lv_chart_type_t; -/*Style of chart*/ -typedef struct -{ - lv_rects_t bg_rect; /*Style of the ancestor*/ - /*New style element for this type */ - lv_lines_t div_line; - color_t color[LV_CHART_DL_NUM]; /*Line/Point/Col colors */ - cord_t width; /*Data line width or point radius*/ - opa_t data_opa; /*Line/Point/Col opacity*/ - opa_t dark_eff; /*Dark effect on the bottom of points and columns*/ -}lv_charts_t; - -/*Built-in styles of chart*/ -typedef enum -{ - LV_CHARTS_DEF, -}lv_charts_builtin_t; /********************** * GLOBAL PROTOTYPES @@ -99,7 +92,7 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param); * @param chart pointer to a chart object * @return pointer to the allocated data lie (an array for the data points) */ -cord_t * lv_chart_add_dataline(lv_obj_t * chart); +cord_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width); /** * Refresh a chart if its data line has changed @@ -139,6 +132,10 @@ void lv_chart_set_type(lv_obj_t * chart, lv_chart_type_t type); */ void lv_chart_set_pnum(lv_obj_t * chart, uint16_t pnum); +void lv_chart_set_data_opa(lv_obj_t * chart, opa_t opa); + +void lv_chart_set_drak_effect(lv_obj_t * chart, opa_t dark_eff); + /** * Shift all data right and set the most right data on a data line * @param chart pointer to chart object @@ -161,14 +158,8 @@ lv_chart_type_t lv_chart_get_type(lv_obj_t * chart); */ uint16_t lv_chart_get_pnum(lv_obj_t * chart); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_charts_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_charts_t style - */ -lv_charts_t * lv_charts_get(lv_charts_builtin_t style, lv_charts_t * copy); - +opa_t lv_chart_get_data_opa(lv_obj_t * chart); +opa_t lv_chart_get_dark_effect(lv_obj_t * chart, opa_t dark_eff); /********************** * MACROS **********************/ diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 11c85134f..969a8c214 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -29,14 +29,13 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * dispi); static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en); static void lv_ddlist_pos_act_option(lv_obj_t * ddlist); -static void lv_ddlists_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_ddlists_t lv_ddlists_def; static lv_design_f_t ancestor_design_f; -static const char * def_options[] = {"Option 1", "Option 2", "Option 3", ""}; +static const char * def_options[] = {"Option 1", "Option 2", "Option 3","Option 4", "Option 5", "Option 6", + "Option 7", "Option 8", "Option 9","Option 10", "Option 11", "Option 12",""}; /********************** * MACROS **********************/ @@ -71,6 +70,7 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) ext->opened = 0; ext->auto_size = 0; ext->sel_opt = 0; + ext->style_sel = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); /*The signal and design functions are not copied so set them here*/ if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_ddlist); @@ -80,12 +80,16 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new drop down list drop down list*/ if(copy == NULL) { - lv_obj_set_drag(lv_page_get_scrl(new_ddlist), false); + lv_obj_t * scrl = lv_page_get_scrl(new_ddlist); + lv_obj_set_drag(scrl, false); + lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); ext->opt_label = lv_label_create(new_ddlist, NULL); + lv_obj_set_style(ext->opt_label, NULL); /*Inherit the style*/ lv_rect_set_fit(new_ddlist, true, false); lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); - lv_obj_set_style(new_ddlist, lv_ddlists_get(LV_DDLISTS_DEF, NULL)); + lv_page_set_sb_mode(new_ddlist, LV_PAGE_SB_MODE_DRAG); + lv_obj_set_style(new_ddlist, lv_style_get(LV_STYLE_PRETTY, NULL)); lv_ddlist_set_options(new_ddlist, def_options); } /*Copy an existing drop down list*/ @@ -121,19 +125,8 @@ bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); - lv_ddlists_t * style = lv_obj_get_style(ddlist); - - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->opt_label, &style->label); - lv_ddlist_refr_size(ddlist, false); - break; - default: - break; + if(sign == LV_SIGNAL_STYLE_CHG) { + lv_ddlist_refr_size(ddlist, false); } } @@ -209,6 +202,18 @@ void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size) ext->auto_size = auto_size == false ? 0 : 1; } + +/** + * Set the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @param style pointer the new style of the select rectangle + */ +void lv_dlist_set_style_select(lv_obj_t * ddlist, lv_style_t * style) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->style_sel = style; + +} /*===================== * Getter functions *====================*/ @@ -238,7 +243,7 @@ uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist) /** * Get the auto size attribute. - * @param ddlist pointer to a drop down list + * @param ddlist pointer to a drop down list object * @return true: the auto_size is enabled, false: disabled */ bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size) @@ -248,34 +253,17 @@ bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_ddlists_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_ddlists_t style + * Get the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @return pointer the style of the select rectangle */ -lv_ddlists_t * lv_ddlists_get(lv_ddlists_builtin_t style, lv_ddlists_t * copy) +lv_style_t * lv_dlist_get_style_select(lv_obj_t * ddlist) { - static bool style_inited = false; + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + if(ext->style_sel == NULL) return lv_obj_get_style(ddlist); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_ddlists_init(); - style_inited = true; - } + return ext->style_sel; - lv_ddlists_t *style_p; - - switch(style) { - case LV_DDLISTS_DEF: - style_p = &lv_ddlists_def; - break; - default: - style_p = &lv_ddlists_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_ddlists_t)); - - return style_p; } /********************** @@ -306,25 +294,25 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m /*If the list is opened draw a rectangle below the selected item*/ lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); if(ext->opened != 0) { - lv_ddlists_t * style = lv_obj_get_style(ddlist); - const font_t * font = style->label.font; + lv_style_t * style = lv_obj_get_style(ddlist); + const font_t * font = style->font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; area_t rect_area; + lv_style_t * style_page_scrl = lv_obj_get_style(lv_page_get_scrl(ddlist)); rect_area.y1 = ext->opt_label->cords.y1; - rect_area.y1 += ext->sel_opt * (font_h + style->label.line_space); - rect_area.y1 -= style->sel.vpad; + rect_area.y1 += ext->sel_opt * (font_h + style->line_space); + rect_area.y1 -= style->line_space / 2; - rect_area.y2 = rect_area.y1 + font_h + 2 * style->sel.vpad; - rect_area.x1 = ext->opt_label->cords.x1 - style->page.scrl.hpad; + rect_area.y2 = rect_area.y1 + font_h + style->line_space; + rect_area.x1 = ext->opt_label->cords.x1 - style_page_scrl->hpad; rect_area.x2 = rect_area.x1 + lv_obj_get_width(lv_page_get_scrl(ddlist)); - lv_draw_rect(&rect_area, mask, &style->sel); + lv_draw_rect(&rect_area, mask, ext->style_sel); } } /*Post draw when the children are drawn*/ else if(mode == LV_DESIGN_DRAW_POST) { ancestor_design_f(ddlist, mask, mode); - } return true; @@ -386,19 +374,20 @@ static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * disp static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); - lv_ddlists_t * style = lv_obj_get_style(ddlist); + lv_style_t * style = lv_obj_get_style(ddlist); cord_t new_height; if(ext->opened != 0) { /*Open the list*/ - new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->page.bg.vpad; + new_height = lv_obj_get_height(lv_page_get_scrl(ddlist)) + 2 * style->vpad; lv_obj_t * parent = lv_obj_get_parent(ddlist); /*Reduce the height if enabled and required*/ if(ext->auto_size != 0 && new_height + ddlist->cords.y1 > parent->cords.y2) { new_height = parent->cords.y2 - ddlist->cords.y1; } } else { /*Close the list*/ - const font_t * font = style->label.font; + const font_t * font = style->font; + lv_style_t * label_style = lv_obj_get_style(ext->opt_label); cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; - new_height = font_h + 2 * style->sel.vpad; + new_height = font_h + 2 * label_style->line_space; } if(anim_en == false) { lv_obj_set_height(ddlist, new_height); @@ -429,42 +418,14 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); - lv_ddlists_t * style = lv_obj_get_style(ddlist); - const font_t * font = style->label.font; + lv_style_t * style = lv_obj_get_style(ddlist); + const font_t * font = style->font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + lv_style_t * label_style = lv_obj_get_style(ext->opt_label); + lv_obj_t * scrl = lv_page_get_scrl(ddlist); + lv_style_t * style_scrl = lv_obj_get_style(scrl); - lv_obj_set_y(lv_page_get_scrl(ddlist), - -(ext->sel_opt * (font_h + style->label.line_space) + - style->page.scrl.vpad) + style->sel.vpad); - -} - -/** - * Initialize the built-in drop down list styles - */ -static void lv_ddlists_init(void) -{ - /*Plain style*/ - lv_pages_get(LV_PAGES_PAPER, &lv_ddlists_def.page); - lv_ddlists_def.page.bg.base.color = COLOR_WHITE; - lv_ddlists_def.page.bg.gcolor = COLOR_SILVER; - lv_ddlists_def.page.bg.bopa = OPA_50; - lv_ddlists_def.page.bg.swidth = LV_DPI / 8; - - lv_ddlists_def.page.scrl.hpad = LV_DPI / 10; - lv_ddlists_def.page.scrl.vpad = LV_DPI / 4; - lv_ddlists_def.page.scrl.opad = 0; - - lv_ddlists_def.page.sb_mode = LV_PAGE_SB_MODE_OFF; - - lv_labels_get(LV_LABELS_TXT, &lv_ddlists_def.label); - lv_ddlists_def.label.line_space = LV_DPI / 4; - - lv_rects_get(LV_RECTS_PLAIN, &lv_ddlists_def.sel); - lv_ddlists_def.sel.bwidth = 0; - lv_ddlists_def.sel.radius = 0; - lv_ddlists_def.sel.vpad = LV_DPI / 8; - + lv_obj_set_y(scrl, -(ext->sel_opt * (font_h + label_style->line_space) - label_style->line_space) - style_scrl->hpad); } diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 0b7e7e5d1..017f1eb8f 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -28,26 +28,13 @@ typedef struct lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * opt_label; /*Label for the options*/ + lv_style_t * style_sel; /*Style of the selected option*/ lv_action_res_t (*cb)(lv_obj_t *, uint16_t); /*Pointer to function to call when an option is slected*/ uint16_t sel_opt; /*Index of the current option*/ uint8_t opened :1; /*1: The list is opened*/ uint8_t auto_size :1; /*1: Set height to show all options. 0: Set height maximum to the parent bottom*/ }lv_ddlist_ext_t; -/*Style of drop down list*/ -typedef struct -{ - lv_pages_t page; /*Style of ancestor*/ - /*New style element for this type */ - lv_rects_t sel; /*Select the 'selected' rectangle*/ - lv_labels_t label; /*Style of labels*/ -}lv_ddlists_t; - -/*Built-in styles of drop down list*/ -typedef enum -{ - LV_DDLISTS_DEF, /*Default drop down list*/ -}lv_ddlists_builtin_t; /********************** * GLOBAL PROTOTYPES @@ -105,6 +92,8 @@ void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, u */ void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size); +void lv_dlist_set_style_select(lv_obj_t * ddlist, lv_style_t * style); + /** * Get the options of a drop down list * @param ddlist pointer to drop down list object @@ -126,13 +115,7 @@ uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist); */ bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_ddlists_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_ddlists_t style - */ -lv_ddlists_t * lv_ddlists_get(lv_ddlists_builtin_t style, lv_ddlists_t * copy); +lv_style_t * lv_dlist_get_style_select(lv_obj_t * ddlist); /********************** * MACROS diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index bce0ba46e..be7f6b653 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -31,16 +31,12 @@ * STATIC PROTOTYPES **********************/ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t mode); -static void lv_imgs_init(void); static bool lv_img_is_symbol(const char * txt); /********************** * STATIC VARIABLES **********************/ -static lv_imgs_t lv_imgs_def; -static lv_imgs_t lv_imgs_light; -static lv_imgs_t lv_imgs_dark; /********************** * MACROS @@ -83,10 +79,10 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) * and must be screen sized*/ if(par != NULL) ext->auto_size = 1; else ext->auto_size = 0; - lv_obj_set_style(new_img, lv_imgs_get(LV_IMGS_DEF, NULL)); + lv_obj_set_style(new_img, lv_style_get(LV_STYLE_PLAIN, NULL)); } else { ext->auto_size = lv_img_get_auto_size(copy); - lv_img_set_file(new_img, LV_EA(copy, lv_img_ext_t)->fn); + lv_img_set_file(new_img, ext->fn); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_img); @@ -113,6 +109,7 @@ bool lv_img_signal(lv_obj_t * img, lv_signal_t sign, void * param) if(valid != false) { lv_img_ext_t * img_p = lv_obj_get_ext(img); switch(sign) { + /*TODO set file again if style changed with symbols*/ case LV_SIGNAL_CLEANUP: dm_free(img_p->fn); break; @@ -124,46 +121,6 @@ bool lv_img_signal(lv_obj_t * img, lv_signal_t sign, void * param) return valid; } -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_imgs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_imgs_t style - */ -lv_imgs_t * lv_imgs_get(lv_imgs_builtin_t style, lv_imgs_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_imgs_init(); - style_inited = true; - } - - lv_imgs_t * style_p; - - switch(style) { - case LV_IMGS_DEF: - style_p = &lv_imgs_def; - break; - case LV_IMGS_LIGHT: - style_p = &lv_imgs_light; - break; - case LV_IMGS_DARK: - style_p = &lv_imgs_dark; - break; - default: - style_p = &lv_imgs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_imgs_t)); - else memcpy(copy, &lv_imgs_def, sizeof(lv_imgs_t)); - } - - return style_p; -} - /** * Create a file to the RAMFS from a picture data * @param fn file name of the new file (e.g. "pic1", will be available at "U:/pic1") @@ -227,9 +184,9 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) /*Handle symbol texts*/ else { #if LV_IMG_ENABLE_SYMBOLS - lv_imgs_t * imgs = lv_obj_get_style(img); + lv_style_t * style = lv_obj_get_style(img); point_t size; - txt_get_size(&size, fn, imgs->sym_font, 0, 0, LV_CORD_MAX, TXT_FLAG_NONE); + txt_get_size(&size, fn, style->font, 0, 0, LV_CORD_MAX, TXT_FLAG_NONE); ext->w = size.x; ext->h = size.y; ext->transp = 0; @@ -334,7 +291,7 @@ bool lv_img_get_upscale(lv_obj_t * img) */ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t mode) { - lv_imgs_t * imgs_p = lv_obj_get_style(img); + lv_style_t * style = lv_obj_get_style(img); lv_img_ext_t * ext = lv_obj_get_ext(img); if(mode == LV_DESIGN_COVER_CHK) { @@ -350,13 +307,6 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t /*Create a default style for symbol texts*/ #if LV_IMG_ENABLE_SYMBOLS != 0 bool sym = lv_img_is_symbol(ext->fn); - lv_labels_t sym_style; - lv_labels_get(LV_LABELS_TXT, &sym_style); - sym_style.font = imgs_p->sym_font; - sym_style.letter_space = 0; - sym_style.line_space = 0; - sym_style.mid = 0; - sym_style.base.color = imgs_p->base.color; #endif lv_obj_get_cords(img, &cords); @@ -371,10 +321,10 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t for(; cords_tmp.x1 < cords.x2; cords_tmp.x1 += ext->w, cords_tmp.x2 += ext->w) { #if LV_IMG_ENABLE_SYMBOLS == 0 - lv_draw_img(&cords_tmp, mask, imgs_p, opa, ext->fn); + lv_draw_img(&cords_tmp, mask, style, opa, ext->fn); #else - if(sym == false) lv_draw_img(&cords_tmp, mask, imgs_p, ext->fn); - else lv_draw_label(&cords_tmp, mask, &sym_style, ext->fn, TXT_FLAG_NONE); + if(sym == false) lv_draw_img(&cords_tmp, mask, style, ext->fn); + else lv_draw_label(&cords_tmp, mask, style, ext->fn, TXT_FLAG_NONE); #endif } } @@ -405,26 +355,5 @@ static bool lv_img_is_symbol(const char * txt) return true; } -/** - * Initialize the image styles - */ -static void lv_imgs_init(void) -{ - /*Default style*/ - lv_imgs_def.base.color = COLOR_BLACK; - lv_imgs_def.base.opa = OPA_COVER; - lv_imgs_def.recolor_opa = OPA_TRANSP; -#if LV_IMG_ENABLE_SYMBOLS != 0 - lv_imgs_def.sym_font = font_get(LV_IMG_DEF_SYMBOL_FONT); -#endif - /*Dark style*/ - memcpy(&lv_imgs_dark, &lv_imgs_def, sizeof(lv_imgs_t)); - lv_imgs_dark.base.color = COLOR_BLACK; lv_imgs_dark.recolor_opa = OPA_50; - - /*Light style*/ - memcpy(&lv_imgs_light, &lv_imgs_dark, sizeof(lv_imgs_t)); - lv_imgs_light.base.color = COLOR_WHITE; lv_imgs_light.recolor_opa = OPA_50; - -} #endif diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index 69ddd21bb..d4a91fedd 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -49,26 +49,6 @@ typedef struct uint8_t transp :1; /*Transp. bit in the image header (Handled by the library)*/ }lv_img_ext_t; -/*Style of image*/ -typedef struct -{ - lv_objs_t base; /*Style of ancestor*/ - /*New style element for this type */ - opa_t recolor_opa; /*Intensity of recoloring with base.color (OPA_TRANSP, OPA_10 ... OPA_COVER)*/ -#if LV_IMG_ENABLE_SYMBOLS != 0 - const font_t * sym_font; /*Symbol font is the image is used as icon*/ -#endif -}lv_imgs_t; - -/*Built-in styles of image*/ -typedef enum -{ - LV_IMGS_DEF, - LV_IMGS_LIGHT, - LV_IMGS_DARK, -}lv_imgs_builtin_t; - - /* Image header it is compatible with * the result image converter utility*/ typedef struct @@ -79,7 +59,6 @@ typedef struct uint16_t transp :1; /*1: Do not draw LV_IMG_TRANSP_COLOR pixels*/ }lv_img_raw_header_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -101,14 +80,6 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_img_signal(lv_obj_t * img, lv_signal_t sign, void * param); -/** - * Return with a pointer to built-in style and/or copy it to a variable - * @param style a style name from lv_imgs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_imgs_t style - */ -lv_imgs_t * lv_imgs_get(lv_imgs_builtin_t style, lv_imgs_t * copy); - /** * Create a file to the RAMFS from a picture data * @param fn file name of the new file (e.g. "pic1", will be available at "U:/pic1") @@ -154,10 +125,6 @@ bool lv_img_get_auto_size(lv_obj_t * img); */ bool lv_img_get_upscale(lv_obj_t * img); - -lv_imgs_t * lv_imgs_get(lv_imgs_builtin_t style, lv_imgs_t * copy); - - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index 18ab2aa7f..d9c8b37ae 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -49,15 +49,10 @@ **********************/ static bool lv_label_design(lv_obj_t * label, const area_t * mask, lv_design_mode_t mode); static void lv_label_refr_text(lv_obj_t * label); -static void lv_labels_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_labels_t lv_labels_title; -static lv_labels_t lv_labels_txt; -static lv_labels_t lv_labels_btn; - /********************** * MACROS **********************/ @@ -95,7 +90,7 @@ lv_obj_t * lv_label_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new label*/ if(copy == NULL) { lv_obj_set_click(new_label, false); - lv_obj_set_style(new_label, lv_labels_get(LV_LABELS_TXT, NULL)); + lv_obj_set_style(new_label, NULL); lv_label_set_long_mode(new_label, LV_LABEL_LONG_EXPAND); lv_label_set_text(new_label, "Text"); } @@ -354,7 +349,7 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) uint32_t line_start = 0; uint32_t new_line_start = 0; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * style = lv_obj_get_style(label); + lv_style_t * style = lv_obj_get_style(label); const font_t * font = style->font; uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; cord_t y = 0; @@ -396,7 +391,7 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; } - if(style->mid != 0) { + if(style->txt_align != 0) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, font, style->letter_space, flag); @@ -421,7 +416,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) uint32_t line_start = 0; uint32_t new_line_start = 0; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * style = lv_obj_get_style(label); + lv_style_t * style = lv_obj_get_style(label); const font_t * font = style->font; uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; cord_t y = 0; @@ -444,7 +439,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) /*Calculate the x coordinate*/ cord_t x = 0; - if(style->mid != 0) { + if(style->txt_align != 0) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, font, style->letter_space, flag); @@ -469,43 +464,6 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) return i; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_labels_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_labels_t style - */ -lv_labels_t * lv_labels_get(lv_labels_builtin_t style, lv_labels_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_labels_init(); - style_inited = true; - } - - lv_labels_t * style_p; - - switch(style) { - case LV_LABELS_TXT: - style_p = &lv_labels_txt; - break; - case LV_LABELS_TITLE: - style_p = &lv_labels_title; - break; - case LV_LABELS_BTN: - style_p = &lv_labels_btn; - break; - default: - style_p = &lv_labels_txt; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_labels_t)); - - return style_p; -} - /********************** * STATIC FUNCTIONS @@ -554,7 +512,7 @@ static void lv_label_refr_text(lv_obj_t * label) if(ext->txt == NULL) return; cord_t max_w = lv_obj_get_width(label); - lv_labels_t * style = lv_obj_get_style(label); + lv_style_t * style = lv_obj_get_style(label); const font_t * font = style->font; ext->dot_end = LV_LABEL_DOT_END_INV; /*Initialize the dot end index*/ @@ -661,26 +619,4 @@ static void lv_label_refr_text(lv_obj_t * label) lv_obj_inv(label); } -/** - * Initialize the label styles - */ -static void lv_labels_init(void) -{ - /*Text style*/ - lv_objs_get(LV_OBJS_PLAIN, &lv_labels_txt.base); - lv_labels_txt.base.color = COLOR_MAKE(0x20, 0x20, 0x20); - lv_labels_txt.font = font_get(LV_FONT_DEFAULT); - lv_labels_txt.letter_space = 1 * LV_DOWNSCALE; - lv_labels_txt.line_space = 2 * LV_DOWNSCALE; - lv_labels_txt.mid = 0; - - memcpy(&lv_labels_btn, &lv_labels_txt, sizeof(lv_labels_t)); - lv_labels_btn.base.color = COLOR_MAKE(0x20, 0x20, 0x20); - lv_labels_btn.mid = 1; - - memcpy(&lv_labels_title, &lv_labels_txt, sizeof(lv_labels_t)); - lv_labels_title.letter_space = 4 * LV_DOWNSCALE; - lv_labels_title.line_space = 4 * LV_DOWNSCALE; - lv_labels_title.mid = 0; -} #endif diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index bae3dc3c5..2254e2baa 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -47,25 +47,6 @@ typedef struct uint8_t recolor :1; /*Enable in-line letter re-coloring*/ }lv_label_ext_t; -/*Style of label*/ -typedef struct -{ - lv_objs_t base; /*Style of ancestor*/ - /*New style element for this type */ - const font_t * font; /*Pointer to a font*/ - cord_t letter_space; /*Letter space in px*/ - cord_t line_space; /*Line space in px*/ - uint8_t mid:1; /*1: Align the lines into the middle*/ -}lv_labels_t; - -/*Built-in styles of label*/ -typedef enum -{ - LV_LABELS_TXT, /*General text style*/ - LV_LABELS_TITLE, /*Like text style but greater spaces*/ - LV_LABELS_BTN, /*Mid. aligned style for buttons*/ -}lv_labels_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -168,14 +149,6 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos); */ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_labels_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_labels_t style - */ -lv_labels_t * lv_labels_get(lv_labels_builtin_t style, lv_labels_t * copy); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index edb89632f..057c59e6e 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -29,14 +29,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t mode); -static void lv_leds_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_leds_t lv_leds_red; -static lv_leds_t lv_leds_green; - static lv_design_f_t ancestor_design_f; /********************** @@ -75,7 +71,7 @@ lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new led object*/ if(copy == NULL) { - lv_obj_set_style(new_led, lv_leds_get(LV_LEDS_RED, NULL)); + lv_obj_set_style(new_led, lv_style_get(LV_STYLE_PRETTY_COLOR, NULL)); lv_obj_set_size(new_led, LV_LED_WIDTH_DEF, LV_LED_HEIGHT_DEF); } /*Copy an existing object*/ @@ -183,40 +179,6 @@ uint8_t lv_led_get_bright(lv_obj_t * led) return ext->bright; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_leds_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_leds_t style - */ -lv_leds_t * lv_leds_get(lv_leds_builtin_t style, lv_leds_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_leds_init(); - style_inited = true; - } - - lv_leds_t *style_p; - - switch(style) { - case LV_LEDS_RED: - style_p = &lv_leds_red; - break; - case LV_LEDS_GREEN: - style_p = &lv_leds_green; - break; - default: - style_p = &lv_leds_red; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_leds_t)); - - return style_p; -} - /********************** * STATIC FUNCTIONS **********************/ @@ -239,18 +201,18 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t } else if(mode == LV_DESIGN_DRAW_MAIN) { /*Make darker colors in a temporary style according to the brightness*/ lv_led_ext_t * ext = lv_obj_get_ext(led); - lv_leds_t * style = lv_obj_get_style(led); + lv_style_t * style = lv_obj_get_style(led); /*Create a temporal style*/ - lv_leds_t leds_tmp; + lv_style_t leds_tmp; memcpy(&leds_tmp, style, sizeof(leds_tmp)); /*Mix. the color with black proportionally with brightness*/ - leds_tmp.bg_rect.base.color = color_mix(leds_tmp.bg_rect.base.color, COLOR_BLACK, ext->bright); - leds_tmp.bg_rect.gcolor = color_mix(leds_tmp.bg_rect.gcolor, COLOR_BLACK, ext->bright); + leds_tmp.mcolor = color_mix(leds_tmp.mcolor, COLOR_BLACK, ext->bright); + leds_tmp.gcolor = color_mix(leds_tmp.gcolor, COLOR_BLACK, ext->bright); /*Set the current swidth according to brightness proportionally between LV_LED_BRIGHT_OFF and LV_LED_BRIGHT_ON*/ - leds_tmp.bg_rect.swidth = (uint16_t)(uint16_t)(ext->bright * style->bg_rect.swidth) >> 8; + leds_tmp.swidth = (uint16_t)(uint16_t)(ext->bright * style->swidth) >> 8; led->style_p = &leds_tmp; ancestor_design_f(led, mask, mode); @@ -259,29 +221,4 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t return true; } -/** - * Initialize the led styles - */ -static void lv_leds_init(void) -{ - /*Default style (red)*/ - lv_rects_get(LV_RECTS_PLAIN, &lv_leds_red.bg_rect); - lv_leds_red.bg_rect.base.color = COLOR_RED; - lv_leds_red.bg_rect.gcolor = COLOR_MARRON, - lv_leds_red.bg_rect.bcolor = COLOR_MAKE(0x40, 0x00, 0x00); - lv_leds_red.bg_rect.scolor = COLOR_RED; - lv_leds_red.bg_rect.bwidth = 3 * LV_DOWNSCALE; - lv_leds_red.bg_rect.bopa = OPA_50; - lv_leds_red.bg_rect.swidth = LV_DPI / 4; - lv_leds_red.bg_rect.radius = LV_RECT_CIRCLE; - - - /* Green style */ - memcpy(&lv_leds_green, &lv_leds_red, sizeof(lv_leds_t)); - lv_leds_green.bg_rect.base.color = COLOR_LIME; - lv_leds_green.bg_rect.gcolor = COLOR_GREEN; - lv_leds_green.bg_rect.bcolor = COLOR_MAKE(0x00, 0x40, 0x00); - lv_leds_green.bg_rect.scolor = COLOR_LIME; -} - #endif diff --git a/lv_objx/lv_led.h b/lv_objx/lv_led.h index f746cb35f..86a876c13 100644 --- a/lv_objx/lv_led.h +++ b/lv_objx/lv_led.h @@ -35,20 +35,6 @@ typedef struct uint8_t bright; /*Current brightness of the LED (0..255)*/ }lv_led_ext_t; -/*Style of led*/ -typedef struct -{ - lv_rects_t bg_rect; /*Style of ancestor*/ - /*New style element for this type */ -}lv_leds_t; - -/*Built-in styles of led*/ -typedef enum -{ - LV_LEDS_RED, /*Red LED style*/ - LV_LEDS_GREEN, /*Green LED style*/ -}lv_leds_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -102,15 +88,6 @@ void lv_led_tgl(lv_obj_t * led); */ uint8_t lv_led_get_bright(lv_obj_t * led); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_leds_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_leds_t style - */ -lv_leds_t * lv_leds_get(lv_leds_builtin_t style, lv_leds_t * copy); - - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_line.c b/lv_objx/lv_line.c index 48985b9ac..41a8423d2 100644 --- a/lv_objx/lv_line.c +++ b/lv_objx/lv_line.c @@ -34,12 +34,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_t mode); -static void lv_lines_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_lines_t lv_lines_def; /********************** * MACROS @@ -74,7 +72,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new rectangle*/ if(copy == NULL) { - lv_obj_set_style(new_line, lv_lines_get(LV_LINES_DEF, NULL)); + lv_obj_set_style(new_line, lv_style_get(LV_STYLE_PLAIN, NULL)); } /*Copy an existing object*/ else { @@ -82,8 +80,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) lv_line_set_y_inv(new_line,lv_line_get_y_inv(copy)); lv_line_set_auto_size(new_line,lv_line_get_auto_size(copy)); lv_line_set_upscale(new_line,lv_line_get_upscale(copy)); - lv_line_set_points(new_line, LV_EA(copy, lv_line_ext_t)->point_array, - LV_EA(copy, lv_line_ext_t)->point_num); + lv_line_set_points(new_line, ext->point_array, ext->point_num); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_line); } @@ -147,8 +144,8 @@ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point ymax = MATH_MAX(point_a[i].y * us, ymax); } - lv_lines_t * lines = lv_obj_get_style(line); - lv_obj_set_size(line, xmax + lines->width, ymax + lines->width); + lv_style_t * lines = lv_obj_get_style(line); + lv_obj_set_size(line, xmax + lines->line_width, ymax + lines->line_width); } } @@ -241,36 +238,6 @@ bool lv_line_get_upscale(lv_obj_t * line) return ext->upscale == 0 ? false : true; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lines_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lines_t style - */ -lv_lines_t * lv_lines_get(lv_lines_builtin_t style, lv_lines_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_lines_init(); - style_inited = true; - } - - lv_lines_t *style_p; - - switch(style) { - case LV_LINES_DEF: - style_p = &lv_lines_def; - break; - default: - style_p = &lv_lines_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_lines_t)); - - return style_p; -} /********************** * STATIC FUNCTIONS **********************/ @@ -294,7 +261,7 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ if(ext->point_num == 0 || ext->point_array == NULL) return false; - lv_lines_t * style = lv_obj_get_style(line); + lv_style_t * style = lv_obj_get_style(line); area_t area; lv_obj_get_cords(line, &area); cord_t x_ofs = area.x1; @@ -327,14 +294,4 @@ static bool lv_line_design(lv_obj_t * line, const area_t * mask, lv_design_mode_ return true; } -/** - * Initialize the line styles - */ -static void lv_lines_init(void) -{ - /*Default style*/ - lv_lines_def.width = LV_DPI / 25; - lv_lines_def.base.color = COLOR_RED; - lv_lines_def.base.opa = OPA_COVER; -} #endif diff --git a/lv_objx/lv_line.h b/lv_objx/lv_line.h index 07b4e73d3..0815988ef 100644 --- a/lv_objx/lv_line.h +++ b/lv_objx/lv_line.h @@ -33,20 +33,6 @@ typedef struct uint8_t upscale :1; /*1: upscale coordinates with LV_DOWNSCALE*/ }lv_line_ext_t; -/*Style of line*/ -typedef struct -{ - lv_objs_t base; /*Style of ancestor*/ - /*New style element for this type */ - cord_t width; /*Line width*/ -}lv_lines_t; - -/*Built-in styles of line*/ -typedef enum -{ - LV_LINES_DEF, -}lv_lines_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -121,14 +107,6 @@ bool lv_line_get_y_inv(lv_obj_t * line); */ bool lv_line_get_upscale(lv_obj_t * line); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lines_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lines_t style - */ -lv_lines_t * lv_lines_get(lv_lines_builtin_t style, lv_lines_t * copy); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index 77bc23813..878655728 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -28,13 +28,10 @@ #if 0 static bool lv_list_design(lv_obj_t * list, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_lists_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_lists_t lv_lists_def; -static lv_lists_t lv_lists_transp; /********************** * MACROS @@ -62,13 +59,22 @@ lv_obj_t * lv_list_create(lv_obj_t * par, lv_obj_t * copy) lv_list_ext_t * ext = lv_obj_alloc_ext(new_list, sizeof(lv_list_ext_t)); dm_assert(ext); + ext->width_sb = 0; + ext->styles_liste[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles_liste[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles_liste[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles_liste[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles_liste[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); + lv_obj_set_signal_f(new_list, lv_list_signal); /*Init the new list object*/ if(copy == NULL) { - lv_obj_set_size_us(new_list, 120, 150); - lv_obj_set_style(new_list, lv_lists_get(LV_LISTS_DEF, NULL)); - lv_rect_set_layout(LV_EA(new_list, lv_list_ext_t)->page.scrl, LV_LIST_LAYOUT_DEF); + lv_obj_set_size_us(new_list, 2 * LV_DPI, 3 * LV_DPI); + lv_rect_set_layout(ext->page.scrl, LV_LIST_LAYOUT_DEF); + lv_obj_set_style(new_list, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); + lv_obj_set_style(lv_page_get_scrl(new_list), lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_page_set_sb_mode(new_list, LV_PAGE_SB_MODE_AUTO); } else { /*Refresh the style with new signal function*/ lv_obj_refr_style(new_list); @@ -89,15 +95,6 @@ bool lv_list_signal(lv_obj_t * list, lv_signal_t sign, void * param) /* Include the ancient signal function */ valid = lv_page_signal(list, sign, param); - - /* The object can be deleted so check its validity and then - * make the object specific signal handling */ - if(valid != false) { - switch(sign) { - default: - break; - } - } return valid; } @@ -112,12 +109,16 @@ bool lv_list_signal(lv_obj_t * list, lv_signal_t sign, void * param) */ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, lv_action_t rel_action) { - lv_lists_t * lists = lv_obj_get_style(list); + lv_style_t * style = lv_obj_get_style(list); + lv_list_ext_t * ext = lv_obj_get_ext(list); /*Create a list element with the image an the text*/ lv_obj_t * liste; liste = lv_btn_create(list, NULL); - lv_obj_set_style(liste, &lists->liste_btn); + lv_btn_set_styles(liste, ext->styles_liste[LV_BTN_STATE_REL], ext->styles_liste[LV_BTN_STATE_PR], + ext->styles_liste[LV_BTN_STATE_TREL], ext->styles_liste[LV_BTN_STATE_TPR], + ext->styles_liste[LV_BTN_STATE_INA]); + lv_btn_set_rel_action(liste, rel_action); lv_page_glue_obj(liste, true); lv_rect_set_layout(liste, LV_RECT_LAYOUT_ROW_M); @@ -126,28 +127,26 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l if(img_fn != NULL && img_fn[0] != '\0') { lv_obj_t * img = lv_img_create(liste, NULL); lv_img_set_file(img, img_fn); - lv_obj_set_style(img, &lists->liste_img); + lv_obj_set_style(img, ext->styles_liste[LV_BTN_STATE_REL]); lv_obj_set_click(img, false); } if(txt != NULL) { lv_obj_t * label = lv_label_create(liste, NULL); lv_label_set_text(label, txt); - lv_obj_set_style(label,&lists->liste_label); + lv_obj_set_style(label, ext->styles_liste[LV_BTN_STATE_REL]); lv_obj_set_click(label, false); } - lv_lists_t * style = lv_obj_get_style(list); - /*Make the size adjustment*/ - cord_t w = lv_obj_get_width(list); - cord_t hpad_tot = lists->page.bg.hpad + lists->page.scrl.hpad; + lv_style_t * style_scrl = lv_obj_get_style(lv_page_get_scrl(list)); + cord_t hpad_tot = style->hpad + style_scrl->hpad; w -= hpad_tot * 2; /*Make place for the scrollbar if hpad_tot is too small*/ - if(style->width_sb != 0) { - if(hpad_tot < lists->page.sb_width) w -= lists->page.sb_width - hpad_tot; + if(ext->width_sb != 0) { + if(hpad_tot < ext->page.sb_width) w -= ext->page.sb_width - hpad_tot; } lv_obj_set_width(liste, w); @@ -203,6 +202,33 @@ void lv_list_down(lv_obj_t * list) * Setter functions *====================*/ +/** + * Set styles of the list elements of a list in each state + * @param list pointer to list object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + ext->styles_liste[LV_BTN_STATE_REL] = rel; + ext->styles_liste[LV_BTN_STATE_PR] = pr; + ext->styles_liste[LV_BTN_STATE_TREL] = trel; + ext->styles_liste[LV_BTN_STATE_TPR] = tpr; + ext->styles_liste[LV_BTN_STATE_INA] = ina; + + lv_obj_t * liste = lv_obj_get_child(list, NULL); + + while(liste != NULL) { + lv_btn_set_styles(liste, rel, pr, trel, tpr, ina); + liste = lv_obj_get_child(list, liste); + } + +} /*===================== * Getter functions @@ -220,38 +246,20 @@ const char * lv_list_element_get_txt(lv_obj_t * liste) return lv_label_get_text(label); } + /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lists_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lists_t style + * Get the style of the list elements in a given state + * @param list pointer to a button object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state */ -lv_lists_t * lv_lists_get(lv_lists_builtin_t style, lv_lists_t * list) +lv_style_t * lv_list_get_style_liste(lv_obj_t * list, lv_btn_state_t state) { - static bool style_inited = false; + lv_list_ext_t * ext = lv_obj_get_ext(list); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_lists_init(); - style_inited = true; - } + if(ext->styles_liste[state] == NULL) return lv_obj_get_style(list); - lv_lists_t *style_p; - - switch(style) { - case LV_LISTS_DEF: - style_p = &lv_lists_def; - break; - case LV_LISTS_TRANSP: - style_p = &lv_lists_transp; - break; - default: - style_p = &lv_lists_def; - } - - if(list != NULL) memcpy(list, style_p, sizeof(lv_lists_t)); - - return style_p; + return ext->styles_liste[state]; } @@ -283,41 +291,4 @@ static bool lv_list_design(lv_obj_t * list, const area_t * mask, lv_design_mode_ } #endif -/** - * Initialize the list styles - */ -static void lv_lists_init(void) -{ - /*Default style*/ - lv_pages_get(LV_PAGES_MENU, &lv_lists_def.page); - - lv_rects_get(LV_RECTS_TRANSP, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL]); - lv_rects_get(LV_RECTS_PLAIN, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR]); - lv_rects_get(LV_RECTS_TRANSP, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL]); - lv_rects_get(LV_RECTS_PLAIN, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR]); - lv_rects_get(LV_RECTS_PLAIN, &lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA]); - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL].hpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL].vpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_REL].opad = LV_DPI / 6; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].hpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].vpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].opad = LV_DPI / 6; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_PR].radius = 0; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL].hpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL].vpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TREL].opad = LV_DPI / 6; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].hpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].vpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].opad = LV_DPI / 6; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_TPR].radius = 0; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].hpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].vpad = LV_DPI / 4; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].opad = LV_DPI / 6; - lv_lists_def.liste_btn.state_style[LV_BTN_STATE_INA].radius = 0; - lv_labels_get(LV_LABELS_BTN, &lv_lists_def.liste_label); /*List element label style*/ - lv_imgs_get(LV_IMGS_DEF, &lv_lists_def.liste_img); /*List element image style*/ - - memcpy(&lv_lists_transp, &lv_lists_def, sizeof(lv_lists_t)); - lv_pages_get(LV_PAGES_TRANSP, &lv_lists_transp.page); -} #endif diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index cbb4c1147..377f4a61b 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -43,27 +43,10 @@ typedef struct { lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ - /*No new data*/ + lv_style_t * styles_liste[LV_BTN_STATE_NUM]; /*Styles of the list element buttons*/ + uint8_t width_sb :1; /*1: Keep space for the scrollbar*/ }lv_list_ext_t; -/*Style of list*/ -typedef struct -{ - lv_pages_t page; /*Style of ancestor*/ - /*New style element for this type */ - lv_btns_t liste_btn; /*List element button style*/ - lv_labels_t liste_label; /*List element label style*/ - lv_imgs_t liste_img; /*List element image style*/ - uint8_t width_sb :1; /*1: Keep space for the scrollbar*/ -}lv_lists_t; - -/*Built-in styles of list*/ -typedef enum -{ - LV_LISTS_DEF, /*Default list style. Transparent background, visible scrlollable object*/ - LV_LISTS_TRANSP, /*Transparent list style. Transparent background and scrollable object*/ -}lv_lists_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -106,6 +89,7 @@ void lv_list_up(lv_obj_t * list); */ void lv_list_down(lv_obj_t * list); +void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); /** * Get the text of a list element * @param liste pointer to list element @@ -113,14 +97,7 @@ void lv_list_down(lv_obj_t * list); */ const char * lv_list_element_get_txt(lv_obj_t * liste); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_lists_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_lists_t style - */ -lv_lists_t * lv_lists_get(lv_lists_builtin_t style, lv_lists_t * list); - +lv_style_t * lv_list_get_style_liste(lv_obj_t * list, lv_btn_state_t state); /********************** * MACROS **********************/ diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index 3bc4e7106..1de658004 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -32,18 +32,12 @@ #if 0 /*Unused*/ static bool lv_mbox_design(lv_obj_t * mbox, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_mboxs_init(void); static void lv_mbox_realign(lv_obj_t * mbox); static void lv_mbox_disable_fit(lv_obj_t * mbox); /********************** * STATIC VARIABLES **********************/ -static lv_mboxs_t lv_mboxs_def; /*Default message box style*/ -static lv_mboxs_t lv_mboxs_info; -static lv_mboxs_t lv_mboxs_warn; -static lv_mboxs_t lv_mboxs_err; - /********************** * MACROS **********************/ @@ -72,8 +66,12 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) lv_mbox_ext_t * ext = lv_obj_alloc_ext(new_mbox, sizeof(lv_mbox_ext_t)); dm_assert(ext); ext->txt = NULL; - ext->title = NULL; ext->btnh = NULL; + ext->styles_btn[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles_btn[LV_STYLE_BTN_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles_btn[LV_STYLE_BTN_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles_btn[LV_STYLE_BTN_TPR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles_btn[LV_STYLE_BTN_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_f(new_mbox, lv_mbox_signal); @@ -86,24 +84,25 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) ext->txt = lv_label_create(new_mbox, NULL); lv_label_set_text(ext->txt, "Text of the message box"); - lv_obj_set_style(new_mbox, lv_mboxs_get(LV_MBOXS_DEF, NULL)); + lv_obj_set_style(new_mbox, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing message box*/ else { lv_mbox_ext_t * copy_ext = lv_obj_get_ext(copy); ext->txt = lv_label_create(new_mbox, copy_ext->txt); - lv_mbox_set_title(new_mbox, lv_mbox_get_title(copy)); /*Copy the buttons and the label on them*/ if(copy_ext->btnh != NULL) { - lv_obj_t * btn; - const char * btn_txt; - btn = lv_obj_get_child(copy_ext->btnh, NULL); - while(btn != NULL) { - btn_txt = lv_label_get_text(lv_obj_get_child(btn, NULL)); - lv_mbox_add_btn(new_mbox, btn_txt, LV_EA(btn, lv_btn_ext_t)->rel_action); - btn = lv_obj_get_child(copy_ext->btnh, btn); + lv_obj_t * btn_copy; + const char * btn_txt_copy; + lv_btn_ext_t * btn_ext_copy; + btn_copy = lv_obj_get_child(copy_ext->btnh, NULL); + while(btn_copy != NULL) { + btn_txt_copy = lv_label_get_text(lv_obj_get_child(btn_copy, NULL)); + btn_ext_copy = lv_obj_get_ext(btn_copy); + lv_mbox_add_btn(new_mbox, btn_txt_copy, btn_ext_copy->rel_action); + btn_copy = lv_obj_get_child(copy_ext->btnh, btn_copy); } } /*Refresh the style with new signal function*/ @@ -133,86 +132,104 @@ bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - lv_mboxs_t * style = lv_obj_get_style(mbox); - lv_obj_t * btn; - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - case LV_SIGNAL_CORD_CHG: - /*If the size is changed refresh the message box*/ - if(area_get_width(param) != lv_obj_get_width(mbox) || - area_get_height(param) != lv_obj_get_height(mbox)) { - lv_mbox_realign(mbox); - } - break; - case LV_SIGNAL_LONG_PRESS: + if(sign == LV_SIGNAL_CORD_CHG) { + /*If the size is changed refresh the message box*/ + if(area_get_width(param) != lv_obj_get_width(mbox) || + area_get_height(param) != lv_obj_get_height(mbox)) { + lv_mbox_realign(mbox); + } + } + else if(sign == LV_SIGNAL_LONG_PRESS) { #if LV_MBOX_ANIM_TIME != 0 - lv_mbox_start_auto_close(mbox, 0); + lv_mbox_start_auto_close(mbox, 0); #else - lv_obj_del(mbox); - valid = false; + lv_obj_del(mbox); + valid = false; #endif - lv_dispi_wait_release(param); - break; - case LV_SIGNAL_STYLE_CHG: - if(ext->title != NULL) lv_obj_set_style(ext->title, &style->title); - lv_obj_set_style(ext->txt, &style->txt); - if(ext->btnh != NULL) lv_obj_set_style(ext->btnh, &style->btnh); + lv_dispi_wait_release(param); + } + else if(sign == LV_SIGNAL_STYLE_CHG) { + lv_obj_set_style(ext->txt, ext->styles_btn[LV_BTN_STATE_REL]); - /*Refresh all the buttons*/ - if(ext->btnh != NULL) { - btn = lv_obj_get_child(ext->btnh, NULL); - while(btn != NULL) { - /*Refresh the next button's style*/ - lv_obj_set_style(btn, &style->btn); + /*Refresh all the buttons*/ + if(ext->btnh != NULL) { + lv_obj_t * btn; + btn = lv_obj_get_child(ext->btnh, NULL); + while(btn != NULL) { + /*Refresh the next button's style*/ + lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], + ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], + ext->styles_btn[LV_BTN_STATE_INA]); - /*Refresh the button label too*/ - lv_obj_set_style(lv_obj_get_child(btn, NULL), &style->btn_label); - btn = lv_obj_get_child(ext->btnh, btn); - } - } - break; - default: - break; - } + /*Refresh the button label too*/ + lv_obj_set_style(lv_obj_get_child(btn, NULL), ext->styles_btn[LV_BTN_STATE_REL]); + btn = lv_obj_get_child(ext->btnh, btn); + } + } + } } return valid; } +/** + * A release action which can be assigned to a message box button to close it + * @param btn pointer to the released button + * @param dispi pointer to the caller display input + * @return always lv_action_res_t because the button is deleted with the mesage box + */ +lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi) +{ + lv_obj_t * mbox = lv_mbox_get_from_btn(btn); + + lv_obj_del(mbox); + + return LV_ACTION_RES_INV; +} + +/** + * Add a button to the message box + * @param mbox pointer to message box object + * @param btn_txt the text of the button + * @param rel_action a function which will be called when the button is released + * @return pointer to the created button (lv_btn) + */ +lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action) +{ + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + + /*Create a button if it is not existed yet*/ + if(ext->btnh == NULL) { + ext->btnh = lv_rect_create(mbox, NULL); + lv_obj_set_style(ext->btnh, lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_obj_set_click(ext->btnh, false); + lv_rect_set_fit(ext->btnh, false, true); + lv_rect_set_layout(ext->btnh, LV_RECT_LAYOUT_PRETTY); + } + + lv_obj_t * btn; + btn = lv_btn_create(ext->btnh, NULL); + lv_btn_set_rel_action(btn, rel_action); + lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], + ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], + ext->styles_btn[LV_BTN_STATE_INA]); + lv_rect_set_fit(btn, true, true); + + lv_obj_t * label; + label = lv_label_create(btn, NULL); + lv_obj_set_style(label, ext->styles_btn[LV_BTN_STATE_REL]); + lv_label_set_text(label, btn_txt); + + lv_mbox_realign(mbox); + + return btn; +} + /*===================== * Setter functions *====================*/ -/** - * Set the title of the message box - * @param mbox pointer to a message box - * @param title a '\0' terminated character string which will be the message box title - */ -void lv_mbox_set_title(lv_obj_t * mbox, const char * title) -{ - lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - lv_mboxs_t * style = lv_obj_get_style(mbox); - - if(title[0] != '\0') { - if(ext->title == NULL) { - ext->title = lv_label_create(mbox, NULL); - lv_obj_set_style(ext->title, &style->title); - /*Set the other parents again. It will look like they were created later */ - lv_obj_set_parent(ext->txt, mbox); - if(ext->btnh != NULL) lv_obj_set_parent(ext->btnh, mbox); - } - lv_label_set_text(ext->title, title); - } else if(ext->title != NULL) { - lv_obj_del(ext->title); - ext->title = NULL; - } - - lv_mbox_realign(mbox); -} - /** * Set the text of the message box * @param mbox pointer to a message box @@ -227,55 +244,30 @@ void lv_mbox_set_text(lv_obj_t * mbox, const char * txt) } /** - * Add a button to the message box - * @param mbox pointer to message box object - * @param btn_txt the text of the button - * @param rel_action a function which will be called when the button is relesed - * @return pointer to the created button (lv_btn) + * Set styles of the buttons of a message box in each state + * @param mbox pointer to a message box object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state */ -lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action) +void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina) { - lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - lv_mboxs_t * style = lv_obj_get_style(mbox); + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - /*Create a button if it is not existed yet*/ - if(ext->btnh == NULL) { - ext->btnh = lv_rect_create(mbox, NULL); - lv_obj_set_style(ext->btnh, &style->btnh); - lv_obj_set_click(ext->btnh, false); - lv_rect_set_fit(ext->btnh, false, true); - lv_rect_set_layout(ext->btnh, LV_RECT_LAYOUT_PRETTY); - } + ext->styles_btn[LV_BTN_STATE_REL] = rel; + ext->styles_btn[LV_BTN_STATE_PR] = pr; + ext->styles_btn[LV_BTN_STATE_TREL] = trel; + ext->styles_btn[LV_BTN_STATE_TPR] = tpr; + ext->styles_btn[LV_BTN_STATE_INA] = ina; - lv_obj_t * btn; - btn = lv_btn_create(ext->btnh, NULL); - lv_btn_set_rel_action(btn, rel_action); - lv_obj_set_style(btn, &style->btn); - lv_rect_set_fit(btn, true, true); + lv_obj_t * btn = lv_obj_get_child(ext->btnh, NULL); - lv_obj_t * label; - label = lv_label_create(btn, NULL); - lv_obj_set_style(label, &style->btn_label); - lv_label_set_text(label, btn_txt); - - lv_mbox_realign(mbox); - - return btn; -} - -/** - * A release action which can be assigned to a message box button to close it - * @param btn pointer to the released button - * @param dispi pointer to the caller display input - * @return always lv_action_res_t because the button is deleted with the mesage box - */ -lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi) -{ - lv_obj_t * mbox = lv_mbox_get_from_btn(btn); - - lv_obj_del(mbox); - - return LV_ACTION_RES_INV; + while(btn != NULL) { + lv_btn_set_styles(btn, rel, pr, trel, tpr, ina); + btn = lv_obj_get_child(mbox, btn); + } } /** @@ -311,18 +303,6 @@ void lv_mbox_stop_auto_close(lv_obj_t * mbox) * Getter functions *====================*/ -/** - * get the title of the message box - * @param mbox pointer to a message box object - * @return pointer to the title of the message box - */ -const char * lv_mbox_get_title(lv_obj_t * mbox) -{ - lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - - return ext->title == NULL ? "" : lv_label_get_text(ext->title); -} - /** * Get the text of the message box * @param mbox pointer to a message box object @@ -349,52 +329,21 @@ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn) return mbox; } - /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_mboxs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_mboxs_t style + * Get the style of the buttons on a message box + * @param mbox pointer to a message box object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state */ -lv_mboxs_t * lv_mboxs_get(lv_mboxs_builtin_t style, lv_mboxs_t * copy) +lv_style_t * lv_mbox_get_style_btn(lv_obj_t * mbox, lv_btn_state_t state) { - static bool style_inited = false; + lv_btn_ext_t * ext = lv_obj_get_ext(mbox); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_mboxs_init(); - style_inited = true; - } + if(ext->styles[state] == NULL) return lv_obj_get_style(mbox); - lv_mboxs_t *style_p; - - switch(style) { - case LV_MBOXS_DEF: - style_p = &lv_mboxs_def; - break; - case LV_MBOXS_INFO: - style_p = &lv_mboxs_info; - break; - case LV_MBOXS_WARN: - style_p = &lv_mboxs_warn; - break; - case LV_MBOXS_ERR: - style_p = &lv_mboxs_err; - break; - default: - style_p = &lv_mboxs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_mboxs_t)); - else memcpy(copy, &lv_mboxs_def, sizeof(lv_mboxs_t)); - } - - return style_p; + return ext->styles[state]; } - - /********************** * STATIC FUNCTIONS **********************/ @@ -436,7 +385,6 @@ static void lv_mbox_realign(lv_obj_t * mbox) /*Set the button holder width to the width of the text and title*/ if(ext->btnh != NULL) { - cord_t title_w = ext->title == NULL ? 0 :lv_obj_get_width(ext->title); cord_t txt_w = lv_obj_get_width(ext->txt); cord_t btn_w = 0; lv_obj_t * btn; @@ -446,8 +394,7 @@ static void lv_mbox_realign(lv_obj_t * mbox) btn = lv_obj_get_child(ext->btnh, btn); } - cord_t w = MATH_MAX(title_w, txt_w); - w = MATH_MAX(w, btn_w); + cord_t w = MATH_MAX(txt_w, btn_w); lv_obj_set_width(ext->btnh, w ); } } @@ -461,60 +408,4 @@ static void lv_mbox_disable_fit(lv_obj_t * mbox) lv_rect_set_fit(mbox, false, false); } -/** - * Initialize the message box styles - */ -static void lv_mboxs_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_FANCY, &lv_mboxs_def.bg); - - lv_btns_get(LV_BTNS_DEF, &lv_mboxs_def.btn); - lv_labels_get(LV_LABELS_TITLE, &lv_mboxs_def.title); - lv_labels_get(LV_LABELS_TXT, &lv_mboxs_def.txt); - lv_labels_get(LV_LABELS_BTN, &lv_mboxs_def.btn_label); - lv_rects_get(LV_RECTS_TRANSP, &lv_mboxs_def.btnh); - lv_mboxs_def.btnh.hpad = 0; - lv_mboxs_def.btnh.vpad = 0; - - memcpy(&lv_mboxs_info, &lv_mboxs_def, sizeof(lv_mboxs_t)); - lv_mboxs_info.bg.base.color = COLOR_BLACK; - lv_mboxs_info.bg.gcolor = COLOR_BLACK; - lv_mboxs_info.bg.bcolor = COLOR_WHITE; - lv_mboxs_info.title.base.color = COLOR_WHITE; - lv_mboxs_info.txt.base.color = COLOR_WHITE; - lv_mboxs_info.txt.letter_space = 2 * LV_DOWNSCALE; - - lv_btns_get(LV_BTNS_BORDER, &lv_mboxs_info.btn); - lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].bcolor = COLOR_SILVER; - lv_mboxs_info.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_WHITE; - lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_GRAY; - lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_GRAY; - lv_mboxs_info.btn.state_style[LV_BTN_STATE_REL].bopa = OPA_COVER; - lv_mboxs_info.btn.state_style[LV_BTN_STATE_PR].bopa = OPA_COVER; - lv_mboxs_info.btn_label.base.color = COLOR_WHITE; - - memcpy(&lv_mboxs_warn, &lv_mboxs_info, sizeof(lv_mboxs_t)); - lv_mboxs_warn.bg.base.color = COLOR_MAKE(0xff, 0xb2, 0x66); - lv_mboxs_warn.bg.gcolor = COLOR_MAKE(0xff, 0xad, 0x29); - lv_mboxs_warn.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.btn.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xa8, 0x6e, 0x33); - lv_mboxs_warn.btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0xa8, 0x6e, 0x33); - lv_mboxs_warn.title.base.color = COLOR_MAKE(0x10, 0x10, 0x10); - lv_mboxs_warn.txt.base.color = COLOR_MAKE(0x10, 0x10, 0x10);; - lv_mboxs_warn.btn_label.base.color = COLOR_MAKE(0x10, 0x10, 0x10); - - memcpy(&lv_mboxs_err, &lv_mboxs_warn, sizeof(lv_mboxs_t)); - lv_mboxs_err.bg.base.color = COLOR_MAKE(0xff, 0x66, 0x66); - lv_mboxs_err.bg.gcolor = COLOR_MAKE(0x99, 0x22, 0x22); - lv_mboxs_err.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_BLACK; - lv_mboxs_err.btn.state_style[LV_BTN_STATE_PR].bcolor = COLOR_BLACK; - lv_mboxs_err.btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0x70, 0x00, 0x00); - lv_mboxs_err.btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x70, 0x00, 0x00); - lv_mboxs_err.title.base.color = COLOR_BLACK; - lv_mboxs_err.txt.base.color = COLOR_BLACK; - lv_mboxs_err.btn_label.base.color = COLOR_BLACK; -} - #endif diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 5cf8fcbcc..62a218982 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -44,33 +44,11 @@ typedef struct { lv_rect_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * title; /*Title of the message box*/ lv_obj_t * txt; /*Text of the message box*/ lv_obj_t * btnh; /*Holder of the buttons*/ + lv_style_t * styles_btn[LV_BTN_STATE_NUM]; /*Style of the buttons*/ }lv_mbox_ext_t; - -/*Style of message box*/ -typedef struct -{ - lv_rects_t bg; /*Style of ancestor*/ - /*New style element for this type */ - lv_labels_t title; /*Style of the title*/ - lv_labels_t txt; /*Style of the text*/ - lv_rects_t btnh; /*Style of the button holder*/ - lv_btns_t btn; /*Style of the buttons*/ - lv_labels_t btn_label; /*Style of the label on the buttons*/ -}lv_mboxs_t; - -/*Built-in styles of message box*/ -typedef enum -{ - LV_MBOXS_DEF, - LV_MBOXS_INFO, - LV_MBOXS_WARN, - LV_MBOXS_ERR, -}lv_mboxs_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -92,20 +70,13 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param); -/** - * Set the title of the message box - * @param mbox pointer to a message box - * @param title a '\0' terminated character string which will be the message box title - */ -void lv_mbox_set_title(lv_obj_t * mbox, const char * title); - /** * Set the text of the message box * @param mbox pointer to a message box * @param txt a '\0' terminated character string which will be the message box text */ void lv_mbox_set_text(lv_obj_t * mbox, const char * txt); - +void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); /** * Add a button to the message box * @param mbox pointer to message box object @@ -136,13 +107,6 @@ void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout); */ void lv_mbox_stop_auto_close(lv_obj_t * mbox); -/** - * get the title of the message box - * @param mbox pointer to a message box object - * @return pointer to the title of the message box - */ -const char * lv_mbox_get_title(lv_obj_t * mbox); - /** * Get the text of the message box * @param mbox pointer to a message box object @@ -158,14 +122,6 @@ const char * lv_mbox_get_txt(lv_obj_t * mbox); */ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_mboxs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_mboxs_t style - */ -lv_mboxs_t * lv_mboxs_get(lv_mboxs_builtin_t style, lv_mboxs_t * copy); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 2d9d47cdf..d77499d8a 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -34,15 +34,10 @@ static void lv_page_sb_refresh(lv_obj_t * main); static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_t mode); static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param); -static void lv_pages_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_pages_t lv_pages_def; -static lv_pages_t lv_pages_paper; -static lv_pages_t lv_pages_menu; -static lv_pages_t lv_pages_transp; static lv_design_f_t ancestor_design_f; /********************** @@ -77,19 +72,22 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) ext->rel_action = NULL; ext->sbh_draw = 0; ext->sbv_draw = 0; + ext->style_sb = lv_style_get(LV_STYLE_PRETTY, NULL); + ext->sb_width = LV_DPI / 8; + ext->sb_mode = LV_PAGE_SB_MODE_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_page); /*Init the new page object*/ if(copy == NULL) { - lv_pages_t * style = lv_pages_get(LV_PAGES_DEF, NULL); + lv_style_t * style = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); ext->scrl = lv_rect_create(new_page, NULL); lv_obj_set_signal_f(ext->scrl, lv_scrl_signal); lv_obj_set_drag(ext->scrl, true); lv_obj_set_drag_throw(ext->scrl, true); lv_obj_set_protect(ext->scrl, LV_PROTECT_PARENT); lv_rect_set_fit(ext->scrl, true, true); - lv_obj_set_style(ext->scrl, &style->scrl); + lv_obj_set_style(ext->scrl, lv_style_get(LV_STYLE_PRETTY, NULL)); /* Add the signal function only if 'scrolling' is created * because everything has to be ready before any signal is received*/ @@ -136,7 +134,7 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) * make the object specific signal handling */ if(obj_valid != false) { lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); + lv_style_t * style = lv_obj_get_style(page); lv_obj_t * child; switch(sign) { case LV_SIGNAL_CHILD_CHG: /*Move children to the scrollable object*/ @@ -153,11 +151,10 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: - area_set_height(&ext->sbh, style->sb_width); - area_set_width(&ext->sbv, style->sb_width); - lv_obj_set_style(ext->scrl, &style->scrl); + area_set_height(&ext->sbh, ext->sb_width); + area_set_width(&ext->sbv, ext->sb_width); - if(style->sb_mode == LV_PAGE_SB_MODE_ON) { + if(ext->sb_mode == LV_PAGE_SB_MODE_ON) { ext->sbh_draw = 1; ext->sbv_draw = 1; } else { @@ -226,10 +223,10 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) area_t page_cords; area_t obj_cords; lv_obj_t * page = lv_obj_get_parent(scrl); - lv_pages_t * style = lv_obj_get_style(page); + lv_style_t * page_style = lv_obj_get_style(page); lv_page_ext_t * page_ext = lv_obj_get_ext(page); - cord_t hpad = style->bg.hpad; - cord_t vpad = style->bg.vpad; + cord_t hpad = page_style->hpad; + cord_t vpad = page_style->vpad; switch(sign) { case LV_SIGNAL_CORD_CHG: @@ -281,9 +278,9 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) break; case LV_SIGNAL_DRAG_BEGIN: - if(style->sb_mode == LV_PAGE_SB_MODE_DRAG ) { - cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg.hpad); - cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg.vpad); + if(page_ext->sb_mode == LV_PAGE_SB_MODE_DRAG ) { + cord_t sbh_pad = MATH_MAX(page_ext->sb_width, page_style->hpad); + cord_t sbv_pad = MATH_MAX(page_ext->sb_width, page_style->vpad); if(area_get_height(&page_ext->sbv) < lv_obj_get_height(scrl) - 2 * sbv_pad) { page_ext->sbv_draw = 1; } @@ -294,7 +291,7 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) break; case LV_SIGNAL_DRAG_END: - if(style->sb_mode == LV_PAGE_SB_MODE_DRAG) { + if(page_ext->sb_mode == LV_PAGE_SB_MODE_DRAG) { area_t sb_area_tmp; if(page_ext->sbh_draw != 0) { area_cpy(&sb_area_tmp, &page_ext->sbh); @@ -363,6 +360,41 @@ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action) ext->pr_action = pr_action; } +/** + * Set the scroll bar width on a page + * @param page pointer to a page object + * @param sb_width the new scroll bar width in pixels + */ +void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + ext->sb_width = sb_width; + lv_obj_inv(page); +} + +/** + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @param sb_mode the new mode from 'lv_page_sb_mode_t' enum + */ +void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + ext->sb_mode = sb_mode; + lv_obj_inv(page); +} + +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @param style pointer to a style for the scroll bars + */ +void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + ext->style_sb = style; + lv_obj_inv(page); +} /** * Glue the object to the page. After it the page can be moved (dragged) with this object too. @@ -384,7 +416,9 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue) void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) { lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); + lv_style_t * style = lv_obj_get_style(page); + lv_obj_t * scrl = lv_page_get_scrl(page); + lv_style_t * style_scrl = lv_obj_get_style(scrl); cord_t obj_y = obj->cords.y1 - ext->scrl->cords.y1; cord_t obj_h = lv_obj_get_height(obj); @@ -401,8 +435,8 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) if((obj_h <= page_h && top_err > 0) || (obj_h > page_h && top_err < bot_err)) { /*Calculate a new position and to let scrable_rects.vpad space above*/ - scrlable_y = -(obj_y - style->scrl.vpad - style->bg.vpad); - scrlable_y += style->scrl.vpad; + scrlable_y = -(obj_y - style_scrl->vpad - style->vpad); + scrlable_y += style_scrl->vpad; refr = true; } /*Out of the page on the bottom*/ @@ -411,7 +445,7 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) /*Calculate a new position and to let scrable_rects.vpad space below*/ scrlable_y = -obj_y; scrlable_y += page_h - obj_h; - scrlable_y -= style->scrl.vpad; + scrlable_y -= style_scrl->vpad; refr = true; } @@ -455,45 +489,39 @@ lv_obj_t * lv_page_get_scrl(lv_obj_t * page) return ext->scrl; } +/** + * Get the scroll bar width on a page + * @param page pointer to a page object + * @return the scroll bar width in pixels + */ +cord_t lv_page_get_sb_width(lv_obj_t * page) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + return ext->sb_width; +} /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pages_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pages_t style + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @return the mode from 'lv_page_sb_mode_t' enum */ -lv_pages_t * lv_pages_get(lv_pages_builtin_t style, lv_pages_t * copy) +lv_page_sb_mode_t lv_page_get_sb_mode(lv_obj_t * page) { - static bool style_inited = false; + lv_page_ext_t * ext = lv_obj_get_ext(page); + return ext->sb_mode; +} - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_pages_init(); - style_inited = true; - } +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @return pointer to a style for the scroll bars + */ +lv_style_t * lv_page_get_style_sb(lv_obj_t * page) +{ + lv_page_ext_t * ext = lv_obj_get_ext(page); + if(ext->style_sb == NULL) return lv_obj_get_style(page); - lv_pages_t * style_p; - - switch(style) { - case LV_PAGES_DEF: - style_p = &lv_pages_def; - break; - case LV_PAGES_PAPER: - style_p = &lv_pages_paper; - break; - case LV_PAGES_MENU: - style_p = &lv_pages_menu; - break; - case LV_PAGES_TRANSP: - style_p = &lv_pages_transp; - break; - default: - style_p = &lv_pages_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_pages_t)); - - return style_p; + else return ext->style_sb; } /********************** @@ -519,7 +547,6 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ } else if(mode == LV_DESIGN_DRAW_POST) { /*Draw the scroll bars finally*/ ancestor_design_f(page, mask, mode); lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); /*Draw the scrollbars*/ area_t sb_area; @@ -530,7 +557,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ sb_area.y1 += page->cords.y1; sb_area.x2 += page->cords.x1; sb_area.y2 += page->cords.y1; - lv_draw_rect(&sb_area, mask, &style->sb); + lv_draw_rect(&sb_area, mask, ext->style_sb); } if(ext->sbv_draw != 0) { @@ -540,7 +567,7 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ sb_area.y1 += page->cords.y1; sb_area.x2 += page->cords.x1; sb_area.y2 += page->cords.y1; - lv_draw_rect(&sb_area, mask, &style->sb); + lv_draw_rect(&sb_area, mask, ext->style_sb); } } @@ -559,38 +586,38 @@ static void lv_page_sb_refresh(lv_obj_t * page) * - horizontal and vertical scrollbars can overlap on the corners * - if the page has radius the scrollbar can be out of the radius */ - lv_page_ext_t * page_ext = lv_obj_get_ext(page); - lv_pages_t * style = lv_obj_get_style(page); - lv_obj_t * scrl = page_ext->scrl; + lv_page_ext_t * ext = lv_obj_get_ext(page); + lv_style_t * style = lv_obj_get_style(page); + lv_obj_t * scrl = ext->scrl; cord_t size_tmp; cord_t scrl_w = lv_obj_get_width(scrl); cord_t scrl_h = lv_obj_get_height(scrl); - cord_t hpad = style->bg.hpad; - cord_t vpad = style->bg.vpad; + cord_t hpad = style->hpad; + cord_t vpad = style->vpad; cord_t obj_w = lv_obj_get_width(page); cord_t obj_h = lv_obj_get_height(page); - cord_t sbh_pad = MATH_MAX(style->sb_width, style->bg.hpad); - cord_t sbv_pad = MATH_MAX(style->sb_width, style->bg.vpad); + cord_t sbh_pad = MATH_MAX(ext->sb_width, style->hpad); + cord_t sbv_pad = MATH_MAX(ext->sb_width, style->vpad); - if(style->sb_mode == LV_PAGE_SB_MODE_OFF) return; + if(ext->sb_mode == LV_PAGE_SB_MODE_OFF) return; - if(style->sb_mode == LV_PAGE_SB_MODE_ON) { - page_ext->sbh_draw = 1; - page_ext->sbv_draw = 1; + if(ext->sb_mode == LV_PAGE_SB_MODE_ON) { + ext->sbh_draw = 1; + ext->sbv_draw = 1; } /*Invalidate the current (old) scrollbar areas*/ area_t sb_area_tmp; - if(page_ext->sbh_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbh); + if(ext->sbh_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbh); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; sb_area_tmp.y2 += page->cords.y2; lv_inv_area(&sb_area_tmp); } - if(page_ext->sbv_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbv); + if(ext->sbv_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbv); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; @@ -600,48 +627,48 @@ static void lv_page_sb_refresh(lv_obj_t * page) /*Horizontal scrollbar*/ if(scrl_w <= obj_w - 2 * hpad) { /*Full sized scroll bar*/ - area_set_width(&page_ext->sbh, obj_w - 2 * sbh_pad); - area_set_pos(&page_ext->sbh, sbh_pad, obj_h - style->sb_width); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbh_draw = 0; + area_set_width(&ext->sbh, obj_w - 2 * sbh_pad); + area_set_pos(&ext->sbh, sbh_pad, obj_h - ext->sb_width); + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbh_draw = 0; } else { size_tmp = (obj_w * (obj_w - (2 * sbh_pad))) / (scrl_w + 2 * hpad); - area_set_width(&page_ext->sbh, size_tmp); + area_set_width(&ext->sbh, size_tmp); - area_set_pos(&page_ext->sbh, sbh_pad + + area_set_pos(&ext->sbh, sbh_pad + (-(lv_obj_get_x(scrl) - hpad) * (obj_w - size_tmp - 2 * sbh_pad)) / - (scrl_w + 2 * hpad - obj_w ), obj_h - style->sb_width); + (scrl_w + 2 * hpad - obj_w ), obj_h - ext->sb_width); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbh_draw = 1; + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbh_draw = 1; } /*Vertical scrollbar*/ if(scrl_h <= obj_h - 2 * vpad) { /*Full sized scroll bar*/ - area_set_height(&page_ext->sbv, obj_h - 2 * sbv_pad); - area_set_pos(&page_ext->sbv, obj_w - style->sb_width, sbv_pad); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbv_draw = 0; + area_set_height(&ext->sbv, obj_h - 2 * sbv_pad); + area_set_pos(&ext->sbv, obj_w - ext->sb_width, sbv_pad); + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbv_draw = 0; } else { size_tmp = (obj_h * (obj_h - (2 * sbv_pad))) / (scrl_h + 2 * vpad); - area_set_height(&page_ext->sbv, size_tmp); + area_set_height(&ext->sbv, size_tmp); - area_set_pos(&page_ext->sbv, obj_w - style->sb_width, + area_set_pos(&ext->sbv, obj_w - ext->sb_width, sbv_pad + (-(lv_obj_get_y(scrl) - vpad) * (obj_h - size_tmp - 2 * sbv_pad)) / (scrl_h + 2 * vpad - obj_h )); - if(style->sb_mode == LV_PAGE_SB_MODE_AUTO) page_ext->sbv_draw = 1; + if(ext->sb_mode == LV_PAGE_SB_MODE_AUTO) ext->sbv_draw = 1; } /*Invalidate the new scrollbar areas*/ - if(page_ext->sbh_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbh); + if(ext->sbh_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbh); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; sb_area_tmp.y2 += page->cords.y2; lv_inv_area(&sb_area_tmp); } - if(page_ext->sbv_draw != 0) { - area_cpy(&sb_area_tmp, &page_ext->sbv); + if(ext->sbv_draw != 0) { + area_cpy(&sb_area_tmp, &ext->sbv); sb_area_tmp.x1 += page->cords.x1; sb_area_tmp.y1 += page->cords.y1; sb_area_tmp.x2 += page->cords.x2; @@ -650,61 +677,4 @@ static void lv_page_sb_refresh(lv_obj_t * page) } } -/** - * Initialize the page styles - */ -static void lv_pages_init(void) -{ - /*Deafult style*/ - lv_rects_get(LV_RECTS_FANCY, &lv_pages_def.bg); - lv_pages_def.bg.swidth = 0; - lv_rects_get(LV_RECTS_PLAIN, &lv_pages_def.scrl); - lv_rects_get(LV_RECTS_PLAIN, &lv_pages_def.sb); - lv_pages_def.sb.base.opa = OPA_70; - lv_pages_def.sb.base.color = COLOR_SILVER; - lv_pages_def.sb.gcolor = COLOR_GRAY; - lv_pages_def.sb.bcolor = COLOR_GRAY; - lv_pages_def.sb.bopa = OPA_COVER; - lv_pages_def.sb.bwidth = LV_DPI / 50 == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 50; - lv_pages_def.sb.radius = LV_RECT_CIRCLE; - lv_pages_def.sb_width = LV_DPI / 6; - lv_pages_def.sb_mode = LV_PAGE_SB_MODE_ON; - - /*Paper style*/ - lv_rects_get(LV_RECTS_FANCY, &lv_pages_paper.bg); - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_paper.scrl); - lv_pages_paper.scrl.hpad = LV_DPI / 4; - lv_pages_paper.scrl.vpad = LV_DPI / 4; - lv_pages_paper.scrl.opad = LV_DPI / 3; - lv_pages_paper.bg.hpad = 0; - lv_pages_paper.bg.vpad = 0; - lv_pages_paper.bg.opad = 0; - lv_pages_paper.bg.base.color = COLOR_WHITE; - lv_pages_paper.bg.gcolor = COLOR_SILVER; - memcpy(&lv_pages_paper.sb, &lv_pages_def.sb, sizeof(lv_rects_t)); - lv_pages_paper.sb_width = LV_DPI / 6; - lv_pages_paper.sb_mode = LV_PAGE_SB_MODE_AUTO; - - /*Menu style*/ - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_menu.bg); - lv_rects_get(LV_RECTS_PLAIN, &lv_pages_menu.scrl); - lv_pages_menu.scrl.hpad = 0; - lv_pages_menu.scrl.vpad = 0; - lv_pages_menu.scrl.opad = LV_DPI / 6; - lv_pages_menu.bg.hpad = 0; - lv_pages_menu.bg.vpad = 0; - lv_pages_menu.bg.opad = 0; - lv_pages_menu.scrl.base.color = COLOR_SILVER; - lv_pages_menu.scrl.gcolor = COLOR_SILVER; - memcpy(&lv_pages_menu.sb, &lv_pages_def.sb, sizeof(lv_rects_t)); - lv_pages_menu.sb_width = LV_DPI / 6; - lv_pages_menu.sb_mode = LV_PAGE_SB_MODE_AUTO; - - /*Transparent style*/ - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_transp.bg); - lv_rects_get(LV_RECTS_TRANSP, &lv_pages_transp.scrl); - memcpy(&lv_pages_transp.sb, &lv_pages_def.sb, sizeof(lv_rects_t)); - lv_pages_transp.sb_width = LV_DPI / 6; - lv_pages_transp.sb_mode = LV_PAGE_SB_MODE_AUTO; -} #endif diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 8cdde5515..0613d8eda 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -28,6 +28,15 @@ * TYPEDEFS **********************/ +/*Scrollbar modes: shows when should the scrollbars be visible*/ +typedef enum +{ + LV_PAGE_SB_MODE_OFF, /*Never show scrollbars*/ + LV_PAGE_SB_MODE_ON, /*Always show scrollbars*/ + LV_PAGE_SB_MODE_DRAG, /*Show scrollbars when page is being dragged*/ + LV_PAGE_SB_MODE_AUTO, /*Show scrollbars when the scrollable rect. is large enough to be scrolled*/ +}lv_page_sb_mode_t; + /*Data of page*/ typedef struct { @@ -36,40 +45,15 @@ typedef struct lv_obj_t * scrl; /*The scrollable object on the background*/ lv_action_t rel_action; /*Function to call when the page is released*/ lv_action_t pr_action; /*Function to call when the page is pressed*/ + lv_style_t * style_sb; /*Style of scrollbars*/ + cord_t sb_width; /*Width of the scrollbars*/ + lv_page_sb_mode_t sb_mode; /*Scrollbar visibility from 'lv_page_sb_mode_t'*/ area_t sbh; /*Horizontal scrollbar area relative to the page. (Handled by the library) */ area_t sbv; /*Vertical scrollbar area relative to the page (Handled by the library)*/ uint8_t sbh_draw :1; /*1: horizontal scrollbar is visible now (Handled by the library)*/ uint8_t sbv_draw :1; /*1: vertical scrollbar is visible now (Handled by the library)*/ }lv_page_ext_t; -/*Scrollbar modes: shows when should the scrollbars be visible*/ -typedef enum -{ - LV_PAGE_SB_MODE_OFF, /*Never show scrollbars*/ - LV_PAGE_SB_MODE_ON, /*Always show scrollbars*/ - LV_PAGE_SB_MODE_DRAG, /*Show scrollbars when page is being dragged*/ - LV_PAGE_SB_MODE_AUTO, /*Show scrollbars when the scrollable rect. is large enough to be scrolled*/ -}lv_page_sb_mode_t; - -/*Style of page*/ -typedef struct -{ - lv_rects_t bg; /*Style of ancestor*/ - /*New style element for this type */ - lv_rects_t scrl; /*Style of the scrollable rectangle*/ - lv_rects_t sb; /*Style of scrollbars*/ - cord_t sb_width; /*Width of the scrollbars*/ - lv_page_sb_mode_t sb_mode; /*Scrollbar visibility from 'lv_page_sb_mode_t'*/ -}lv_pages_t; - -/*Built-in styles of page*/ -typedef enum -{ - LV_PAGES_DEF, - LV_PAGES_PAPER, /*White background, transparent scrollable*/ - LV_PAGES_MENU, /*Transparent background, gray scrollable*/ - LV_PAGES_TRANSP, -}lv_pages_builtin_t; /********************** * GLOBAL PROTOTYPES @@ -112,6 +96,9 @@ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action); */ void lv_page_glue_obj(lv_obj_t * obj, bool glue); +void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width); +void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode); +void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style); /** * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object @@ -127,13 +114,16 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en); */ lv_obj_t * lv_page_get_scrl(lv_obj_t * page); +cord_t lv_page_get_sb_width(lv_obj_t * page); + /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_pages_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_pages_t style + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @return the mode from 'lv_page_sb_mode_t' enum */ -lv_pages_t * lv_pages_get(lv_pages_builtin_t style, lv_pages_t * copy); +lv_page_sb_mode_t lv_page_get_sb_mode(lv_obj_t * page); + +lv_style_t * lv_page_get_style_sb(lv_obj_t * page); /********************** * MACROS diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_rect.c index 3c7c012e5..b3ec743cc 100644 --- a/lv_objx/lv_rect.c +++ b/lv_objx/lv_rect.c @@ -44,15 +44,10 @@ static void lv_rect_layout_center(lv_obj_t * rect); static void lv_rect_layout_pretty(lv_obj_t * rect); static void lv_rect_layout_grid(lv_obj_t * rect); static void lv_rect_refr_autofit(lv_obj_t * rect); -static void lv_rects_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_rects_t lv_rects_plain; -static lv_rects_t lv_rects_fancy; -static lv_rects_t lv_rects_border; -static lv_rects_t lv_rects_transp; /********************** * MACROS @@ -89,7 +84,7 @@ lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new rectangle*/ if(copy == NULL) { - lv_obj_set_style(new_rect, lv_rects_get(LV_RECTS_PLAIN, NULL)); + lv_obj_set_style(new_rect, lv_style_get(LV_STYLE_PLAIN, NULL)); } /*Copy an existing object*/ else { @@ -123,7 +118,7 @@ bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); switch(sign) { case LV_SIGNAL_STYLE_CHG: /*Recalculate the padding if the style changed*/ @@ -228,47 +223,6 @@ bool lv_rect_get_vfit(lv_obj_t * rect) } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_rects_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_rects_t style - */ -lv_rects_t * lv_rects_get(lv_rects_builtin_t style, lv_rects_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_rects_init(); - style_inited = true; - } - - lv_rects_t * style_p; - - switch(style) { - case LV_RECTS_PLAIN: - style_p = &lv_rects_plain; - break; - case LV_RECTS_FANCY: - style_p = &lv_rects_fancy; - break; - case LV_RECTS_BORDER: - style_p = &lv_rects_border; - break; - case LV_RECTS_TRANSP: - style_p = &lv_rects_transp; - break; - default: - style_p = &lv_rects_plain; - } - - if(copy != NULL) { - memcpy(copy, style_p, sizeof(lv_rects_t)); - } - - return style_p; -} /********************** @@ -290,9 +244,9 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ if(mode == LV_DESIGN_COVER_CHK) { /* Because of the radius it is not sure the area is covered * Check the areas where there is no radius*/ - if(LV_SA(rect, lv_rects_t)->empty != 0) return false; + if(rect->style_p->empty != 0) return false; - uint16_t r = LV_SA(rect, lv_rects_t)->radius; + uint16_t r = rect->style_p->radius; if(r == LV_RECT_CIRCLE) return false; @@ -312,7 +266,7 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ return false; } else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); area_t area; lv_obj_get_cords(rect, &area); @@ -333,17 +287,17 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ */ static void lv_rect_draw_shadow(lv_obj_t * rect, const area_t * mask) { - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); cord_t swidth = style->swidth; if(swidth == 0) return; uint8_t res = LV_DOWNSCALE * 2; if(swidth < res) return; area_t shadow_area; - lv_rects_t shadow_style; + lv_style_t shadow_style; lv_obj_get_cords(rect, &shadow_area); - memcpy(&shadow_style, style, sizeof(lv_rects_t)); + memcpy(&shadow_style, style, sizeof(lv_style_t)); shadow_style.empty = 1; shadow_style.bwidth = swidth; @@ -361,7 +315,7 @@ static void lv_rect_draw_shadow(lv_obj_t * rect, const area_t * mask) shadow_area.y2 += swidth; cord_t i; - shadow_style.base.opa = style->base.opa / (swidth / res); + shadow_style.opa = style->opa / (swidth / res); for(i = 1; i < swidth; i += res) { lv_draw_rect(&shadow_area, mask, &shadow_style); @@ -411,7 +365,7 @@ static void lv_rect_layout_col(lv_obj_t * rect) /*Adjust margin and get the alignment type*/ lv_align_t align; - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); cord_t hpad_corr; switch(type) { @@ -460,7 +414,7 @@ static void lv_rect_layout_row(lv_obj_t * rect) /*Adjust margin and get the alignment type*/ lv_align_t align; - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); cord_t vpad_corr = style->vpad; switch(type) { @@ -506,7 +460,7 @@ static void lv_rect_layout_row(lv_obj_t * rect) static void lv_rect_layout_center(lv_obj_t * rect) { lv_obj_t * child; - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); uint32_t obj_num = 0; cord_t h_tot = 0; @@ -546,7 +500,7 @@ static void lv_rect_layout_pretty(lv_obj_t * rect) lv_obj_t * child_rs; /* Row starter child */ lv_obj_t * child_rc; /* Row closer child */ lv_obj_t * child_tmp; /* Temporary child */ - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); cord_t w_obj = lv_obj_get_width(rect); cord_t act_y = style->vpad; /* Disable child change action because the children will be moved a lot @@ -622,7 +576,7 @@ static void lv_rect_layout_pretty(lv_obj_t * rect) static void lv_rect_layout_grid(lv_obj_t * rect) { lv_obj_t * child; - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); cord_t w_tot = lv_obj_get_width(rect); cord_t w_obj = lv_obj_get_width(lv_obj_get_child(rect, NULL)); cord_t h_obj = lv_obj_get_height(lv_obj_get_child(rect, NULL)); @@ -680,7 +634,7 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) area_t new_cords; area_t ori; - lv_rects_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(rect); lv_obj_t * i; cord_t hpad = style->hpad; cord_t vpad = style->vpad; @@ -739,55 +693,4 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) } } -/** - * Initialize the rectangle styles - */ -static void lv_rects_init(void) -{ - /*Plain style*/ - lv_objs_get(LV_OBJS_PLAIN, &lv_rects_plain.base); - lv_rects_plain.base.color = COLOR_MAKE(0x80, 0xb3, 0xe6); //6BA3BF - lv_rects_plain.gcolor = lv_rects_plain.base.color; - lv_rects_plain.bcolor = COLOR_WHITE; - lv_rects_plain.scolor = COLOR_GRAY; - lv_rects_plain.bwidth = (LV_DPI / 30) == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 30; - lv_rects_plain.swidth = 0; - lv_rects_plain.bopa = OPA_COVER; - lv_rects_plain.radius = LV_DPI / 10; - lv_rects_plain.empty = 0; - lv_rects_plain.hpad = LV_DPI / 2; - lv_rects_plain.vpad = LV_DPI / 2; - lv_rects_plain.opad = LV_DPI / 4; - - /*Fancy style*/ - lv_objs_get(LV_OBJS_PLAIN, &lv_rects_fancy.base); - lv_rects_fancy.gcolor = COLOR_MAKE(0xd3, 0xe1, 0xea); - lv_rects_fancy.bcolor = COLOR_WHITE; - lv_rects_fancy.scolor = COLOR_BLACK; - lv_rects_fancy.bwidth = (LV_DPI / 30) == 0 ? 1 * LV_DOWNSCALE : LV_DPI / 30; - lv_rects_fancy.swidth = LV_DPI / 6; - lv_rects_fancy.bopa = OPA_50; - lv_rects_fancy.radius = LV_DPI / 10; - lv_rects_fancy.empty = 0; - lv_rects_fancy.hpad = LV_DPI / 4; - lv_rects_fancy.vpad = LV_DPI / 4; - lv_rects_fancy.opad = LV_DPI / 6; - - /*Transparent style*/ - memcpy(&lv_rects_transp, &lv_rects_plain, sizeof(lv_rects_t)); - /* Do not use opa=OPA_TRANSP because design function will not be called - * but it might draw something on transparent background*/ - lv_rects_transp.empty = 1; - lv_rects_transp.bwidth = 0; - lv_rects_transp.swidth = 0; - lv_rects_transp.hpad = 0; - lv_rects_transp.vpad = 0; - - /*Border style*/ - memcpy(&lv_rects_border, &lv_rects_plain, sizeof(lv_rects_t)); - lv_rects_border.bcolor = COLOR_MAKE(0x30, 0x30, 0x30); - lv_rects_border.bwidth = LV_DPI / 30; - lv_rects_border.swidth = 0; - lv_rects_border.empty = 1; -} #endif diff --git a/lv_objx/lv_rect.h b/lv_objx/lv_rect.h index 51c66832f..a57c79933 100644 --- a/lv_objx/lv_rect.h +++ b/lv_objx/lv_rect.h @@ -48,34 +48,6 @@ typedef struct uint8_t vpad_en :1; /*Enable horizontal padding according to the children*/ }lv_rect_ext_t; - -/*Style of rectangle*/ -typedef struct -{ - lv_objs_t base; /*Style of ancestor*/ - /*New style element for this type */ - color_t gcolor; /*Gradient color*/ - color_t bcolor; /*Border color*/ - color_t scolor; /*Shadow color*/ - cord_t bwidth; /*Border width*/ - cord_t swidth; /*Shadow width*/ - cord_t radius; /*Radius on the corners*/ - cord_t hpad; /*Horizontal padding. Used by fit and layout.*/ - cord_t vpad; /*Vertical padding. Used by fit and layout.*/ - cord_t opad; /*Object padding. Used by fit */ - opa_t bopa; /*Border opacity relative to the object*/ - uint8_t empty :1; /*1: Do not draw the body of the rectangle*/ -}lv_rects_t; - -/*Built-in styles of rectangle*/ -typedef enum -{ - LV_RECTS_PLAIN, - LV_RECTS_FANCY, - LV_RECTS_BORDER, - LV_RECTS_TRANSP, -}lv_rects_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -133,13 +105,6 @@ bool lv_rect_get_hfit(lv_obj_t * rect); */ bool lv_rect_get_vfit(lv_obj_t * rect); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_rects_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_rects_t style - */ -lv_rects_t * lv_rects_get(lv_rects_builtin_t style, lv_rects_t * copy); /********************** * MACROS diff --git a/lv_objx/lv_slider.c b/lv_objx/lv_slider.c index ae87668aa..95cbb7e9f 100644 --- a/lv_objx/lv_slider.c +++ b/lv_objx/lv_slider.c @@ -25,13 +25,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_mode_t mode); -static void lv_sliders_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_sliders_t lv_sliders_def; /*Default slider style*/ - static lv_design_f_t ancestor_design_f; /********************** @@ -66,6 +63,7 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) /*Initialize the allocated 'ext' */ ext->cb = NULL; ext->tmp_value = ext->bar.min_value; + ext->style_knob = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); /* Save the bar design function. * It will be used in the sllider design function*/ @@ -77,7 +75,6 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new slider slider*/ if(copy == NULL) { - lv_obj_set_style(new_slider, lv_sliders_get(LV_SLIDERS_DEF, NULL)); lv_obj_set_click(new_slider, true); } /*Copy an existing slider*/ @@ -165,45 +162,42 @@ void lv_slider_set_action(lv_obj_t * slider, lv_action_t cb) ext->cb = cb; } +/** + * Set the style of knob on a slider + * @param slider pointer to slider object + * @param style pointer the new knob style + */ +void lv_slider_set_sytle_knob(lv_obj_t * slider, lv_style_t * style) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + ext->style_knob = style; + lv_obj_inv(slider); +} + /*===================== * Getter functions *====================*/ -/* - * New object specific "get" function comes here - */ - - /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_sliders_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_sliders_t style + * Get the slider callback function + * @param slider pointer to slider object + * @return the callback function */ -lv_sliders_t * lv_sliders_get(lv_sliders_builtin_t style, lv_sliders_t * copy) +lv_action_t lv_slider_get_action(lv_obj_t * slider) { - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_sliders_init(); - style_inited = true; - } - - lv_sliders_t *style_p; - - switch(style) { - case LV_SLIDERS_DEF: - style_p = &lv_sliders_def; - break; - default: - style_p = &lv_sliders_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_sliders_t)); - - return style_p; + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + return ext->cb; +} +/** + * Get the style of knob on a slider + * @param slider pointer to slider object + * @return pointer the new knob style + */ +lv_style_t * lv_slider_get_sytle_knob(lv_obj_t * slider) +{ + lv_slider_ext_t * ext = lv_obj_get_ext(slider); + return ext->style_knob; } /********************** @@ -252,7 +246,6 @@ static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_m ancestor_design_f(slider, mask, mode); ext->bar.act_value -=tmp; - lv_sliders_t * style = lv_obj_get_style(slider); area_t knob_area; area_cpy(&knob_area, &slider->cords); @@ -269,7 +262,7 @@ static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_m knob_area.y2 = knob_area.y1 + w; } - lv_draw_rect(&knob_area, mask, &style->knob); + lv_draw_rect(&knob_area, mask, ext->style_knob); } /*Post draw when the children are drawn*/ @@ -280,22 +273,4 @@ static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_m return true; } - -/** - * Initialize the built-in slider styles - */ -static void lv_sliders_init(void) -{ - /*Default style*/ - lv_bars_get(LV_BARS_DEF, &lv_sliders_def.bar); - lv_sliders_def.bar.indic.radius = LV_RECT_CIRCLE; - lv_sliders_def.bar.bg.radius = LV_RECT_CIRCLE; - lv_rects_get(LV_RECTS_PLAIN, &lv_sliders_def.knob); - lv_sliders_def.knob.base.color = COLOR_SILVER; - lv_sliders_def.knob.gcolor = COLOR_GRAY; - lv_sliders_def.knob.base.opa = OPA_70; - lv_sliders_def.knob.radius = lv_sliders_def.bar.indic.radius; - -} - #endif diff --git a/lv_objx/lv_slider.h b/lv_objx/lv_slider.h index f8c8d6685..9edf352f0 100644 --- a/lv_objx/lv_slider.h +++ b/lv_objx/lv_slider.h @@ -29,16 +29,9 @@ typedef struct /*New data for this type */ lv_action_t cb; /*Function to call when a new value is set*/ int16_t tmp_value; /*Store temporal value during press until release (Handled by the library)*/ + lv_style_t * style_knob; /*Styée of the knob*/ }lv_slider_ext_t; -/*Style of slider*/ -typedef struct -{ - lv_bars_t bar; /*Style of ancestor*/ - /*New style element for this type */ - lv_rects_t knob; /*Style of the knob*/ -}lv_sliders_t; - /*Built-in styles of slider*/ typedef enum { @@ -66,13 +59,6 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_sliders_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_sliders_t style - */ -lv_sliders_t * lv_sliders_get(lv_sliders_builtin_t style, lv_sliders_t * copy); /********************** * MACROS diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index 30dfef3c8..bc4eaa72c 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -40,13 +40,10 @@ static bool lv_ta_design(lv_obj_t * ta, const area_t * mask, lv_design_mode_t mo static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_design_mode_t mode); static void lv_ta_hide_cursor(lv_obj_t * ta, uint8_t hide); static void lv_ta_save_valid_cursor_x(lv_obj_t * ta); -static void lv_tas_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_tas_t lv_tas_def; - lv_design_f_t ancestor_design_f; lv_design_f_t scrl_design_f; @@ -97,7 +94,7 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) lv_label_set_text(ext->label, "Text area"); lv_page_glue_obj(ext->label, true); lv_obj_set_click(ext->label, false); - lv_obj_set_style(new_ta, lv_tas_get(LV_TAS_DEF, NULL)); + lv_obj_set_style(new_ta, lv_obj_get_style(ext->page.scrl)); lv_obj_set_size(new_ta, LV_TA_DEF_WIDTH, LV_TA_DEF_HEIGHT); } /*Copy an existing object*/ @@ -148,7 +145,7 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_ta_ext_t * ext = lv_obj_get_ext(ta); - lv_tas_t * style = lv_obj_get_style(ta); + lv_style_t * style = lv_obj_get_style(ta); switch(sign) { case LV_SIGNAL_CLEANUP: /* Nothing to clean up. @@ -156,9 +153,9 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: if(ext->label) { - lv_obj_set_style(ext->label, &style->label); + lv_obj_set_style(ext->label, lv_obj_get_style(ext->page.scrl)); lv_obj_set_width(ext->label, lv_obj_get_width(ta) - 2 * - (style->page.bg.hpad + style->page.scrl.hpad)); + (style->hpad + style->hpad)); lv_label_set_text(ext->label, NULL); } break; @@ -166,7 +163,7 @@ bool lv_ta_signal(lv_obj_t * ta, lv_signal_t sign, void * param) case LV_SIGNAL_CORD_CHG: if(ext->label != NULL) { lv_obj_set_width(ext->label, lv_obj_get_width(ta) - 2 * - (style->page.bg.hpad + style->page.scrl.hpad)); + (style->hpad + style->hpad)); lv_label_set_text(ext->label, NULL); } break; @@ -299,6 +296,8 @@ void lv_ta_del(lv_obj_t * ta) void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) { lv_ta_ext_t * ext = lv_obj_get_ext(ta); + lv_obj_t * scrl = lv_page_get_scrl(ta); + lv_style_t * style_scrl = lv_obj_get_style(scrl); uint16_t txt_len = strlen(lv_label_get_text(ext->label)); if(pos < 0) pos = txt_len + pos; @@ -310,8 +309,8 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) /*Position the label to make the cursor visible*/ lv_obj_t * label_par = lv_obj_get_parent(ext->label); point_t cur_pos; - lv_tas_t * style = lv_obj_get_style(ta); - const font_t * font_p = style->label.font; + lv_style_t * style = lv_obj_get_style(ta); + const font_t * font_p = style->font; area_t label_cords; area_t ta_cords; lv_label_get_letter_pos(ext->label, pos, &cur_pos); @@ -325,9 +324,9 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) /*Check the bottom*/ cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; - if(label_cords.y1 + cur_pos.y + font_h + style->page.scrl.vpad > ta_cords.y2) { + if(label_cords.y1 + cur_pos.y + font_h + style_scrl->vpad > ta_cords.y2) { lv_obj_set_y(label_par, -(cur_pos.y - lv_obj_get_height(ta) + - font_h + 2 * style->page.scrl.vpad)); + font_h + 2 * style_scrl->vpad)); } lv_obj_inv(ta); @@ -377,7 +376,7 @@ void lv_ta_cursor_down(lv_obj_t * ta) lv_label_get_letter_pos(ext->label, lv_ta_get_cursor_pos(ta), &pos); /*Increment the y with one line and keep the valid x*/ - lv_labels_t * label_style = lv_obj_get_style(ext->label); + lv_style_t * label_style = lv_obj_get_style(ext->label); const font_t * font_p = label_style->font; cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; pos.y += font_h + label_style->line_space + 1; @@ -404,7 +403,7 @@ void lv_ta_cursor_up(lv_obj_t * ta) lv_label_get_letter_pos(ext->label, lv_ta_get_cursor_pos(ta), &pos); /*Decrement the y with one line and keep the valid x*/ - lv_labels_t * label_style = lv_obj_get_style(ext->label); + lv_style_t * label_style = lv_obj_get_style(ext->label); const font_t * font = label_style->font; cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; pos.y -= font_h + label_style->line_space - 1; @@ -414,6 +413,7 @@ void lv_ta_cursor_up(lv_obj_t * ta) uint16_t new_cur_pos = lv_label_get_letter_on(ext->label, &pos); lv_ta_set_cursor_pos(ta, new_cur_pos); } + /*===================== * Getter functions *====================*/ @@ -440,36 +440,6 @@ uint16_t lv_ta_get_cursor_pos(lv_obj_t * ta) return ext->cursor_pos; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_tas_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_tas_t style - */ -lv_tas_t * lv_tas_get(lv_tas_builtin_t style, lv_tas_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_tas_init(); - style_inited = true; - } - - lv_tas_t *style_p; - - switch(style) { - case LV_TAS_DEF: - style_p = &lv_tas_def; - break; - default: - style_p = &lv_tas_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_tas_t)); - - return style_p; -} /********************** * STATIC FUNCTIONS **********************/ @@ -523,26 +493,26 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des /*Draw the cursor too*/ lv_obj_t * ta = lv_obj_get_parent(scrling); lv_ta_ext_t * ta_ext = lv_obj_get_ext(ta); - lv_tas_t * ta_style = lv_obj_get_style(ta); + lv_style_t * ta_style = lv_obj_get_style(ta); - if(ta_style->cursor_show != 0 && ta_ext->cur_hide == 0) { + if(ta_ext->cursor_show != 0 && ta_ext->cur_hide == 0) { uint16_t cur_pos = lv_ta_get_cursor_pos(ta); point_t letter_pos; lv_label_get_letter_pos(ta_ext->label, cur_pos, &letter_pos); area_t cur_area; - lv_labels_t * labels_p = lv_obj_get_style(ta_ext->label); + lv_style_t * labels_p = lv_obj_get_style(ta_ext->label); cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1; cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + LV_DOWNSCALE ; cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> LV_FONT_ANTIALIAS); - lv_rects_t cur_rects; - lv_rects_get(LV_RECTS_PLAIN, &cur_rects); + lv_style_t cur_rects; + lv_style_get(LV_STYLE_PLAIN, &cur_rects); cur_rects.radius = 0; cur_rects.bwidth = 0; - cur_rects.base.color = ta_style->label.base.color; - cur_rects.gcolor = ta_style->label.base.color; + cur_rects.mcolor = ta_style->ccolor; + cur_rects.gcolor = ta_style->ccolor; lv_draw_rect(&cur_area, mask, &cur_rects); } } @@ -577,19 +547,4 @@ static void lv_ta_save_valid_cursor_x(lv_obj_t * ta) ext->cursor_valid_x = cur_pos.x; } -/** - * Initialize the text area styles - */ -static void lv_tas_init(void) -{ - /*Default style*/ - lv_pages_get(LV_PAGES_PAPER, &lv_tas_def.page); - lv_tas_def.page.sb_mode = LV_PAGE_SB_MODE_DRAG; - - lv_labels_get(LV_LABELS_TXT, &lv_tas_def.label); - - lv_tas_def.label.base.color = COLOR_MAKE(0x10, 0x10, 0x10); - lv_tas_def.cursor_show = 1; - -} #endif diff --git a/lv_objx/lv_ta.h b/lv_objx/lv_ta.h index 412b12e56..1ddea97e4 100644 --- a/lv_objx/lv_ta.h +++ b/lv_objx/lv_ta.h @@ -43,23 +43,9 @@ typedef struct cord_t cursor_valid_x; /*Used when stepping up/down in text area. Handled by the library*/ uint16_t cursor_pos; /*The current cursor position (0: before 1. letter, 1: before 2. letter etc.)*/ uint8_t cur_hide :1; /*Indicates that the cursor is visible now or not*/ + uint8_t cursor_show :1; /*Flag to indicate the cursor is now being shown or not (Handled by the library)*/ }lv_ta_ext_t; -/*Style of text area*/ -typedef struct -{ - lv_pages_t page; /*Style of ancestor*/ - /*New style element for this type */ - lv_labels_t label; /*Style of the label*/ - uint8_t cursor_show :1; /*Flag to indicate the cursor is now being shown or not (Handled by the library)*/ -}lv_tas_t; - -/*Built-in styles of text area*/ -typedef enum -{ - LV_TAS_DEF, -}lv_tas_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -155,13 +141,6 @@ const char * lv_ta_get_txt(lv_obj_t * ta); */ uint16_t lv_ta_get_cursor_pos(lv_obj_t * ta); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_tas_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_tas_t style - */ -lv_tas_t * lv_tas_get(lv_tas_builtin_t style, lv_tas_t * copy); /********************** * MACROS diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 61ebe0525..a3addca06 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -25,13 +25,11 @@ #if 0 /*Not used*/ static bool lv_win_design(lv_obj_t * win, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_wins_init(void); static void lv_win_realign(lv_obj_t * win); /********************** * STATIC VARIABLES **********************/ -static lv_wins_t lv_wins_def; /********************** * MACROS @@ -54,25 +52,38 @@ static lv_wins_t lv_wins_def; lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor object*/ - lv_obj_t * new_win = lv_page_create(par, copy); + lv_obj_t * new_win = lv_obj_create(par, copy); dm_assert(new_win); /*Allocate the object type specific extended data*/ lv_win_ext_t * ext = lv_obj_alloc_ext(new_win, sizeof(lv_win_ext_t)); dm_assert(ext); - ext->ctrl_holder = NULL; + ext->page = NULL; + ext->btnh = NULL; ext->header = NULL; ext->title = NULL; - - lv_obj_set_signal_f(new_win, lv_win_signal); + ext->style_header = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); + ext->styles_btn[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles_btn[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles_btn[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles_btn[LV_BTN_STATE_TPR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles_btn[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); + ext->btn_size = LV_DPI; /*Init the new window object*/ if(copy == NULL) { - lv_obj_set_size(new_win, LV_HOR_RES, LV_VER_RES); lv_obj_set_pos(new_win, 0, 0); - lv_obj_t * scrl = lv_page_get_scrl(new_win); + lv_obj_set_style(new_win, lv_style_get(LV_STYLE_PLAIN, NULL)); + + ext->page = lv_page_create(new_win, NULL); + lv_obj_set_protect(ext->page, LV_PROTECT_PARENT); + lv_obj_set_style(ext->page, lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_page_set_sb_mode(ext->page, LV_PAGE_SB_MODE_AUTO); + + lv_obj_t * scrl = lv_page_get_scrl(ext->page); lv_rect_set_fit(scrl, false, true); + lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); /*Create a holder for the header*/ ext->header = lv_rect_create(new_win, NULL); @@ -80,18 +91,19 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) /*Move back the header because it is automatically moved to the scrollable */ lv_obj_set_protect(ext->header, LV_PROTECT_PARENT); lv_obj_set_parent(ext->header, new_win); + lv_obj_set_style(ext->header, lv_style_get(LV_STYLE_PLAIN_COLOR, NULL)); /*Create a title on the header*/ ext->title = lv_label_create(ext->header, NULL); lv_label_set_text(ext->title,"My title"); /*Create a holder for the control buttons*/ - ext->ctrl_holder = lv_rect_create(ext->header, NULL); - lv_rect_set_fit(ext->ctrl_holder, true, false); - lv_rect_set_layout(ext->ctrl_holder, LV_RECT_LAYOUT_ROW_M); - - lv_obj_set_style(new_win, lv_wins_get(LV_WINS_DEF, NULL)); + ext->btnh = lv_rect_create(ext->header, NULL); + lv_rect_set_fit(ext->btnh, true, false); + lv_obj_set_style(ext->btnh, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); + lv_rect_set_layout(ext->btnh, LV_RECT_LAYOUT_ROW_M); + lv_obj_set_signal_f(new_win, lv_win_signal); lv_obj_set_size(new_win, LV_HOR_RES, LV_VER_RES); } /*Copy an existing object*/ @@ -104,18 +116,19 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_parent(ext->header, new_win); ext->title = lv_label_create(ext->header, copy_ext->title); - ext->ctrl_holder = lv_rect_create(ext->header, copy_ext->ctrl_holder); + ext->btnh = lv_rect_create(ext->header, copy_ext->btnh); /*Copy the control buttons*/ lv_obj_t * child; lv_obj_t * cbtn; - child = lv_obj_get_child(copy_ext->ctrl_holder, NULL); + child = lv_obj_get_child(copy_ext->btnh, NULL); while(child != NULL) { - cbtn = lv_btn_create(ext->ctrl_holder, child); + cbtn = lv_btn_create(ext->btnh, child); lv_img_create(cbtn, lv_obj_get_child(child, NULL)); - child = lv_obj_get_child(copy_ext->ctrl_holder, child); + child = lv_obj_get_child(copy_ext->btnh, child); } + lv_obj_set_signal_f(new_win, lv_win_signal); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_win); } @@ -137,47 +150,51 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_page_signal(win, sign, param); - lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_wins_t * style = lv_obj_get_style(win); - lv_obj_t * child; + valid = lv_obj_signal(win, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->ctrl_holder, &style->ctrl_holder); - lv_obj_set_style(ext->title, &style->title); - lv_obj_set_style(ext->header, &style->header); + if(sign == LV_SIGNAL_CHILD_CHG) { /*Move children to the page*/ + lv_obj_t * page = lv_win_get_page(win); + if(page != NULL) { + lv_obj_t * child; + child = lv_obj_get_child(win, NULL); + while(child != NULL) { + if(lv_obj_is_protected(child, LV_PROTECT_PARENT) == false) { + lv_obj_t * tmp = child; + child = lv_obj_get_child(win, child); /*Get the next child before move this*/ + lv_obj_set_parent(tmp, page); + } else { + child = lv_obj_get_child(win, child); + } + } + } + } + else if(sign == LV_SIGNAL_STYLE_CHG) { + /*Refresh the style of all control buttons*/ +// lv_win_ext_t * ext = lv_obj_get_ext(win); +// lv_style_t * style = lv_obj_get_style(win); +// lv_obj_t * child; +// child = lv_obj_get_child(ext->ctrl_holder, NULL); +// while(child != NULL) { +// lv_obj_set_style(child, &style->ctrl_btn); +// +// /*Refresh the image style too*/ +// lv_obj_set_style(lv_obj_get_child(child, NULL), &style->ctrl_img); +// child = lv_obj_get_child(ext->ctrl_holder, child); +// } - /*Refresh the style of all control buttons*/ - child = lv_obj_get_child(ext->ctrl_holder, NULL); - while(child != NULL) { - lv_obj_set_style(child, &style->ctrl_btn); - - /*Refresh the image style too*/ - lv_obj_set_style(lv_obj_get_child(child, NULL), &style->ctrl_img); - child = lv_obj_get_child(ext->ctrl_holder, child); - } - - lv_win_realign(win); - - break; - case LV_SIGNAL_CORD_CHG: - /*If the size is changed refresh the window*/ - if(area_get_width(param) != lv_obj_get_width(win) || - area_get_height(param) != lv_obj_get_height(win)) { - lv_win_realign(win); - } - break; - default: - break; + lv_win_realign(win); } + else if(sign == LV_SIGNAL_CORD_CHG) { + /*If the size is changed refresh the window*/ + if(area_get_width(param) != lv_obj_get_width(win) || + area_get_height(param) != lv_obj_get_height(win)) { + lv_win_realign(win); + } + } } return valid; @@ -197,16 +214,16 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param) lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_t rel_action) { lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_wins_t * style = lv_obj_get_style(win); - lv_obj_t * btn = lv_btn_create(ext->ctrl_holder, NULL); - lv_obj_set_style(btn, &style->ctrl_btn); - lv_obj_set_size(btn, style->ctrl_btn_w, style->ctrl_btn_h); + lv_obj_t * btn = lv_btn_create(ext->btnh, NULL); + lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], + ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], + ext->styles_btn[LV_BTN_STATE_INA]); + lv_obj_set_size(btn, ext->btn_size, ext->btn_size); lv_btn_set_rel_action(btn, rel_action); lv_obj_t * img = lv_img_create(btn, NULL); lv_obj_set_click(img, false); - lv_obj_set_style(img, &style->ctrl_img); lv_img_set_file(img, img_path); lv_win_realign(win); @@ -245,6 +262,7 @@ void lv_win_set_title(lv_obj_t * win, const char * title) /*===================== * Getter functions *====================*/ + /** * Get the title of a window * @param win pointer to a window object @@ -253,10 +271,20 @@ void lv_win_set_title(lv_obj_t * win, const char * title) const char * lv_win_get_title(lv_obj_t * win) { lv_win_ext_t * ext = lv_obj_get_ext(win); - return lv_label_get_text(ext->title); } +/** + * Get the page of a window + * @param win pointer to a window object + * @return page pointer to the page object of the window + */ +lv_obj_t * lv_win_get_page(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + return ext->page; +} + /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. @@ -272,37 +300,6 @@ lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn) return win; } -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_wins_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_wins_t style - */ -lv_wins_t * lv_wins_get(lv_wins_builtin_t style, lv_wins_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_wins_init(); - style_inited = true; - } - - lv_wins_t *style_p; - - switch(style) { - case LV_WINS_DEF: - style_p = &lv_wins_def; - break; - default: - style_p = &lv_wins_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_wins_t)); - - return style_p; -} - /********************** * STATIC FUNCTIONS **********************/ @@ -337,50 +334,6 @@ static bool lv_win_design(lv_obj_t * win, const area_t * mask, lv_design_mode_t } #endif -/** - * Initialize the window styles - */ -static void lv_wins_init(void) -{ - /*Style for the content*/ - lv_pages_get(LV_PAGES_PAPER, &lv_wins_def.page); /*LV_PAGES_PAPER: White bg, transparent scrl*/ - lv_wins_def.page.bg.base.color = COLOR_WHITE; - lv_wins_def.page.bg.gcolor = COLOR_WHITE; - lv_wins_def.page.bg.bwidth = 1 * LV_DOWNSCALE; - lv_wins_def.page.bg.bcolor = COLOR_GRAY; - lv_wins_def.page.bg.radius = 0; - lv_wins_def.page.bg.vpad = LV_DPI; /*Great vpad on the background to move the content below the header*/ - lv_wins_def.page.bg.hpad = LV_DPI / 4; - - /*Styles for the header*/ - lv_rects_get(LV_RECTS_PLAIN, &lv_wins_def.header); - lv_wins_def.header.bwidth = 0; - lv_wins_def.header.radius = 0; - lv_wins_def.header.hpad = LV_DPI / 10; - lv_wins_def.header.vpad = LV_DPI / 10; - lv_wins_def.header.bwidth = 0; - lv_wins_def.header.radius = 0; - - lv_rects_get(LV_RECTS_TRANSP, &lv_wins_def.ctrl_holder); - lv_wins_def.ctrl_holder.hpad = 0; - lv_wins_def.ctrl_holder.vpad = 0; - lv_wins_def.ctrl_holder.opad = LV_DPI / 10; - - lv_btns_get(LV_BTNS_DEF, &lv_wins_def.ctrl_btn); - lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_REL].swidth = 0; - lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_PR].swidth = 0; - lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_TREL].swidth = 0; - lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_TPR].swidth = 0; - lv_wins_def.ctrl_btn.state_style[LV_BTN_STATE_INA].swidth = 0; - - lv_imgs_get(LV_IMGS_DEF, &lv_wins_def.ctrl_img); - - lv_labels_get(LV_LABELS_TITLE, &lv_wins_def.title); - - lv_wins_def.ctrl_btn_w = 2 * LV_DPI / 3; - lv_wins_def.ctrl_btn_h = 2 * LV_DPI / 3; -} - /** * Realign the building elements of a window * @param win pointer to window objectker @@ -388,34 +341,41 @@ static void lv_wins_init(void) static void lv_win_realign(lv_obj_t * win) { lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_wins_t * style = lv_obj_get_style(win); + lv_style_t * style = lv_obj_get_style(win); - if(ext->ctrl_holder == NULL || ext->header == NULL || ext->title == NULL) return; + if(ext->page == NULL || ext->btnh == NULL || ext->header == NULL || ext->title == NULL) return; lv_obj_t * cbtn; /*Refresh the style of all control buttons*/ - cbtn = lv_obj_get_child(ext->ctrl_holder, NULL); + cbtn = lv_obj_get_child(ext->btnh, NULL); while(cbtn != NULL) { - lv_obj_set_size(cbtn, style->ctrl_btn_w, style->ctrl_btn_h); - cbtn = lv_obj_get_child(ext->ctrl_holder, cbtn); + lv_obj_set_size(cbtn, ext->btn_size, ext->btn_size); + cbtn = lv_obj_get_child(ext->btnh, cbtn); } - lv_obj_set_height(ext->ctrl_holder, style->ctrl_btn_h + 2 * style->ctrl_holder.vpad * 2); + lv_style_t * btnh_style = lv_obj_get_style(ext->btnh); + lv_obj_set_height(ext->btnh, ext->btn_size + 2 * btnh_style->vpad * 2); lv_obj_set_width(ext->header, lv_obj_get_width(win)); /*Align the higher object first to make the correct header size first*/ - if(lv_obj_get_height(ext->title) > lv_obj_get_height(ext->ctrl_holder)) { - lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, style->header.hpad, 0); - lv_obj_align(ext->ctrl_holder, NULL, LV_ALIGN_IN_RIGHT_MID, -style->header.hpad, 0); + if(lv_obj_get_height(ext->title) > lv_obj_get_height(ext->btnh)) { + lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, ext->style_header->hpad, 0); + lv_obj_align(ext->btnh, NULL, LV_ALIGN_IN_RIGHT_MID, - ext->style_header->hpad, 0); } else { - lv_obj_align(ext->ctrl_holder, NULL, LV_ALIGN_IN_RIGHT_MID, -style->header.hpad, 0); - lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, style->header.hpad, 0); + lv_obj_align(ext->btnh, NULL, LV_ALIGN_IN_RIGHT_MID, - ext->style_header->hpad, 0); + lv_obj_align(ext->title, NULL, LV_ALIGN_IN_LEFT_MID, ext->style_header->hpad, 0); } lv_obj_set_pos_us(ext->header, 0, 0); - lv_obj_t * scrl = lv_page_get_scrl(win); - lv_obj_set_width(scrl, LV_HOR_RES - 2 * style->page.bg.hpad); + lv_obj_t * page = lv_win_get_page(win); + lv_obj_set_size(page, lv_obj_get_width(win), lv_obj_get_height(win) - lv_obj_get_height(ext->header)); + lv_obj_align(page, ext->header, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + + lv_style_t * style_page = lv_obj_get_style(page); + lv_obj_t * scrl = lv_page_get_scrl(page); + + lv_obj_set_width(scrl, lv_obj_get_width(page) - 2 * style_page->hpad); } #endif diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index 57a229948..2a6528456 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -55,34 +55,17 @@ /*Data of window*/ typedef struct { - lv_page_ext_t page; /*Ext. of ancestor*/ + /*Ext. of ancestor*/ /*New data for this type */ + lv_obj_t * page; lv_obj_t * header; /*Pointer to the header rectangle of the window*/ lv_obj_t * title; /*Pointer to the title label of the window*/ - lv_obj_t * ctrl_holder; /*Pointer to the control button holder rectangle of the window*/ + lv_obj_t * btnh; /*Pointer to the control button holder rectangle of the window*/ + lv_style_t * style_header; /*Style of the header rectangle*/ + lv_style_t * styles_btn[LV_BTN_STATE_NUM]; /*Style of the control buttons*/ + cord_t btn_size; /*Size of the control buttons (square)*/ }lv_win_ext_t; -/*Style of window*/ -typedef struct -{ - lv_pages_t page; /*Style of ancestor*/ - /*New style element for this type */ - /*Header settings*/ - lv_rects_t header; /*Style of the header rectangle*/ - lv_labels_t title; /*Style of the window title*/ - lv_rects_t ctrl_holder; /*Style of holder of the control buttons*/ - lv_btns_t ctrl_btn; /*Style of the control buttons*/ - lv_imgs_t ctrl_img; /*Style of the image on the control buttons*/ - cord_t ctrl_btn_w; /*Width of the control buttons*/ - cord_t ctrl_btn_h; /*Height of the control buttons*/ -}lv_wins_t; - -/*Built-in styles of window*/ -typedef enum -{ - LV_WINS_DEF, -}lv_wins_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -135,6 +118,8 @@ void lv_win_set_title(lv_obj_t * win, const char * title); */ const char * lv_win_get_title(lv_obj_t * win); +lv_obj_t * lv_win_get_page(lv_obj_t * win); + /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. @@ -143,14 +128,6 @@ const char * lv_win_get_title(lv_obj_t * win); */ lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_wins_builtin_t enum - * @param copy_p copy the style to this variable. (NULL if unused) - * @return pointer to an lv_wins_t style - */ -lv_wins_t * lv_wins_get(lv_wins_builtin_t style, lv_wins_t * copy); - /********************** * MACROS **********************/ From f431f262beea35fce7e3db0e650904b54a61a8e7 Mon Sep 17 00:00:00 2001 From: Gabor Date: Thu, 13 Apr 2017 13:34:57 +0200 Subject: [PATCH 27/53] Apply the new style system on the applications too --- lv_app/lv_app.c | 384 ++++++++++++----------------- lv_app/lv_app.h | 40 ++- lv_app/lv_app_util/lv_app_fsel.c | 9 +- lv_app/lv_app_util/lv_app_kb.c | 33 +-- lv_app/lv_app_util/lv_app_notice.c | 11 +- lv_appx/lv_app_example.c | 2 - lv_appx/lv_app_files.c | 19 +- lv_appx/lv_app_sysmon.c | 64 ++--- lv_appx/lv_app_terminal.c | 74 ++---- lv_appx/lv_app_visual.c | 2 - lv_obj/lv_style.c | 13 +- lv_objx/lv_bar.c | 2 - lv_objx/lv_btn.c | 1 - lv_objx/lv_btnm.c | 10 +- lv_objx/lv_btnm.h | 3 +- lv_objx/lv_chart.c | 12 +- lv_objx/lv_chart.h | 6 +- lv_objx/lv_list.c | 9 +- lv_objx/lv_page.c | 1 - lv_objx/lv_ta.c | 4 +- lv_objx/lv_win.c | 91 ++++++- lv_objx/lv_win.h | 9 +- 22 files changed, 361 insertions(+), 438 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index e38b982eb..a72ee4786 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -78,14 +78,14 @@ static lv_obj_t * app_scr; /*Screen of the applications*/ #if LV_APP_DESKTOP != 0 static lv_obj_t * menuh; /*Holder of timg_bubbleshe menu on the top*/ static lv_obj_t * app_btn; /*The "Apps" button on the menu*/ -static lv_obj_t * sys_apph; /*Holder of the system app. buttons*/ +//static lv_obj_t * sys_apph; /*Holder of the system app. buttons*/ static lv_obj_t * sc_page; /*A page for the shortcuts */ #endif static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_app_inst_t * con_send; /*The sender application in connection mode. Not NLL means connection mode is active*/ static lv_app_style_t app_style; /*Styles for application related things*/ -static lv_wins_t wins_anim; /*Used when the window is animated. (Do not use scrollbar during the anim.)*/ + /*Declare icons*/ #if USE_IMG_CLOSE != 0 LV_IMG_DECLARE(img_close); @@ -255,7 +255,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) app->sc = lv_btn_create(app_scr, NULL); #endif lv_obj_set_free_p(app->sc, app); - lv_obj_set_style(app->sc, &app_style.sc_bg); + lv_btn_set_styles(app->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); lv_obj_set_size(app->sc, LV_APP_SC_WIDTH, LV_APP_SC_HEIGHT); lv_rect_set_layout(app->sc, LV_RECT_LAYOUT_OFF); lv_btn_set_rel_action(app->sc, lv_app_sc_rel_action); @@ -264,7 +264,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) if((app->dsc->mode & LV_APP_MODE_NO_SC_TITLE) == 0) { /*Create a title on top of the shortcut*/ app->sc_title = lv_label_create(app->sc, NULL); - lv_obj_set_style(app->sc_title, &app_style.sc_title_style); + lv_obj_set_style(app->sc_title, &app_style.sc_title); #if LV_APP_EFFECT_ANIM != 0 lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_SCROLL); #else @@ -272,7 +272,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_DOTS); #endif lv_label_set_text(app->sc_title, app->name); - lv_obj_align_us(app->sc_title, NULL, LV_ALIGN_IN_TOP_MID, 0, app_style.sc_title_margin); + lv_obj_align_us(app->sc_title, NULL, LV_ALIGN_IN_TOP_MID, 0, LV_DPI / 20); } else { app->sc_title = NULL; } @@ -321,7 +321,7 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) app->win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_free_p(app->win, app); - lv_obj_set_style(app->win, &app_style.win); + lv_obj_set_style(lv_win_get_header(app->win), &app_style.win_header); lv_win_set_title(app->win, app->dsc->name); if(app->dsc->conf_open != NULL) { @@ -524,22 +524,6 @@ lv_app_dsc_t ** lv_app_dsc_get_next(lv_app_dsc_t ** prev) return next; } -/** - * Refresh the style of the applications - * */ -void lv_app_style_refr(void) -{ - lv_style_refr_all(NULL); - -#if LV_APP_DESKTOP != 0 - lv_obj_set_width(lv_page_get_scrl(sc_page), LV_HOR_RES - 2 * (app_style.sc_page.bg.hpad)); -#endif - - app_style.win_useful_w = LV_HOR_RES - 2 * (app_style.win.page.bg.hpad + app_style.win.page.scrl.hpad); - - app_style.win_useful_h = LV_VER_RES - 2 * (app_style.win.page.bg.vpad + app_style.win.page.scrl.vpad); -} - /** * Get a pointer to the application style structure. If modified then 'lv_app_refr_style' should be called @@ -560,44 +544,46 @@ lv_app_style_t * lv_app_style_get(void) */ static void lv_app_init_desktop(void) { - /*Shortcut area*/ - sc_page = lv_page_create(lv_scr_act(), NULL); - lv_obj_set_style(sc_page, &app_style.sc_page); - lv_obj_set_size(sc_page, LV_HOR_RES, LV_VER_RES); - lv_obj_set_pos(sc_page, 0, 0); - lv_rect_set_fit(lv_page_get_scrl(sc_page), false, true); - lv_rect_set_layout(lv_page_get_scrl(sc_page), LV_RECT_LAYOUT_GRID); - lv_page_set_rel_action(sc_page, lv_app_sc_page_rel_action); - /*Menu on the top*/ menuh = lv_rect_create(lv_scr_act(), NULL); - lv_obj_set_size(menuh, LV_HOR_RES, app_style.menu_h); - lv_obj_set_pos(menuh, 0, 0); - lv_obj_set_style(menuh, &app_style.menu_bg); + lv_obj_set_width(menuh, LV_HOR_RES); + lv_rect_set_fit(menuh, false, true); + lv_obj_set_style(menuh, &app_style.menu); app_btn = lv_btn_create(menuh, NULL); - lv_obj_set_style(app_btn, &app_style.menu_btn); - lv_obj_set_height(app_btn, app_style.menu_h); - lv_rect_set_fit(app_btn, true, false); + lv_btn_set_styles(app_btn, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); + lv_rect_set_fit(app_btn, true, true); lv_btn_set_rel_action(app_btn, lv_app_menu_rel_action); lv_obj_t * app_label = lv_label_create(app_btn, NULL); - lv_obj_set_style(app_label, &app_style.menu_btn_label); lv_label_set_text(app_label, "Apps"); lv_obj_set_pos(app_btn, 0, 0); - + lv_obj_set_pos(menuh, 0, 0); +/* sys_apph = lv_rect_create(menuh, NULL); lv_rect_set_layout(sys_apph, LV_RECT_LAYOUT_ROW_M); lv_rect_set_fit(sys_apph, true, false); - lv_obj_set_height(sys_apph, app_style.menu_h); lv_obj_set_style(sys_apph, lv_rects_get(LV_RECTS_TRANSP, NULL)); lv_obj_t * clock = lv_label_create(sys_apph, NULL); lv_obj_set_style(clock, &app_style.menu_btn_label); lv_label_set_text(clock, "20:17"); - lv_obj_align(sys_apph, NULL, LV_ALIGN_IN_RIGHT_MID, 0, 0); + lv_obj_align(sys_apph, NULL, LV_ALIGN_IN_RIGHT_MID, 0, 0);*/ + + /*Shortcut area*/ + sc_page = lv_page_create(lv_scr_act(), NULL); + lv_obj_set_style(sc_page, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); + lv_obj_set_style(lv_page_get_scrl(sc_page), lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_obj_set_size(sc_page, LV_HOR_RES, LV_VER_RES - lv_obj_get_height(menuh)); + lv_obj_set_pos(sc_page, 0, lv_obj_get_height(menuh)); + lv_obj_set_width(lv_page_get_scrl(sc_page), LV_HOR_RES - 20); + lv_rect_set_fit(lv_page_get_scrl(sc_page), false, true); + lv_rect_set_layout(lv_page_get_scrl(sc_page), LV_RECT_LAYOUT_GRID); + lv_page_set_rel_action(sc_page, lv_app_sc_page_rel_action); + lv_page_set_sb_mode(sc_page, LV_PAGE_SB_MODE_AUTO); + - lv_app_style_refr(); } + #endif /*----------------------- @@ -606,7 +592,7 @@ static void lv_app_init_desktop(void) #if LV_APP_DESKTOP != 0 /** - * CAlled when the "Apps" button is released to open or close the app. list + * Called when the "Apps" button is released to open or close the app. list * @param app_btn pointer to the "Apps" button * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK because the "Apps" button is never deleted @@ -621,9 +607,11 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d /*Create the app. list*/ else { app_list = lv_list_create(lv_scr_act(), NULL); - lv_obj_set_style(app_list, &app_style.app_list); - lv_obj_set_size(app_list, app_style.app_list_w, app_style.app_list_h); - lv_obj_set_y(app_list, app_style.menu_h); + lv_obj_t * scrl = lv_page_get_scrl(app_list); + lv_obj_set_style(scrl, &app_style.menu); + lv_obj_set_size(app_list, LV_HOR_RES / 3, (LV_VER_RES * 3) / 4); + lv_obj_align(app_list, menuh, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_list_set_styles_liste(app_list, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); lv_app_dsc_t ** dsc; lv_obj_t * elem; @@ -681,7 +669,7 @@ static lv_action_res_t lv_app_sc_page_rel_action(lv_obj_t * page, lv_dispi_t * d if(con_send != NULL) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_bg); + if(i->sc != NULL) lv_btn_set_styles(i->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); } con_send = NULL; } @@ -726,13 +714,13 @@ static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi) else { lv_app_inst_t * app = lv_obj_get_free_p(sc); if(app != con_send) { /*Do nothing with the sender*/ - lv_btns_t * style = lv_obj_get_style(sc); + lv_style_t * style = lv_obj_get_style(sc); /*Add connection to this application*/ - if(style == &app_style.sc_bg) { - lv_obj_set_style(sc, &app_style.sc_rec_bg); + if(style == &app_style.sc_rel) { + lv_btn_set_styles(sc, &app_style.sc_rec_rel, &app_style.sc_rec_pr, NULL, NULL, NULL); lv_app_con_set(con_send, app); } else { /*Remove the applications connection*/ - lv_obj_set_style(sc, &app_style.sc_bg); + lv_btn_set_styles(sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); lv_app_con_del(con_send, app); } } @@ -754,23 +742,23 @@ static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi) if(con_send == app_send) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_bg); + if(i->sc != NULL) lv_btn_set_styles(i->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); } con_send = NULL; } else { if(con_send != NULL) { lv_app_inst_t * i; LL_READ(app_inst_ll, i) { - if(i->sc != NULL) lv_obj_set_style(i->sc, &app_style.sc_bg); + if(i->sc != NULL) lv_btn_set_styles(i->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); } } con_send = app_send; - lv_obj_set_style(sc, &app_style.sc_send_bg); + lv_btn_set_styles(sc, &app_style.sc_send_rel, &app_style.sc_send_pr, NULL, NULL, NULL); lv_app_inst_t * i; LL_READ(app_inst_ll, i) { if(i->sc != NULL && lv_app_con_check(con_send, i) != false) { - lv_obj_set_style(i->sc, &app_style.sc_rec_bg); + lv_btn_set_styles(i->sc, &app_style.sc_rec_rel, &app_style.sc_rec_pr, NULL, NULL, NULL); } } } @@ -797,23 +785,13 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t #if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA != 0 && LV_APP_ANIM_WIN != 0 /*Temporally set a simpler style for the window during the animation*/ - memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_anim.page.sb_mode = LV_PAGE_SB_MODE_OFF; - /*Mix a new color for the header instead of using opacity */ - wins_anim.header.base.opa = OPA_COVER; - wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, - app_style.win.page.bg.gcolor, - app_style.win.header.base.opa); + lv_obj_t * win_page = lv_win_get_page(win); + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); - wins_anim.header.base.color = color_mix(wins_anim.header.base.color, - app_style.win.page.bg.base.color, - app_style.win.header.base.opa); - lv_obj_set_style(app->win, &wins_anim); - /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); lv_obj_anim(app->win, LV_ANIM_FLOAT_BOTTOM | ANIM_OUT, LV_APP_ANIM_WIN, 0, NULL); lv_obj_anim(app->win, LV_ANIM_FLOAT_LEFT | ANIM_OUT, LV_APP_ANIM_WIN, 0, lv_app_win_close_anim_cb); @@ -866,14 +844,12 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d app->conf_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_free_p(app->conf_win, app); - lv_obj_set_style(app->conf_win, &app_style.win); + char buf[256]; sprintf(buf, "%s settings", app->dsc->name); lv_win_set_title(app->conf_win, buf); lv_obj_t * scrl = lv_page_get_scrl(app->conf_win); - lv_rect_set_fit(scrl, false, true); lv_rect_set_layout(scrl, LV_RECT_LAYOUT_COL_L); - lv_obj_set_width(scrl, LV_HOR_RES - 2 * app_style.win.page.bg.hpad); lv_win_add_ctrl_btn(app->conf_win, "U:/icon_close" ,lv_win_close_action); @@ -905,24 +881,17 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) lv_obj_get_cords(app->sc, &cords); } - /*Temporally set a simpler style for the window during the animation*/ - memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_anim.page.sb_mode = LV_PAGE_SB_MODE_OFF; - /*Mix a new color for the header instead of using opacity */ - wins_anim.header.base.opa = OPA_COVER; - wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, - app_style.win.page.bg.gcolor, - app_style.win.header.base.opa); - wins_anim.header.base.color = color_mix(wins_anim.header.base.color, - app_style.win.page.bg.base.color, - app_style.win.header.base.opa); - lv_obj_set_style(app->win, &wins_anim); - + + /*Temporally set a simpler style for the window during the animation*/ + lv_obj_t * win_page = lv_win_get_page(app->win); + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); + /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); + anim_t a; a.act_time = 0; @@ -986,23 +955,19 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) } /*Temporally set a simpler style for the window during the animation*/ - memcpy(&wins_anim, lv_obj_get_style(app->win), sizeof(lv_wins_t)); - wins_anim.page.sb_mode = LV_PAGE_SB_MODE_OFF; - /*Mix a new color for the header instead of using opacity */ - wins_anim.header.base.opa = OPA_COVER; - wins_anim.header.gcolor = color_mix(wins_anim.header.gcolor, - app_style.win.page.bg.gcolor, - app_style.win.header.base.opa); - - wins_anim.header.base.color = color_mix(wins_anim.header.base.color, - app_style.win.page.bg.base.color, - app_style.win.header.base.opa); - lv_obj_set_style(app->win, &wins_anim); + lv_obj_t * win_page = lv_win_get_page(app->win); + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->page.scrl, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); + + + /*Hide some elements to speed up the animation*/ + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); + lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); + lv_obj_set_hidden(lv_page_get_scrl(win_page), true); anim_t a; a.act_time = 0; @@ -1051,13 +1016,12 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) */ static void lv_app_win_open_anim_cb(lv_obj_t * app_win) { + lv_obj_t * win_page = lv_win_get_page(app_win); + /*Unhide the the elements*/ lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->btnh, false); lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->title, false); - lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->page.scrl, false); - - /*Restore the style*/ - lv_obj_set_style(app_win, &app_style.win); + lv_obj_set_hidden(lv_page_get_scrl(win_page), false); } /** @@ -1087,148 +1051,102 @@ static void lv_app_win_minim_anim_cb(lv_obj_t * app_win) */ static void lv_app_init_style(void) { - /*Coordinates*/ -#if LV_APP_DESKTOP != 0 - app_style.menu_h = 4 * LV_DPI / 5; - app_style.app_list_w = LV_HOR_RES / 3; - app_style.app_list_h = (3 * LV_VER_RES) / 4; -#else - app_style.menu_h = 0; - app_style.app_list_w = 0; - app_style.app_list_h = 0; -#endif - - app_style.sc_title_margin = 2 * LV_DOWNSCALE; - /*Menu style*/ - lv_rects_get(LV_RECTS_PLAIN,&app_style.menu_bg); - app_style.menu_bg.base.color = COLOR_BLACK; - app_style.menu_bg.gcolor = COLOR_BLACK; - app_style.menu_bg.base.opa = OPA_80; - app_style.menu_bg.radius = 0; - app_style.menu_bg.bwidth = 0; - app_style.menu_bg.swidth = 0; - app_style.menu_bg.vpad = LV_DPI / 10; - app_style.menu_bg.hpad = LV_DPI / 10; - app_style.menu_bg.opad = LV_DPI / 10; + lv_style_get(LV_STYLE_PLAIN,&app_style.menu); + app_style.menu.ccolor = COLOR_WHITE; + app_style.menu.mcolor = COLOR_BLACK; + app_style.menu.gcolor = COLOR_BLACK; + app_style.menu.opa = OPA_80; + app_style.menu.radius = 0; + app_style.menu.bwidth = 0; + app_style.menu.swidth = 0; + app_style.menu.vpad = LV_DPI / 10; + app_style.menu.hpad = LV_DPI / 10; + app_style.menu.opad = LV_DPI / 10; - lv_btns_get(LV_BTNS_DEF,&app_style.menu_btn); - app_style.menu_btn.state_style[LV_BTN_STATE_REL].base.color = COLOR_BLACK; - app_style.menu_btn.state_style[LV_BTN_STATE_REL].gcolor = COLOR_BLACK; - app_style.menu_btn.state_style[LV_BTN_STATE_REL].bwidth = 0; - app_style.menu_btn.state_style[LV_BTN_STATE_REL].radius = 0; - app_style.menu_btn.state_style[LV_BTN_STATE_REL].swidth = 0; - app_style.menu_btn.state_style[LV_BTN_STATE_REL].empty = 1; + lv_style_get(LV_STYLE_BTN_REL,&app_style.menu_btn_rel); + app_style.menu_btn_rel.ccolor = COLOR_MAKE(0xd0, 0xe0, 0xf0); + app_style.menu_btn_rel.mcolor = COLOR_BLACK; + app_style.menu_btn_rel.gcolor = COLOR_BLACK; + app_style.menu_btn_rel.bwidth = 0; + app_style.menu_btn_rel.radius = 0; + app_style.menu_btn_rel.swidth = 0; + app_style.menu_btn_rel.empty = 1; + app_style.menu_btn_rel.font = font_get(LV_APP_FONT_LARGE); + app_style.menu_btn_rel.img_recolor = OPA_90; - app_style.menu_btn.state_style[LV_BTN_STATE_PR].base.color = COLOR_GRAY; - app_style.menu_btn.state_style[LV_BTN_STATE_PR].gcolor = COLOR_GRAY; - app_style.menu_btn.state_style[LV_BTN_STATE_PR].bwidth = 0; - app_style.menu_btn.state_style[LV_BTN_STATE_PR].radius = 0; - app_style.menu_btn.state_style[LV_BTN_STATE_PR].empty = 0; - app_style.menu_btn.state_style[LV_BTN_STATE_PR].swidth = 0; - - lv_labels_get(LV_LABELS_BTN,&app_style.menu_btn_label); - app_style.menu_btn_label.font = font_get(LV_APP_FONT_LARGE); - app_style.menu_btn_label.base.color = COLOR_MAKE(0xd0, 0xe0, 0xf0); - - lv_imgs_get(LV_IMGS_DEF,&app_style.menu_btn_img); - app_style.menu_btn_img.base.color = COLOR_WHITE; - app_style.menu_btn_img.recolor_opa = OPA_90; - - /*App list styles*/ - lv_lists_get(LV_LISTS_DEF,&app_style.app_list); - app_style.app_list.width_sb = 0; /*Do not keep place for the scrollbar*/ - memcpy(&app_style.app_list.page.scrl, &app_style.menu_bg, sizeof(lv_rects_t)); - app_style.app_list.page.bg.hpad = 0 * LV_DOWNSCALE; - app_style.app_list.page.bg.hpad = 0 * LV_DOWNSCALE; - app_style.app_list.page.bg.vpad = 0 * LV_DOWNSCALE; - app_style.app_list.page.bg.opad = 0 * LV_DOWNSCALE; - app_style.app_list.page.scrl.hpad = 0 * LV_DOWNSCALE; - app_style.app_list.page.scrl.vpad = 0 * LV_DOWNSCALE; - app_style.app_list.page.scrl.opad = 0 * LV_DOWNSCALE; - memcpy(&app_style.app_list.liste_label, &app_style.menu_btn_label, sizeof(lv_labels_t)); - memcpy(&app_style.app_list.liste_btn, &app_style.menu_btn, sizeof(lv_btns_t)); - app_style.app_list.page.sb.base.color = COLOR_GRAY; - app_style.app_list.page.sb.gcolor = COLOR_GRAY; - app_style.app_list.page.sb_width = 8 * LV_DOWNSCALE; - - /*Shortcut page styles*/ - lv_pages_get(LV_PAGES_TRANSP,&app_style.sc_page); - app_style.sc_page.bg.vpad = app_style.menu_h; - app_style.sc_page.bg.hpad = 0; - app_style.sc_page.bg.opad = 0; - app_style.sc_page.scrl.hpad = 10 * LV_DOWNSCALE; - app_style.sc_page.scrl.vpad = 10 * LV_DOWNSCALE; - app_style.sc_page.scrl.opad = 15 * LV_DOWNSCALE; + memcpy(&app_style.menu_btn_pr, &app_style.menu_btn_rel, sizeof(lv_style_t)); + app_style.menu_btn_pr.mcolor = COLOR_GRAY; + app_style.menu_btn_pr.gcolor = COLOR_GRAY; + app_style.menu_btn_pr.bwidth = 0; + app_style.menu_btn_pr.radius = 0; + app_style.menu_btn_pr.empty = 0; + app_style.menu_btn_pr.swidth = 0; /*Shortcut styles*/ - lv_btns_get(LV_BTNS_DEF,&app_style.sc_bg); - app_style.sc_bg.state_style[LV_BTN_STATE_REL].base.opa = OPA_80; - app_style.sc_bg.state_style[LV_BTN_STATE_REL].base.color = COLOR_WHITE; - app_style.sc_bg.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0x20, 0x30, 0x40); - app_style.sc_bg.state_style[LV_BTN_STATE_REL].bcolor = COLOR_MAKE(0x40, 0x60, 0x80); - app_style.sc_bg.state_style[LV_BTN_STATE_REL].bopa = OPA_70; - app_style.sc_bg.state_style[LV_BTN_STATE_REL].bwidth = 1 * LV_DOWNSCALE; - app_style.sc_bg.state_style[LV_BTN_STATE_REL].swidth = 0 * LV_DOWNSCALE; - app_style.sc_bg.state_style[LV_BTN_STATE_PR].base.opa = OPA_80; - app_style.sc_bg.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xB0, 0xD0, 0xF0); - app_style.sc_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x00, 0x00, 0x00); - app_style.sc_bg.state_style[LV_BTN_STATE_PR].bcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); - app_style.sc_bg.state_style[LV_BTN_STATE_PR].bopa = OPA_70; - app_style.sc_bg.state_style[LV_BTN_STATE_PR].bwidth = 1 * LV_DOWNSCALE; - app_style.sc_bg.state_style[LV_BTN_STATE_PR].swidth = 0 * LV_DOWNSCALE; + lv_style_get(LV_STYLE_BTN_REL,&app_style.sc_rel); + app_style.sc_rel.ccolor = COLOR_MAKE(0x10, 0x18, 0x20); + app_style.sc_rel.opa = OPA_80; + app_style.sc_rel.mcolor = COLOR_WHITE; + app_style.sc_rel.gcolor = COLOR_MAKE(0x20, 0x30, 0x40); + app_style.sc_rel.bcolor = COLOR_MAKE(0x40, 0x60, 0x80); + app_style.sc_rel.bopa = OPA_70; + app_style.sc_rel.bwidth = 1 * LV_DOWNSCALE; + app_style.sc_rel.swidth = 0 * LV_DOWNSCALE; + app_style.sc_rel.font = font_get(LV_APP_FONT_MEDIUM); + app_style.sc_rel.txt_align = 1; - memcpy(&app_style.sc_send_bg, &app_style.sc_bg, sizeof(lv_btns_t)); - app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].base.color = COLOR_MAKE(0xFF, 0xE0, 0xE0); - app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0x50, 0x20, 0x00); - app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].bcolor = COLOR_BLACK; - app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].bopa = OPA_30; - app_style.sc_send_bg.state_style[LV_BTN_STATE_REL].bwidth = 3 * LV_DOWNSCALE; - app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xFF, 0xB0, 0xB0); - app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x20, 0x10, 0x00); - app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_BLACK; - app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].bopa = OPA_30; - app_style.sc_send_bg.state_style[LV_BTN_STATE_PR].bwidth = 3 * LV_DOWNSCALE; + memcpy(&app_style.sc_pr, &app_style.sc_rel, sizeof(lv_style_t)); + app_style.sc_pr.opa = OPA_80; + app_style.sc_pr.mcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); + app_style.sc_pr.gcolor = COLOR_MAKE(0x00, 0x00, 0x00); + app_style.sc_pr.bcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); + app_style.sc_pr.bopa = OPA_70; + app_style.sc_pr.bwidth = 1 * LV_DOWNSCALE; + app_style.sc_pr.swidth = 0 * LV_DOWNSCALE; - memcpy(&app_style.sc_rec_bg, &app_style.sc_bg, sizeof(lv_btns_t)); - app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].base.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); - app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].gcolor = COLOR_MAKE(0x20, 0x50, 0x20); - app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].bcolor = COLOR_BLACK; - app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].bopa = OPA_30; - app_style.sc_rec_bg.state_style[LV_BTN_STATE_REL].bwidth = 3 * LV_DOWNSCALE; - app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].base.color = COLOR_MAKE(0xB0, 0xFF, 0xB0); - app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].gcolor = COLOR_MAKE(0x20, 0x20, 0x10); - app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].bcolor = COLOR_BLACK; - app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].bopa = OPA_30; - app_style.sc_rec_bg.state_style[LV_BTN_STATE_PR].bwidth = 3 * LV_DOWNSCALE; + memcpy(&app_style.sc_send_rel, &app_style.sc_rel, sizeof(lv_style_t)); + app_style.sc_send_rel.mcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); + app_style.sc_send_rel.gcolor = COLOR_MAKE(0x50, 0x20, 0x00); + app_style.sc_send_rel.bcolor = COLOR_BLACK; + app_style.sc_send_rel.bopa = OPA_30; + app_style.sc_send_rel.bwidth = 3 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_TITLE,&app_style.sc_title_style); - app_style.sc_title_style.font = font_get(LV_APP_FONT_SMALL); - app_style.sc_title_style.base.color = COLOR_MAKE(0x10, 0x18, 0x20); - app_style.sc_title_style.mid = 1; + memcpy(&app_style.sc_send_pr, &app_style.sc_pr, sizeof(lv_style_t)); + app_style.sc_send_pr.mcolor = COLOR_MAKE(0xFF, 0xB0, 0xB0); + app_style.sc_send_pr.gcolor = COLOR_MAKE(0x20, 0x10, 0x00); + app_style.sc_send_pr.gcolor = COLOR_BLACK; + app_style.sc_send_pr.bopa = OPA_30; + app_style.sc_send_pr.bwidth = 3 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_TXT, &app_style.sc_txt_style); - app_style.sc_txt_style.font = font_get(LV_APP_FONT_MEDIUM); - app_style.sc_txt_style.base.color = COLOR_MAKE(0x10, 0x18, 0x20); - app_style.sc_txt_style.mid = 1; + memcpy(&app_style.sc_rec_rel, &app_style.sc_send_rel, sizeof(lv_style_t)); + app_style.sc_rec_rel.mcolor = COLOR_MAKE(0xE0, 0xFF, 0xE0); + app_style.sc_rec_rel.gcolor = COLOR_MAKE(0x20, 0x50, 0x20); + app_style.sc_rec_rel.bcolor = COLOR_BLACK; + app_style.sc_rec_rel.bopa = OPA_30; + app_style.sc_rec_rel.bwidth = 3 * LV_DOWNSCALE; - /*Window styles*/ - lv_wins_get(LV_WINS_DEF,&app_style.win); - app_style.win.page.bg.vpad = app_style.win.ctrl_btn_h + 2 * app_style.win.header.vpad; - app_style.win.page.sb_mode = LV_PAGE_SB_MODE_AUTO; - memcpy(&app_style.win.header, &app_style.menu_bg, sizeof(lv_rects_t)); - app_style.win.header.base.opa = app_style.menu_bg.base.opa; - memcpy(&app_style.win.title, &app_style.menu_btn_label, sizeof(lv_labels_t)); - memcpy(&app_style.win.ctrl_btn, &app_style.menu_btn, sizeof(lv_btns_t)); - app_style.win.ctrl_btn.state_style[LV_BTN_STATE_REL].base.opa = app_style.menu_btn.state_style[LV_BTN_STATE_REL].base.opa; - app_style.win.ctrl_btn.state_style[LV_BTN_STATE_PR].base.opa = app_style.menu_btn.state_style[LV_BTN_STATE_REL].base.opa; - memcpy(&app_style.win.ctrl_img, &app_style.menu_btn_img, sizeof(lv_imgs_t)); + memcpy(&app_style.sc_rec_pr, &app_style.sc_send_pr, sizeof(lv_style_t)); + app_style.sc_rec_pr.mcolor = COLOR_MAKE(0xB0, 0xFF, 0xB0); + app_style.sc_rec_pr.gcolor = COLOR_MAKE(0x20, 0x20, 0x10); + app_style.sc_rec_pr.bcolor = COLOR_BLACK; + app_style.sc_rec_pr.bopa = OPA_30; + app_style.sc_rec_pr.bwidth = 3 * LV_DOWNSCALE; - lv_labels_get(LV_LABELS_TXT,&app_style.win_txt_style); - app_style.win_txt_style.font = font_get(LV_APP_FONT_MEDIUM); - app_style.win_txt_style.base.color = COLOR_MAKE(0x20, 0x20, 0x20); - app_style.win_txt_style.mid = 0; - app_style.win_txt_style.letter_space = 1 * LV_DOWNSCALE; + memcpy(&app_style.sc_title, &app_style.sc_rel, sizeof(lv_style_t)); + app_style.sc_title.font = font_get(LV_APP_FONT_SMALL); + + /*Window*/ + lv_style_get(LV_STYLE_PLAIN_COLOR, &app_style.win_header); + app_style.win_header.font = font_get(LV_APP_FONT_LARGE); + + lv_style_get(LV_STYLE_TRANSP, &app_style.win_scrl); + + + lv_style_get(LV_STYLE_BTN_REL, &app_style.win_cbtn_rel); + app_style.win_cbtn_rel.font = font_get(LV_IMG_DEF_SYMBOL_FONT); + + memcpy(&app_style.win_cbtn_pr, &app_style.win_cbtn_rel, sizeof(lv_style_t)); } /** diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index 24460b606..0a3a366a2 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -71,28 +71,20 @@ typedef struct __LV_APP_DSC_T }lv_app_dsc_t; typedef struct { - lv_rects_t menu_bg; - lv_btns_t menu_btn; - lv_labels_t menu_btn_label; - lv_imgs_t menu_btn_img; - lv_lists_t app_list; - lv_pages_t sc_page; - lv_labels_t win_txt_style; - lv_wins_t win; - lv_btns_t sc_bg; - lv_btns_t sc_send_bg; - lv_btns_t sc_rec_bg; - lv_labels_t sc_title_style; - lv_labels_t sc_txt_style; - - cord_t menu_h; - cord_t app_list_w; - cord_t app_list_h; - cord_t sc_title_margin; - - /*Calculated values, do not set them!*/ - cord_t win_useful_w; - cord_t win_useful_h; + lv_style_t menu; + lv_style_t menu_btn_rel; + lv_style_t menu_btn_pr; + lv_style_t sc_rel; + lv_style_t sc_pr; + lv_style_t sc_send_rel; + lv_style_t sc_send_pr; + lv_style_t sc_rec_rel; + lv_style_t sc_rec_pr; + lv_style_t sc_title; + lv_style_t win_header; + lv_style_t win_scrl; + lv_style_t win_cbtn_rel; + lv_style_t win_cbtn_pr; }lv_app_style_t; @@ -213,10 +205,6 @@ lv_app_inst_t * lv_app_get_next(lv_app_inst_t * prev, lv_app_dsc_t * dsc); */ lv_app_dsc_t ** lv_app_dsc_get_next(lv_app_dsc_t ** prev); -/** - * Refresh the style of the applications - * */ -void lv_app_style_refr(void); /** * Get a pointer to the application style structure. If modified then 'lv_app_refr_style' should be called diff --git a/lv_app/lv_app_util/lv_app_fsel.c b/lv_app/lv_app_util/lv_app_fsel.c index 6a58859b3..96b3a90a9 100644 --- a/lv_app/lv_app_util/lv_app_fsel.c +++ b/lv_app/lv_app_util/lv_app_fsel.c @@ -45,7 +45,6 @@ static char fsel_path[LV_APP_FSEL_PATH_MAX_LEN]; static uint16_t fsel_file_cnt; static lv_obj_t * fsel_win; static lv_obj_t * fsel_list; -static lv_lists_t fsel_lists; static void * fsel_param; static void (*fsel_ok_action)(void *, const char *); @@ -62,7 +61,7 @@ static void (*fsel_ok_action)(void *, const char *); */ void lv_app_fsel_init(void) { - lv_lists_get(LV_LISTS_TRANSP, &fsel_lists); + //TODO lv_lists_get(LV_LISTS_TRANSP, &fsel_lists); } /** @@ -95,7 +94,6 @@ void lv_app_fsel_open(const char * path, const char * filter, void * param, void lv_app_style_t * app_style = lv_app_style_get(); fsel_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_size(fsel_win, LV_HOR_RES, LV_VER_RES); - lv_obj_set_style(fsel_win, &app_style->win); lv_win_add_ctrl_btn(fsel_win, "U:/icon_close", fsel_close_action); @@ -139,10 +137,9 @@ static void fsel_refr(void) lv_win_set_title(fsel_win, fsel_path); /*Create a new list*/ - lv_app_style_t * app_style = lv_app_style_get(); fsel_list = lv_list_create(fsel_win, NULL); - lv_obj_set_width(fsel_list, app_style->win_useful_w); - lv_obj_set_style(fsel_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); + lv_obj_set_width(fsel_list, lv_win_get_width(fsel_win)); + //TODO lv_obj_set_style(fsel_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); lv_obj_set_drag_parent(fsel_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(fsel_list), true); lv_rect_set_fit(fsel_list, false, true); diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 90be28aff..5088c0e74 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -63,8 +63,8 @@ static cord_t kb_ta_ori_size; static uint8_t kb_mode; static void (*kb_close_action)(lv_obj_t *); static void (*kb_ok_action)(lv_obj_t *); -static lv_btnms_t kb_btnms; - +static lv_style_t style_btn_rel; +static lv_style_t style_btn_pr; /********************** * MACROS **********************/ @@ -78,18 +78,8 @@ static lv_btnms_t kb_btnms; */ void lv_app_kb_init(void) { - lv_app_style_t * app_style = lv_app_style_get(); - - lv_btnms_get(LV_BTNMS_DEF, &kb_btnms); - - memcpy(&kb_btnms.bg, &app_style->menu_bg, sizeof(lv_rects_t)); - kb_btnms.bg.hpad = 0; - kb_btnms.bg.vpad = 0; - kb_btnms.bg.opad = 0; - memcpy(&kb_btnms.btn, &app_style->menu_btn, sizeof(lv_btns_t)); - kb_btnms.btn.state_style[LV_BTN_STATE_REL].bwidth = 1 * LV_DOWNSCALE; - kb_btnms.btn.state_style[LV_BTN_STATE_REL].bcolor = COLOR_GRAY; - memcpy(&kb_btnms.label, &app_style->menu_btn_label, sizeof(lv_labels_t)); + lv_style_get(LV_STYLE_BTN_REL, &style_btn_rel); + lv_style_get(LV_STYLE_BTN_PR, &style_btn_pr); } /** @@ -118,14 +108,16 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t lv_obj_align(kb_btnm, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); lv_btnm_set_action(kb_btnm, lv_app_kb_action); if(mode & LV_APP_KB_MODE_TXT) { - kb_btnms.label.font = font_get(LV_APP_FONT_MEDIUM); + style_btn_rel.font = font_get(LV_APP_FONT_MEDIUM); + style_btn_pr.font = font_get(LV_APP_FONT_MEDIUM); lv_btnm_set_map(kb_btnm, kb_map_lc); } else if(mode & LV_APP_KB_MODE_NUM) { - kb_btnms.label.font = font_get(LV_APP_FONT_LARGE); + style_btn_rel.font = font_get(LV_APP_FONT_LARGE); + style_btn_pr.font = font_get(LV_APP_FONT_LARGE); lv_btnm_set_map(kb_btnm, kb_map_num); } - lv_obj_set_style(kb_btnm, &kb_btnms); + lv_btnm_set_styles_btn(kb_btnm, &style_btn_rel, &style_btn_pr); /*Reduce the size of the window and align it to the top*/ kb_win = lv_app_win_get_from_obj(kb_ta); @@ -133,8 +125,7 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t lv_obj_set_y(kb_win, 0); /*If the text area is higher then the new size of the window reduce its size too*/ - lv_app_style_t * app_style = lv_app_style_get(); - cord_t win_h = lv_obj_get_height(kb_win) - 2 * app_style->win.page.bg.vpad; + cord_t win_h = lv_obj_get_height(kb_win); kb_ta_ori_size = lv_obj_get_height(kb_ta); if(lv_obj_get_height(kb_ta) > win_h) { lv_obj_set_height(kb_ta, win_h); @@ -145,7 +136,7 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t #if LV_APP_ANIM_LEVEL != 0 lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); #else - lv_page_focus(kb_win, kb_ta, false); + lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); #endif } @@ -241,7 +232,7 @@ static lv_action_res_t lv_app_kb_action(lv_obj_t * btnm, uint16_t i) #if LV_APP_ANIM_LEVEL != 0 lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); #else - lv_page_focus(kb_win, kb_ta, false); + lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); #endif return LV_ACTION_RES_OK; } diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index d94c08cf4..fa4ccbe39 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -56,13 +56,11 @@ static lv_obj_t * notice_h; */ void lv_app_notice_init(void) { - lv_app_style_t * app_style = lv_app_style_get(); - notice_h = lv_rect_create(lv_scr_act(), NULL); - lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - app_style->menu_h - LV_DPI / 8); - lv_obj_set_y(notice_h, app_style->menu_h + LV_DPI / 8); + lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - LV_DPI); + lv_obj_set_y(notice_h, LV_DPI); lv_obj_set_click(notice_h, false); - lv_obj_set_style(notice_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); + lv_obj_set_style(notice_h, lv_style_get(LV_STYLE_TRANSP, NULL)); lv_rect_set_layout(notice_h, LV_RECT_LAYOUT_COL_R); } @@ -82,8 +80,7 @@ lv_obj_t * lv_app_notice_add(const char * format, ...) lv_obj_t * mbox; mbox = lv_mbox_create(notice_h, NULL); - lv_obj_set_style(mbox, lv_mboxs_get(LV_MBOXS_INFO, NULL)); - lv_mbox_set_title(mbox, ""); + // lv_obj_set_style(mbox, lv_mboxs_get(LV_MBOXS_INFO, NULL)); lv_mbox_set_text(mbox, txt); #if LV_APP_NOTICE_SHOW_TIME != 0 diff --git a/lv_appx/lv_app_example.c b/lv_appx/lv_app_example.c index 7da186140..314bc31fa 100644 --- a/lv_appx/lv_app_example.c +++ b/lv_appx/lv_app_example.c @@ -143,11 +143,9 @@ static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) { my_sc_data_t * sc_data = app->sc_data; - lv_app_style_t * app_style = lv_app_style_get(); sc_data->label = lv_label_create(sc, NULL); lv_label_set_text(sc_data->label, "Empty"); - lv_obj_set_style(sc_data->label, &app_style->sc_txt_style); lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); } diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index 4373926e7..bea6caec0 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -112,7 +112,7 @@ static lv_app_dsc_t my_app_dsc = .win_data_size = sizeof(my_win_data_t), }; -static lv_labels_t sc_labels; +static lv_style_t style_sc_label; /********************** @@ -130,9 +130,8 @@ static lv_labels_t sc_labels; const lv_app_dsc_t * lv_app_files_init(void) { lv_app_style_t * app_style = lv_app_style_get(); - memcpy(&sc_labels, &app_style->sc_txt_style, sizeof(lv_labels_t)); - sc_labels.font = font_get(LV_APP_FONT_LARGE); - + memcpy(&style_sc_label, &app_style->sc_rec_rel, sizeof(lv_style_t)); + style_sc_label.font = font_get(LV_APP_FONT_LARGE); return &my_app_dsc; } @@ -219,7 +218,7 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) sc_data->label = lv_label_create(sc, NULL); - lv_obj_set_style(sc_data->label, &sc_labels); + lv_obj_set_style(sc_data->label, &style_sc_label); lv_label_set_text(sc_data->label, fs_get_last(app_data->path)); lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); } @@ -298,10 +297,10 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) if(app_data->send_crc != 0) lv_btn_set_state(cb, LV_BTN_STATE_TREL); else lv_btn_set_state(cb, LV_BTN_STATE_REL); - /*Create a text area the type chunk size*/ + /*Create a text area to type chunk size*/ lv_obj_t * val_set_h; val_set_h = lv_rect_create(conf_win, NULL); - lv_obj_set_style(val_set_h, lv_rects_get(LV_RECTS_TRANSP, NULL)); + lv_obj_set_style(val_set_h, lv_style_get(LV_STYLE_PLAIN_COLOR, NULL)); lv_obj_set_click(val_set_h, false); lv_rect_set_fit(val_set_h, true, true); lv_rect_set_layout(val_set_h, LV_RECT_LAYOUT_ROW_M); @@ -313,7 +312,6 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) lv_obj_t * ta; char buf[32]; ta = lv_ta_create(val_set_h, NULL); - lv_obj_set_style(ta, lv_tas_get(LV_TAS_DEF, NULL)); lv_rect_set_fit(ta, false, true); lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); lv_obj_set_free_p(ta, app); @@ -342,7 +340,6 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) */ static void win_create_list(lv_app_inst_t * app) { - lv_app_style_t * app_style = lv_app_style_get(); my_win_data_t * win_data = app->win_data; /*Delete the previous list*/ @@ -352,8 +349,8 @@ static void win_create_list(lv_app_inst_t * app) /*Create a new list*/ win_data->file_list = lv_list_create(app->win, NULL); - lv_obj_set_width(win_data->file_list, app_style->win_useful_w); - lv_obj_set_style(win_data->file_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); + lv_obj_set_width(win_data->file_list, lv_win_get_width(app->win)); + //TODO lv_obj_set_style(win_data->file_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); lv_obj_set_drag_parent(win_data->file_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(win_data->file_list), true); lv_rect_set_fit(win_data->file_list, false, true); diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index deb12b63a..53704b683 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -36,8 +36,8 @@ typedef struct typedef struct { lv_obj_t * chart; - cord_t * cpu_dl; - cord_t * mem_dl; + lv_chart_dl_t * cpu_dl; + lv_chart_dl_t * mem_dl; lv_obj_t * label; }my_win_data_t; @@ -83,8 +83,8 @@ static lv_app_dsc_t my_app_dsc = static uint8_t mem_pct[LV_APP_SYSMON_PNUM]; static uint8_t cpu_pct[LV_APP_SYSMON_PNUM]; -static lv_bars_t cpu_bars; -static lv_bars_t mem_bars; +static lv_style_t cpu_bars; +static lv_style_t mem_bars; #if USE_DYN_MEM != 0 && DM_CUSTOM == 0 static dm_mon_t mem_mon; #endif @@ -109,30 +109,21 @@ const lv_app_dsc_t * lv_app_sysmon_init(void) memset(cpu_pct, 0, sizeof(cpu_pct)); /*Create bar styles for the shortcut*/ - lv_bars_get(LV_BARS_DEF, &cpu_bars); - cpu_bars.bg.gcolor = COLOR_MAKE(0xFF, 0xE0, 0xE0); - cpu_bars.bg.base.color = COLOR_MAKE(0xFF, 0xD0, 0xD0); - cpu_bars.bg.bcolor = COLOR_MAKE(0xFF, 0x20, 0x20); - cpu_bars.bg.bwidth = 1 * LV_DOWNSCALE; + lv_style_get(LV_STYLE_PRETTY_COLOR, &cpu_bars); - cpu_bars.indic.gcolor = COLOR_MARRON; - cpu_bars.indic.base.color = COLOR_RED; - cpu_bars.indic.bwidth = 0; + cpu_bars.gcolor = COLOR_MARRON; + cpu_bars.mcolor = COLOR_RED; + cpu_bars.bwidth = 0; - cpu_bars.label.base.color = COLOR_MAKE(0x40, 0x00, 0x00); - cpu_bars.label.font = font_get(LV_APP_FONT_MEDIUM); - cpu_bars.label.line_space = 0; - cpu_bars.label.mid = 1; + cpu_bars.ccolor = COLOR_MAKE(0x40, 0x00, 0x00); + cpu_bars.font = font_get(LV_APP_FONT_MEDIUM); + cpu_bars.line_space = 0; + cpu_bars.txt_align = 1; memcpy(&mem_bars, &cpu_bars, sizeof(cpu_bars)); - mem_bars.bg.gcolor = COLOR_MAKE(0xD0, 0xFF, 0xD0); - mem_bars.bg.base.color = COLOR_MAKE(0xE0, 0xFF, 0xE0); - mem_bars.bg.bcolor = COLOR_MAKE(0x20, 0xFF, 0x20); - - mem_bars.indic.gcolor = COLOR_GREEN; - mem_bars.indic.base.color = COLOR_LIME; - - mem_bars.label.base.color = COLOR_MAKE(0x00, 0x40, 0x00); + mem_bars.gcolor = COLOR_GREEN; + mem_bars.mcolor = COLOR_LIME; + mem_bars.ccolor = COLOR_MAKE(0x00, 0x40, 0x00); return &my_app_dsc; } @@ -193,14 +184,14 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) sc_data->bar_cpu = lv_bar_create(sc, NULL); lv_obj_set_size(sc_data->bar_cpu, w, 5 * lv_obj_get_height(sc) / 8); lv_obj_align(sc_data->bar_cpu, NULL, LV_ALIGN_IN_BOTTOM_LEFT, w, - lv_obj_get_height(sc) / 8); - lv_obj_set_style(sc_data->bar_cpu, &cpu_bars); + lv_bar_set_style_indic(sc_data->bar_cpu, &cpu_bars); lv_obj_set_click(sc_data->bar_cpu, false); lv_bar_set_range(sc_data->bar_cpu, 0, 100); lv_bar_set_format_str(sc_data->bar_cpu, "C\nP\nU"); sc_data->bar_mem = lv_bar_create(sc, sc_data->bar_cpu); lv_obj_align(sc_data->bar_mem, sc_data->bar_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); - lv_obj_set_style(sc_data->bar_mem, &mem_bars); + lv_bar_set_style_indic(sc_data->bar_mem, &mem_bars); lv_bar_set_format_str(sc_data->bar_mem, "M\ne\nm"); lv_app_sysmon_refr(); @@ -225,7 +216,6 @@ static void my_sc_close(lv_app_inst_t * app) static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) { my_win_data_t * win_data = app->win_data; - lv_app_style_t * app_style = lv_app_style_get(); /*Create a chart with two data lines*/ win_data->chart = lv_chart_create(win, NULL); @@ -235,21 +225,19 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_chart_set_range(win_data->chart, 0, 100); lv_chart_set_type(win_data->chart, LV_CHART_LINE); - win_data->cpu_dl = lv_chart_add_dataline(win_data->chart); - win_data->mem_dl = lv_chart_add_dataline(win_data->chart); + win_data->cpu_dl = lv_chart_add_dataline(win_data->chart, COLOR_RED, 2 * LV_DOWNSCALE); + win_data->mem_dl = lv_chart_add_dataline(win_data->chart, COLOR_BLUE, 2 * LV_DOWNSCALE); uint16_t i; for(i = 0; i < LV_APP_SYSMON_PNUM; i ++) { - win_data->cpu_dl[i] = cpu_pct[i]; - win_data->mem_dl[i] = mem_pct[i]; + win_data->cpu_dl->points[i] = cpu_pct[i]; + win_data->mem_dl->points[i] = mem_pct[i]; } /*Create a label for the details of Memory and CPU usage*/ - cord_t opad = app_style->win.page.scrl.opad; win_data->label = lv_label_create(win, NULL); lv_label_set_recolor(win_data->label, true); - lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_MID, opad, 0); - lv_obj_set_style(win_data->label, &app_style->win_txt_style); + lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 4, 0); lv_app_sysmon_refr(); @@ -317,7 +305,7 @@ static void sysmon_task(void * param) if(mem_mon.size_free < LV_APP_SYSMON_MEM_WARN && mem_warn_report == false) { mem_warn_report = true; lv_obj_t * not = lv_app_notice_add("Critically low memory"); - lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); + //TODO lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); } if(mem_mon.size_free > LV_APP_SYSMON_MEM_WARN) mem_warn_report = false; @@ -327,7 +315,7 @@ static void sysmon_task(void * param) if(frag_warn_report == false) { frag_warn_report = true; lv_obj_t * not =lv_app_notice_add("Critical memory\nfragmentation"); - lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); + //TODO lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); dm_defrag(); /*Defrag. if the fragmentation is critical*/ } @@ -369,8 +357,6 @@ static void lv_app_sysmon_refr(void) sprintf(buf_long, "%s%c%s MEMORY: N/A%c", buf_long, TXT_RECOLOR_CMD, MEM_LABEL_COLOR, TXT_RECOLOR_CMD); sprintf(buf_short, "%sMem: N/A\nFrag: N/A", buf_short); #endif - lv_app_style_t * app_style = lv_app_style_get(); - cord_t opad = app_style->win.page.scrl.opad; lv_app_inst_t * app; app = lv_app_get_next(NULL, &my_app_dsc); while(app != NULL) { @@ -378,7 +364,7 @@ static void lv_app_sysmon_refr(void) my_win_data_t * win_data = app->win_data; if(win_data != NULL) { lv_label_set_text(win_data->label, buf_long); - lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); + lv_chart_set_next(win_data->chart, win_data->mem_dl, mem_pct[LV_APP_SYSMON_PNUM - 1]); lv_chart_set_next(win_data->chart, win_data->cpu_dl, cpu_pct[LV_APP_SYSMON_PNUM - 1]); diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index a514694e5..2070d596a 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -31,6 +31,7 @@ /********************* * DEFINES *********************/ +#define OBJ_PAD (LV_DPI / 4) /********************** * TYPEDEFS @@ -99,11 +100,10 @@ static lv_app_dsc_t my_app_dsc = .win_data_size = sizeof(my_win_data_t), }; -const char * com_type_list_txt[] = {"Character", "Integer", "Log", "None", ""}; -lv_app_com_type_t com_type_list[] = {LV_APP_COM_TYPE_CHAR, LV_APP_COM_TYPE_INT, LV_APP_COM_TYPE_LOG, LV_APP_COM_TYPE_INV}; -const char * txt_format_list_txt[] = {"ASCII", "Hexadecimal", ""}; -lv_objs_t sc_txt_bgs; -lv_labels_t sc_txts; +static const char * com_type_list_txt[] = {"Character", "Integer", "Log", "None", ""}; +static lv_app_com_type_t com_type_list[] = {LV_APP_COM_TYPE_CHAR, LV_APP_COM_TYPE_INT, LV_APP_COM_TYPE_LOG, LV_APP_COM_TYPE_INV}; +static const char * txt_format_list_txt[] = {"ASCII", "Hexadecimal", ""}; +static lv_style_t style_sc_term; /********************** * MACROS @@ -119,17 +119,13 @@ lv_labels_t sc_txts; */ const lv_app_dsc_t * lv_app_terminal_init(void) { - lv_app_style_t * app_style = lv_app_style_get(); - - memcpy(&sc_txts, &app_style->sc_txt_style, sizeof(lv_labels_t)); - sc_txts.line_space = 0; - sc_txts.letter_space = 0; - sc_txts.mid = 0; - sc_txts.base.color = COLOR_WHITE; - - lv_objs_get(LV_OBJS_PLAIN, &sc_txt_bgs); - sc_txt_bgs.color = COLOR_MAKE(0x20, 0x20, 0x20); - + lv_style_get(LV_STYLE_PLAIN, &style_sc_term); + style_sc_term.line_space = 0; + style_sc_term.letter_space = 0; + style_sc_term.txt_align = 0; + style_sc_term.ccolor = COLOR_WHITE; + style_sc_term.mcolor = COLOR_MAKE(0x20, 0x20, 0x20); + style_sc_term.gcolor = COLOR_MAKE(0x20, 0x20, 0x20); return &my_app_dsc; } @@ -218,13 +214,12 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) /*Create a dark background*/ lv_obj_t * txt_bg = lv_obj_create(sc, NULL); lv_obj_set_size(txt_bg, 7 * LV_APP_SC_WIDTH / 8 , app->sc->cords.y2 - app->sc_title->cords.y2 - 10 * LV_DOWNSCALE); - lv_obj_set_style(txt_bg, &sc_txt_bgs); + lv_obj_set_style(txt_bg, &style_sc_term); lv_obj_align(txt_bg, app->sc_title, LV_ALIGN_OUT_BOTTOM_MID, 0, 3 * LV_DOWNSCALE); lv_obj_set_click(txt_bg, false); /*Add a text with the text of the terminal*/ sc_data->label = lv_label_create(txt_bg, NULL); - lv_obj_set_style(sc_data->label, &sc_txts); lv_label_set_long_mode(sc_data->label, LV_LABEL_LONG_BREAK); lv_obj_set_width(sc_data->label, lv_obj_get_width(txt_bg) - LV_APP_SC_WIDTH / 8); lv_label_set_text_static(sc_data->label, app_data->txt); @@ -250,18 +245,11 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) { my_win_data_t * win_data = app->win_data; my_app_data_t * app_data = app->app_data; - lv_app_style_t * app_style = lv_app_style_get(); - - cord_t opad = app_style->win.page.scrl.opad; /*Create a label for the text of the terminal*/ win_data->label = lv_label_create(win, NULL); lv_label_set_long_mode(win_data->label, LV_LABEL_LONG_BREAK); - lv_obj_set_width(win_data->label, LV_HOR_RES - - 2 * (app_style->win.page.bg.hpad + - app_style->win.page.scrl.hpad)); - - lv_obj_set_style(win_data->label, &app_style->win_txt_style); + lv_obj_set_width(win_data->label, lv_win_get_width(win)); lv_label_set_text_static(win_data->label, app_data->txt); /*Use the app. data text directly*/ /*Create a text area. Text can be added to the terminal from here by app. keyboard.*/ @@ -270,9 +258,8 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_obj_set_free_p(win_data->ta, app); lv_page_set_rel_action(win_data->ta, win_ta_rel_action); lv_ta_set_text(win_data->ta, ""); - lv_obj_set_style(win_data->ta, lv_tas_get(LV_TAS_DEF, NULL)); - if(app_data->txt[0] != '\0') lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, opad, opad); - else lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, opad, opad); + if(app_data->txt[0] != '\0') lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, OBJ_PAD, OBJ_PAD); + else lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, OBJ_PAD, OBJ_PAD); /*Create a clear button*/ win_data->clear_btn = lv_btn_create(win, NULL); @@ -280,13 +267,12 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_obj_set_free_p(win_data->clear_btn, app); lv_btn_set_rel_action(win_data->clear_btn, win_clear_rel_action); lv_obj_t * btn_label = lv_label_create(win_data->clear_btn, NULL); - lv_obj_set_style(btn_label, lv_labels_get(LV_LABELS_BTN, NULL)); lv_label_set_text(btn_label, "Clear"); - lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); + lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, OBJ_PAD, 0); /*Align the window to see the text area on the bottom*/ - lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win.page.scrl.vpad); + lv_obj_t * page = lv_win_get_page(app->win); + lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } @@ -308,12 +294,10 @@ static void my_win_close(lv_app_inst_t * app) static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) { my_app_data_t * app_data = app->app_data; - lv_app_style_t * app_style = lv_app_style_get(); lv_obj_t * label; label = lv_label_create(conf_win, NULL); lv_label_set_text(label, "Communication type"); - lv_obj_set_style(label, &app_style->win_txt_style); lv_obj_t * ddl; ddl = lv_ddlist_create(conf_win, NULL); @@ -405,13 +389,11 @@ static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) } if(win_data != NULL) { - lv_app_style_t * app_style =lv_app_style_get(); - cord_t opad = app_style->win.page.scrl.opad; lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, opad, opad); - lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win.page.scrl.vpad); + lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, OBJ_PAD, OBJ_PAD); + lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, OBJ_PAD, 0); + lv_obj_t * page = lv_win_get_page(app->win); + lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } return LV_ACTION_RES_OK; @@ -489,15 +471,13 @@ static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len) my_win_data_t * win_data = app->win_data; my_sc_data_t * sc_data = app->sc_data; - lv_app_style_t * app_style = lv_app_style_get(); if(win_data != NULL) { - cord_t opad = app_style->win.page.scrl.opad; lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, opad, opad); - lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, opad, 0); - lv_obj_align(lv_page_get_scrl(app->win), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - - app_style->win.page.scrl.vpad); + lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, OBJ_PAD, OBJ_PAD); + lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, OBJ_PAD, 0); + lv_obj_t * page = lv_win_get_page(app->win); + lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } /*Set the last line on the shortcut*/ diff --git a/lv_appx/lv_app_visual.c b/lv_appx/lv_app_visual.c index 4abd29c3f..9b27cba49 100644 --- a/lv_appx/lv_app_visual.c +++ b/lv_appx/lv_app_visual.c @@ -139,11 +139,9 @@ static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) { my_sc_data_t * sc_data = app->sc_data; - lv_app_style_t * app_style = lv_app_style_get(); sc_data->label = lv_label_create(sc, NULL); lv_label_set_text(sc_data->label, "Empty"); - lv_obj_set_style(sc_data->label, &app_style->sc_txt_style); lv_obj_align(sc_data->label, NULL, LV_ALIGN_CENTER, 0, 0); } diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index cbc7b978a..dff483701 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -33,8 +33,8 @@ static lv_style_t lv_style_plain; static lv_style_t lv_style_plain_color; static lv_style_t lv_style_pretty; static lv_style_t lv_style_pretty_color; -static lv_style_t lv_style_focus; -static lv_style_t lv_style_focus_color; +//static lv_style_t lv_style_focus; +//static lv_style_t lv_style_focus_color; static lv_style_t lv_style_btn_rel; static lv_style_t lv_style_btn_pr; static lv_style_t lv_style_btn_trel; @@ -64,7 +64,7 @@ void lv_style_init (void) lv_style_set_bcolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20 ,0x20)); lv_style_set_scolor(&lv_style_scr, COLOR_GRAY); lv_style_set_radius(&lv_style_scr, 0); - lv_style_set_bwidth(&lv_style_scr, LV_DPI / 30 >= 1 ? LV_DPI / 30 >= 1 : 1); + lv_style_set_bwidth(&lv_style_scr, 0); lv_style_set_swidth(&lv_style_scr, 0); lv_style_set_vpad(&lv_style_scr, LV_DPI / 6); lv_style_set_hpad(&lv_style_scr, LV_DPI / 6); @@ -86,15 +86,16 @@ void lv_style_init (void) /*Plain color style*/ memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_plain_color, COLOR_SILVER); - lv_style_set_mcolor(&lv_style_plain_color, COLOR_CYAN); - lv_style_set_gcolor(&lv_style_plain_color, COLOR_CYAN); + lv_style_set_ccolor(&lv_style_plain_color, COLOR_MAKE(0xf0, 0xf0, 0xf0)); + lv_style_set_mcolor(&lv_style_plain_color, COLOR_MAKE(0x40, 0x60, 0x80)); + lv_style_set_gcolor(&lv_style_plain_color, COLOR_MAKE(0x40, 0x60, 0x80)); /*Pretty style */ memcpy(&lv_style_pretty, &lv_style_plain, sizeof(lv_style_t)); lv_style_set_mcolor(&lv_style_pretty, COLOR_WHITE); lv_style_set_mcolor(&lv_style_pretty, COLOR_SILVER); lv_style_set_radius(&lv_style_pretty, LV_DPI / 10); + lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 20 >= 1 ? LV_DPI / 30 >= 1 : 1); /*Pretty color style*/ memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index 57453d43a..8ea7e4f9f 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -128,8 +128,6 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) if(valid != false) { lv_bar_ext_t * ext = lv_obj_get_ext(bar); lv_style_t * style = lv_obj_get_style(bar); - point_t p; - char buf[LV_BAR_TXT_MAX_LENGTH]; switch(sign) { case LV_SIGNAL_CLEANUP: diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index df1036eb0..8d40bd7b0 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -123,7 +123,6 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_btn_ext_t * ext = lv_obj_get_ext(btn); - lv_style_t * style = lv_obj_get_style(btn); lv_btn_state_t state = lv_btn_get_state(btn); bool tgl = lv_btn_get_tgl(btn); diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index 95a498337..5f188ec6d 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -294,16 +294,18 @@ void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb) } /** - * Set the style of the buttons in a given state + * Set the styles of the buttons of the button matrox * @param btnm pointer to a button matrix object * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) * @param style pointer to style */ -void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_btn_state_t state, lv_style_t * style) +void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_style_t * rel, lv_style_t * pr) { lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - if(state == LV_BTN_STATE_REL) ext->style_btn_rel = style; - if(state == LV_BTN_STATE_PR) ext->style_btn_pr = style; + ext->style_btn_rel = rel; + ext->style_btn_pr = pr; + + lv_obj_inv(btnm); } diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index 6b7e434ea..d8c5b4630 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -94,7 +94,8 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map); */ void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb); -void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_btn_state_t state, lv_style_t * style); +void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_style_t * rel, lv_style_t * pr); + /** * Get the current map of a button matrix * @param btnm pointer to a button matrix object diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 3c253953b..1b97811fa 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -137,9 +137,9 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) * @param chart pointer to a chart object * @param color color of the data line * @param width line width/point radius/column width - * @return pointer to the allocated data line (an array for the data points) + * @return pointer to the allocated data line ( */ -cord_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width) +lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); lv_chart_dl_t * dl = ll_ins_head(&ext->dl_ll); @@ -158,7 +158,7 @@ cord_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width) ext->dl_num++; - return dl->points; + return dl; } /** @@ -267,16 +267,16 @@ void lv_chart_set_drak_effect(lv_obj_t * chart, opa_t dark_eff) * @param dl pointer to a data line on 'chart' * @param y the new value of the most right data */ -void lv_chart_set_next(lv_obj_t * chart, cord_t * dl, cord_t y) +void lv_chart_set_next(lv_obj_t * chart, lv_chart_dl_t * dl, cord_t y) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); uint16_t i; for(i = 0; i < ext->pnum - 1; i++) { - dl[i] = dl[i + 1]; + dl->points[i] = dl->points[i + 1]; } - dl[ext->pnum - 1] = y; + dl->points[ext->pnum - 1] = y; lv_chart_refr(chart); } diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index 3e5a39931..9fef90cb9 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -90,9 +90,9 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param); /** * Allocate and add a data line to the chart * @param chart pointer to a chart object - * @return pointer to the allocated data lie (an array for the data points) + * @return pointer to the allocated data line */ -cord_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width); +lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width); /** * Refresh a chart if its data line has changed @@ -142,7 +142,7 @@ void lv_chart_set_drak_effect(lv_obj_t * chart, opa_t dark_eff); * @param dl pointer to a data line on 'chart' * @param y the new value of the most right data */ -void lv_chart_set_next(lv_obj_t * chart, cord_t * dl, cord_t y); +void lv_chart_set_next(lv_obj_t * chart, lv_chart_dl_t * dl, cord_t y); /** * Get the type of a chart diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index 878655728..078b696e9 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -221,11 +221,12 @@ void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr ext->styles_liste[LV_BTN_STATE_TPR] = tpr; ext->styles_liste[LV_BTN_STATE_INA] = ina; - lv_obj_t * liste = lv_obj_get_child(list, NULL); - - while(liste != NULL) { + lv_obj_t * scrl = lv_page_get_scrl(list); + lv_obj_t * liste = lv_obj_get_child(scrl, NULL); + while(liste != NULL) + { lv_btn_set_styles(liste, rel, pr, trel, tpr, ina); - liste = lv_obj_get_child(list, liste); + liste = lv_obj_get_child(scrl, liste); } } diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index d77499d8a..31053cc2e 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -134,7 +134,6 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) * make the object specific signal handling */ if(obj_valid != false) { lv_page_ext_t * ext = lv_obj_get_ext(page); - lv_style_t * style = lv_obj_get_style(page); lv_obj_t * child; switch(sign) { case LV_SIGNAL_CHILD_CHG: /*Move children to the scrollable object*/ diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index bc4eaa72c..e8275e712 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -94,7 +94,9 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) lv_label_set_text(ext->label, "Text area"); lv_page_glue_obj(ext->label, true); lv_obj_set_click(ext->label, false); - lv_obj_set_style(new_ta, lv_obj_get_style(ext->page.scrl)); + lv_obj_set_style(new_ta, lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_page_set_sb_mode(new_ta, LV_PAGE_SB_MODE_AUTO); + lv_obj_set_style(lv_page_get_scrl(new_ta), lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_size(new_ta, LV_TA_DEF_WIDTH, LV_TA_DEF_HEIGHT); } /*Copy an existing object*/ diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index a3addca06..71ef414d5 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -63,12 +63,9 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) ext->header = NULL; ext->title = NULL; ext->style_header = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); - ext->styles_btn[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); - ext->styles_btn[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); - ext->styles_btn[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); - ext->styles_btn[LV_BTN_STATE_TPR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); - ext->styles_btn[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); - ext->btn_size = LV_DPI; + ext->style_cbtn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->style_cbtn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->cbtn_size = (3 * LV_DPI) / 4; /*Init the new window object*/ if(copy == NULL) { @@ -216,10 +213,9 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ lv_win_ext_t * ext = lv_obj_get_ext(win); lv_obj_t * btn = lv_btn_create(ext->btnh, NULL); - lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], - ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], - ext->styles_btn[LV_BTN_STATE_INA]); - lv_obj_set_size(btn, ext->btn_size, ext->btn_size); + lv_btn_set_styles(btn, ext->style_cbtn_rel, ext->style_cbtn_pr, + NULL, NULL, NULL); + lv_obj_set_size(btn, ext->cbtn_size, ext->cbtn_size); lv_btn_set_rel_action(btn, rel_action); lv_obj_t * img = lv_img_create(btn, NULL); @@ -259,6 +255,40 @@ void lv_win_set_title(lv_obj_t * win, const char * title) lv_win_realign(win); } +/** + * Set the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + ext->cbtn_size = size; + + lv_win_realign(win); +} + +/** + * Set the style of the window control buttons in a given state + * @param win pointer to a window object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @param style pointer to style + */ +void lv_win_set_style_cbtn(lv_obj_t * win, lv_btn_state_t state, lv_style_t * style) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + if(state == LV_BTN_STATE_REL) ext->style_cbtn_rel = style; + if(state == LV_BTN_STATE_PR) ext->style_cbtn_pr = style; + lv_obj_t * cbtn; + cbtn = lv_obj_get_child(ext->btnh, NULL); + while(cbtn != NULL) { + lv_btn_set_styles(cbtn, ext->style_cbtn_rel, ext->style_cbtn_pr, NULL, NULL, NULL); + + cbtn = lv_obj_get_child(ext->btnh, cbtn); + } + +} + /*===================== * Getter functions *====================*/ @@ -285,6 +315,42 @@ lv_obj_t * lv_win_get_page(lv_obj_t * win) return ext->page; } +/** + * Get the s window header + * @param win pointer to a window object + * @return pointer to the window header object (lv_rect) + */ +lv_obj_t * lv_win_get_header(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + return ext->header; +} + +/** + * Get the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +cord_t lv_win_get_cbtn_size(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + return ext->cbtn_size; +} + +/** + * Get width of the content area (page scrollable) of the window + * @param win pointer to a window object + * @return the width of the contetn area + */ +cord_t lv_win_get_width(lv_obj_t * win) +{ + lv_win_ext_t * ext = lv_obj_get_ext(win); + lv_obj_t * scrl = lv_page_get_scrl(ext->page); + lv_style_t * style_scrl = lv_obj_get_style(scrl); + + return lv_obj_get_width(scrl) - 2 * style_scrl->hpad; +} + /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. @@ -341,7 +407,6 @@ static bool lv_win_design(lv_obj_t * win, const area_t * mask, lv_design_mode_t static void lv_win_realign(lv_obj_t * win) { lv_win_ext_t * ext = lv_obj_get_ext(win); - lv_style_t * style = lv_obj_get_style(win); if(ext->page == NULL || ext->btnh == NULL || ext->header == NULL || ext->title == NULL) return; @@ -349,12 +414,12 @@ static void lv_win_realign(lv_obj_t * win) /*Refresh the style of all control buttons*/ cbtn = lv_obj_get_child(ext->btnh, NULL); while(cbtn != NULL) { - lv_obj_set_size(cbtn, ext->btn_size, ext->btn_size); + lv_obj_set_size(cbtn, ext->cbtn_size, ext->cbtn_size); cbtn = lv_obj_get_child(ext->btnh, cbtn); } lv_style_t * btnh_style = lv_obj_get_style(ext->btnh); - lv_obj_set_height(ext->btnh, ext->btn_size + 2 * btnh_style->vpad * 2); + lv_obj_set_height(ext->btnh, ext->cbtn_size + 2 * btnh_style->vpad * 2); lv_obj_set_width(ext->header, lv_obj_get_width(win)); /*Align the higher object first to make the correct header size first*/ diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index 2a6528456..66bee5b0b 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -62,8 +62,9 @@ typedef struct lv_obj_t * title; /*Pointer to the title label of the window*/ lv_obj_t * btnh; /*Pointer to the control button holder rectangle of the window*/ lv_style_t * style_header; /*Style of the header rectangle*/ - lv_style_t * styles_btn[LV_BTN_STATE_NUM]; /*Style of the control buttons*/ - cord_t btn_size; /*Size of the control buttons (square)*/ + lv_style_t * style_cbtn_rel; /*Control button releases style*/ + lv_style_t * style_cbtn_pr; /*Control button pressed style*/ + cord_t cbtn_size; /*Size of the control buttons (square)*/ }lv_win_ext_t; /********************** @@ -120,6 +121,10 @@ const char * lv_win_get_title(lv_obj_t * win); lv_obj_t * lv_win_get_page(lv_obj_t * win); +lv_obj_t * lv_win_get_header(lv_obj_t * win); + +cord_t lv_win_get_width(lv_obj_t * win); + /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. From 092c0da4b51f2f8f5e2de77de32dbc97f8300c5a Mon Sep 17 00:00:00 2001 From: Gabor Date: Thu, 13 Apr 2017 15:57:02 +0200 Subject: [PATCH 28/53] updates according to the new style system --- lv_appx/lv_app_sysmon.c | 10 +- lv_draw/lv_draw.c | 54 ++++++++ lv_draw/lv_draw.h | 1 + lv_obj/lv_obj.c | 58 +++++--- lv_obj/lv_style.c | 16 ++- lv_objx/lv_bar.c | 51 +------ lv_objx/lv_bar.h | 4 +- lv_objx/lv_btn.c | 16 +-- lv_objx/lv_chart.c | 15 +- lv_objx/lv_chart.h | 2 +- lv_objx/lv_gauge.c | 295 ++++++++++++++-------------------------- lv_objx/lv_gauge.h | 46 ++----- lv_objx/lv_rect.c | 86 +----------- lv_objx/lv_rect.h | 1 - 14 files changed, 249 insertions(+), 406 deletions(-) diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 53704b683..1377710b5 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -187,12 +187,16 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) lv_bar_set_style_indic(sc_data->bar_cpu, &cpu_bars); lv_obj_set_click(sc_data->bar_cpu, false); lv_bar_set_range(sc_data->bar_cpu, 0, 100); - lv_bar_set_format_str(sc_data->bar_cpu, "C\nP\nU"); + lv_obj_t * label = lv_label_create(sc_data->bar_cpu, NULL); + lv_label_set_text(label, "C\nP\nU"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); sc_data->bar_mem = lv_bar_create(sc, sc_data->bar_cpu); lv_obj_align(sc_data->bar_mem, sc_data->bar_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); lv_bar_set_style_indic(sc_data->bar_mem, &mem_bars); - lv_bar_set_format_str(sc_data->bar_mem, "M\ne\nm"); + label = lv_label_create(sc_data->bar_mem, NULL); + lv_label_set_text(label, "M\nE\nM"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); lv_app_sysmon_refr(); } @@ -237,7 +241,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Create a label for the details of Memory and CPU usage*/ win_data->label = lv_label_create(win, NULL); lv_label_set_recolor(win_data->label, true); - lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 4, 0); + lv_obj_align(win_data->label, win_data->chart, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI / 4, 0); lv_app_sysmon_refr(); diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 3323e71a7..c5ed1cb59 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -47,6 +47,7 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h); #endif /*USE_LV_RECT != 0*/ @@ -103,6 +104,10 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_ lv_draw_rect_border_corner(cords_p, mask_p, style_p); } } + + if(style_p->swidth != 0) { + lv_draw_rect_shadow(cords_p, mask_p, style_p); + } } #endif /*USE_LV_RECT != 0*/ @@ -1035,6 +1040,55 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma } +/** + * Draw a shadow + * @param rect pointer to rectangle object + * @param mask pointer to a mask area (from the design functions) + */ +static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +{ + cord_t swidth = style->swidth; + if(swidth == 0) return; + uint8_t res = LV_DOWNSCALE * 2; + if(swidth < res) return; + + area_t shadow_area; + lv_style_t shadow_style; + memcpy(&shadow_area, cords_p, sizeof(area_t)); + + memcpy(&shadow_style, style, sizeof(lv_style_t)); + + shadow_style.empty = 1; + shadow_style.bwidth = swidth; + shadow_style.radius = style->radius; + if(shadow_style.radius == LV_RECT_CIRCLE) { + shadow_style.radius = MATH_MIN(area_get_width(cords_p), area_get_height(cords_p)); + } + shadow_style.radius += swidth + 1; + shadow_style.bcolor = style->scolor; + shadow_style.bopa = 100; + + shadow_area.x1 -= swidth; + shadow_area.y1 -= swidth; + shadow_area.x2 += swidth; + shadow_area.y2 += swidth; + + cord_t i; + shadow_style.opa = style->opa / (swidth / res); + + for(i = 1; i < swidth; i += res) { + lv_draw_rect_border_straight(&shadow_area, mask_p, &shadow_style); + lv_draw_rect_border_corner(&shadow_area, mask_p, &shadow_style); + shadow_style.radius -= res; + shadow_style.bwidth -= res; + shadow_area.x1 += res; + shadow_area.y1 += res; + shadow_area.x2 -= res; + shadow_area.y2 -= res; + } +} + + static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h) { if(r >= (w >> 1)){ diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index 0bc693ef7..cacaa2f5a 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -16,6 +16,7 @@ /********************* * DEFINES *********************/ +#define LV_RECT_CIRCLE ((cord_t)-1) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 324ee829f..b1d086a36 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -8,12 +8,12 @@ *********************/ #include -#include -#include +#include #include #include #include #include +#include "lvgl/lv_draw/lv_draw_rbasic.h" #include #include #include @@ -305,13 +305,20 @@ bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param) { bool valid = true; + lv_style_t * style = lv_obj_get_style(obj); switch(sign) { - case LV_SIGNAL_CHILD_CHG: - /*Return 'invalid' if the child change signal is not enabled*/ - if(lv_obj_is_protected(obj, LV_PROTECT_CHILD_CHG) != false) valid = false; - break; - default: - break; + case LV_SIGNAL_CHILD_CHG: + /*Return 'invalid' if the child change signal is not enabled*/ + if(lv_obj_is_protected(obj, LV_PROTECT_CHILD_CHG) != false) valid = false; + break; + case LV_SIGNAL_REFR_EXT_SIZE: + if(style->swidth > obj->ext_size) obj->ext_size = style->swidth; + break; + case LV_SIGNAL_STYLE_CHG: + lv_obj_refr_ext_size(obj); + break; + default: + break; } return valid; @@ -1425,18 +1432,33 @@ void * lv_obj_get_free_p(lv_obj_t * obj) static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode_t mode) { if(mode == LV_DESIGN_COVER_CHK) { - bool cover; - cover = area_is_in(mask_p, &obj->cords); - return cover; + + /* Because of the radius it is not sure the area is covered + * Check the areas where there is no radius*/ + lv_style_t * style = lv_obj_get_style(obj); + if(style->empty != 0) return false; + + uint16_t r = style->radius; + + if(r == LV_RECT_CIRCLE) return false; + + area_t area_tmp; + + /*Check horizontally without radius*/ + lv_obj_get_cords(obj, &area_tmp); + area_tmp.x1 += r; + area_tmp.x2 -= r; + if(area_is_in(mask_p, &area_tmp) != true) return false; + + /*Check vertically without radius*/ + lv_obj_get_cords(obj, &area_tmp); + area_tmp.y1 += r; + area_tmp.y2 -= r; + if(area_is_in(mask_p, &area_tmp) != true) return false; + } else if(mode == LV_DESIGN_DRAW_MAIN) { lv_style_t * style = lv_obj_get_style(obj); - - /*Simply draw a rectangle*/ -#if LV_VDB_SIZE == 0 - lv_rfill(&obj->cords, mask_p, style->color, style->opa); -#else - lv_vfill(&obj->cords, mask_p, style->mcolor, style->opa); -#endif + lv_draw_rect(&obj->cords, mask_p, style); } return true; } diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index dff483701..f7b214247 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -61,13 +61,13 @@ void lv_style_init (void) lv_style_set_mcolor(&lv_style_scr, COLOR_WHITE); lv_style_set_gcolor(&lv_style_scr, COLOR_WHITE); - lv_style_set_bcolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20 ,0x20)); + lv_style_set_bcolor(&lv_style_scr, COLOR_WHITE); lv_style_set_scolor(&lv_style_scr, COLOR_GRAY); lv_style_set_radius(&lv_style_scr, 0); lv_style_set_bwidth(&lv_style_scr, 0); lv_style_set_swidth(&lv_style_scr, 0); lv_style_set_vpad(&lv_style_scr, LV_DPI / 6); - lv_style_set_hpad(&lv_style_scr, LV_DPI / 6); + lv_style_set_hpad(&lv_style_scr, LV_DPI / 4); lv_style_set_opad(&lv_style_scr, LV_DPI / 6); lv_style_set_bopa(&lv_style_scr, OPA_COVER); lv_style_set_empty(&lv_style_scr, false); @@ -86,21 +86,27 @@ void lv_style_init (void) /*Plain color style*/ memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_plain_color, COLOR_MAKE(0xf0, 0xf0, 0xf0)); + lv_style_set_ccolor(&lv_style_plain_color, COLOR_RED);//MAKE(0xf0, 0xf0, 0xf0)); lv_style_set_mcolor(&lv_style_plain_color, COLOR_MAKE(0x40, 0x60, 0x80)); lv_style_set_gcolor(&lv_style_plain_color, COLOR_MAKE(0x40, 0x60, 0x80)); /*Pretty style */ memcpy(&lv_style_pretty, &lv_style_plain, sizeof(lv_style_t)); lv_style_set_mcolor(&lv_style_pretty, COLOR_WHITE); - lv_style_set_mcolor(&lv_style_pretty, COLOR_SILVER); + lv_style_set_gcolor(&lv_style_pretty, COLOR_SILVER); + lv_style_set_bcolor(&lv_style_pretty, COLOR_GRAY); lv_style_set_radius(&lv_style_pretty, LV_DPI / 10); lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 20 >= 1 ? LV_DPI / 30 >= 1 : 1); +// lv_style_set_swidth(&lv_style_pretty, LV_DPI / 6); +// lv_style_set_scolor(&lv_style_pretty, COLOR_BLACK); /*Pretty color style*/ memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); + lv_style_set_ccolor(&lv_style_pretty_color, COLOR_RED);//MAKE(0xf0, 0xf0, 0xf0)); lv_style_set_mcolor(&lv_style_pretty_color, COLOR_WHITE); - lv_style_set_mcolor(&lv_style_pretty_color, COLOR_CYAN); + lv_style_set_gcolor(&lv_style_pretty_color, COLOR_CYAN); + lv_style_set_scolor(&lv_style_pretty_color, COLOR_BLACK); + lv_style_set_swidth(&lv_style_pretty_color, LV_DPI / 2); /*Transparent style*/ memcpy(&lv_style_transp, &lv_style_plain, sizeof(lv_style_t)); diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index 8ea7e4f9f..e0377fc76 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -18,8 +18,6 @@ /********************* * DEFINES *********************/ -#define LV_BAR_TXT_MAX_LENGTH 64 -#define LV_BAR_DEF_FORMAT "%d %%" #define LV_BAR_DEF_WIDTH (LV_DPI * 2) #define LV_BAR_DEF_HEIGHT (LV_DPI / 2) @@ -58,7 +56,7 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor basic object*/ - lv_obj_t * new_bar = lv_rect_create(par, copy); + lv_obj_t * new_bar = lv_obj_create(par, copy); dm_assert(new_bar); /*Allocate the object type specific extended data*/ @@ -67,8 +65,6 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) ext->min_value = 0; ext->max_value = 100; ext->act_value = 0; - ext->format_str = NULL; - ext->label = NULL; ext->style_indic = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); /* Save the rectangle design function. @@ -80,14 +76,6 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new bar object*/ if(copy == NULL) { - - - ext->format_str = dm_alloc(strlen(LV_BAR_DEF_FORMAT) + 1); - strcpy(ext->format_str, LV_BAR_DEF_FORMAT); - - ext->label = lv_label_create(new_bar, NULL); - - lv_rect_set_layout(new_bar, LV_RECT_LAYOUT_CENTER); lv_obj_set_click(new_bar, false); lv_obj_set_size(new_bar, LV_BAR_DEF_WIDTH, LV_BAR_DEF_HEIGHT); lv_obj_set_style(new_bar, lv_style_get(LV_STYLE_PRETTY, NULL)); @@ -95,13 +83,10 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) lv_bar_set_value(new_bar, ext->act_value); } else { lv_bar_ext_t * ext_copy = lv_obj_get_ext(copy); - ext->format_str = dm_alloc(strlen(ext_copy->format_str) + 1); - strcpy(ext->format_str, ext_copy->format_str); ext->min_value = ext_copy->min_value; ext->max_value = ext_copy->max_value; ext->act_value = ext_copy->act_value; ext->style_indic = ext_copy->style_indic; - ext->label = lv_label_create(new_bar, ext_copy->label); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_bar); @@ -126,20 +111,7 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - lv_bar_ext_t * ext = lv_obj_get_ext(bar); - lv_style_t * style = lv_obj_get_style(bar); - switch(sign) { - case LV_SIGNAL_CLEANUP: - dm_free(ext->format_str); - ext->format_str = NULL; - break; - case LV_SIGNAL_STYLE_CHG: - lv_obj_set_style(ext->label, style); - break; - default: - break; - } } return valid; @@ -160,10 +132,6 @@ void lv_bar_set_value(lv_obj_t * bar, int16_t value) ext->act_value = value > ext->max_value ? ext->max_value : value; ext->act_value = ext->act_value < ext->min_value ? ext->min_value : ext->act_value; - char buf[LV_BAR_TXT_MAX_LENGTH]; - sprintf(buf, ext->format_str, ext->act_value); - lv_label_set_text(ext->label, buf); - lv_obj_inv(bar); } @@ -185,20 +153,6 @@ void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max) lv_obj_inv(bar); } -/** - * Set format string for the label of the bar - * @param bar pointer to bar object - * @param format a printf-like format string with one number (e.g. "Loading (%d)") - */ -void lv_bar_set_format_str(lv_obj_t * bar, const char * format) -{ - lv_bar_ext_t * ext = lv_obj_get_ext(bar); - dm_free(ext->format_str); - ext->format_str = dm_alloc(strlen(format) + 1); - strcpy(ext->format_str, format); - lv_bar_set_value(bar, ext->act_value); -} - /** * Set the style of bar indicator * @param bar pointer to a bar obeject @@ -246,7 +200,6 @@ lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar) * STATIC FUNCTIONS **********************/ - /** * Handle the drawing related tasks of the bars * @param bar pointer to an object @@ -259,8 +212,6 @@ lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar) */ static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode) { - if(ancestor_design_f == NULL) return false; - if(mode == LV_DESIGN_COVER_CHK) { /*Return false if the object is not covers the mask_p area*/ return ancestor_design_f(bar, mask, mode); diff --git a/lv_objx/lv_bar.h b/lv_objx/lv_bar.h index 91fed1a2a..98c504f02 100644 --- a/lv_objx/lv_bar.h +++ b/lv_objx/lv_bar.h @@ -37,13 +37,11 @@ /*Data of bar*/ typedef struct { - lv_rect_ext_t rect_ext; /*Ext. of ancestor*/ + /*No inherited ext*/ /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * label; /*Pointer to the label on the bar*/ int16_t act_value; /*Current value of the bar*/ int16_t min_value; /*Minimum value of the bar*/ int16_t max_value; /*Maximum value of the bar*/ - char * format_str; /*Format string of the label. E.g. "Progress: %d"*/ lv_style_t * style_indic; /*Style of the indicator*/ }lv_bar_ext_t; diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index 8d40bd7b0..133807e51 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -29,15 +29,14 @@ /********************** * STATIC PROTOTYPES **********************/ +#if 0 static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t mode); - +#endif /********************** * STATIC VARIABLES **********************/ -static lv_design_f_t ancestor_design_f; - /********************** * MACROS **********************/ @@ -74,10 +73,7 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) ext->lpr_exec = 0; ext->tgl = 0; - if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_btn); - lv_obj_set_signal_f(new_btn, lv_btn_signal); - lv_obj_set_design_f(new_btn, lv_btn_design); /*If no copy do the basic initialization*/ if(copy == NULL) { @@ -351,6 +347,8 @@ lv_style_t * lv_btn_get_style(lv_obj_t * btn, lv_btn_state_t state) /********************** * STATIC FUNCTIONS **********************/ + +#if 0 /** * Handle the drawing related tasks of the buttons * @param btn pointer to a button object @@ -366,12 +364,12 @@ static bool lv_btn_design(lv_obj_t * btn, const area_t * mask, lv_design_mode_t /* Because of the radius it is not sure the area is covered*/ if(mode == LV_DESIGN_COVER_CHK) { - return ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ + return false; } else if(mode == LV_DESIGN_DRAW_MAIN || mode == LV_DESIGN_DRAW_POST) { - ancestor_design_f(btn, mask, mode); /*Draw the rectangle*/ + } return true; } - +#endif #endif diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 1b97811fa..4e0d55777 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -61,13 +61,13 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor basic object*/ - lv_obj_t * new_chart = lv_rect_create(par, copy); + lv_obj_t * new_chart = lv_obj_create(par, copy); dm_assert(new_chart); /*Allocate the object type specific extended data*/ lv_chart_ext_t * ext = lv_obj_alloc_ext(new_chart, sizeof(lv_chart_ext_t)); dm_assert(ext); - ll_init(&ext->dl_ll, sizeof(cord_t *)); + ll_init(&ext->dl_ll, sizeof(lv_chart_dl_t)); ext->dl_num = 0; ext->ymin = LV_CHART_YMIN_DEF; ext->ymax = LV_CHART_YMAX_DEF; @@ -114,7 +114,7 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(chart, sign, param); + valid = lv_obj_signal(chart, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -147,6 +147,9 @@ lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t wi if(dl == NULL) return NULL; + dl->width = width; + dl->color = color; + dl->points = dm_alloc(sizeof(cord_t) * ext->pnum); uint16_t i; @@ -352,10 +355,8 @@ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mod /*Return false if the object is not covers the mask_p area*/ return ancestor_design_f(chart, mask, mode); } else if(mode == LV_DESIGN_DRAW_MAIN) { - /*Draw the rectangle ancient*/ - ancestor_design_f(chart, mask, mode); - - /*Draw the object*/ + /*Draw the background*/ + lv_draw_rect(&chart->cords, mask, lv_obj_get_style(chart)); lv_chart_ext_t * ext = lv_obj_get_ext(chart); diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index 9fef90cb9..300799f2e 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -43,7 +43,7 @@ typedef struct /*Data of chart */ typedef struct { - lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ + /*No inherited ext*/ /*Ext. of ancestor*/ /*New data for this type */ cord_t ymin; /*y min value (used to scale the data)*/ cord_t ymax; /*y max value (used to scale the data)*/ diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 536ddcfbd..44448cb6c 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -21,9 +21,9 @@ /********************* * DEFINES *********************/ -#define LV_GAUGE_DEF_WIDTH (150 * LV_DOWNSCALE) -#define LV_GAUGE_DEF_HEIGHT (150 * LV_DOWNSCALE) - +#define LV_GAUGE_DEF_WIDTH (3 * LV_DPI) +#define LV_GAUGE_DEF_HEIGHT (3 * LV_DPI) +#define LV_GAUGE_DEF_NEEDLE_COLOR COLOR_RED /********************** * TYPEDEFS **********************/ @@ -32,15 +32,14 @@ * STATIC PROTOTYPES **********************/ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mode_t mode); -static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask); -static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask); -static void lv_gauges_init(void); +static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_t * style); +static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style_t * style); /********************** * STATIC VARIABLES **********************/ -static lv_gauges_t lv_gauges_def; /*Default gauge style*/ static lv_design_f_t ancestor_design_f = NULL; + /********************** * MACROS **********************/ @@ -73,9 +72,12 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) ext->min = 0; ext->max = 100; ext->needle_num = 0; - ext->low_critical = 0; ext->values = NULL; - ext->txt = NULL; + ext->needle_color = NULL; + ext->low_critical = 0; + ext->scale_angle = 120; + ext->scale_label_num = 6; + ext->style_critical = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_gauge); @@ -85,10 +87,9 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new gauge gauge*/ if(copy == NULL) { - lv_gauge_set_needle_num(new_gauge, 1); - lv_gauge_set_text(new_gauge, "%d"); + lv_gauge_set_needle_num(new_gauge, 1, NULL); lv_obj_set_size(new_gauge, LV_GAUGE_DEF_WIDTH, LV_GAUGE_DEF_HEIGHT); - lv_obj_set_style(new_gauge, lv_gauges_get(LV_GAUGES_DEF, NULL)); + lv_obj_set_style(new_gauge, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing gauge*/ else { @@ -96,8 +97,7 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) ext->min = copy_ext->min; ext->max = copy_ext->max; ext->low_critical = copy_ext->low_critical; - lv_gauge_set_needle_num(new_gauge, lv_gauge_get_needle_num(copy)); - lv_gauge_set_text(new_gauge, lv_gauge_get_text(copy)); + lv_gauge_set_needle_num(new_gauge, copy_ext->needle_num, copy_ext->needle_color); uint8_t i; for(i = 0; i < ext->needle_num; i++) { @@ -129,13 +129,13 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - switch(sign) { - case LV_SIGNAL_CLEANUP: - dm_free(ext->values); - ext->values = NULL; - break; - default: - break; + if(sign == LV_SIGNAL_CLEANUP) { + dm_free(ext->values); + ext->values = NULL; + } + else if(sign == LV_SIGNAL_REFR_EXT_SIZE) { + lv_style_t * style_crit = lv_gauge_get_style_crit(gauge); + if(style_crit->swidth > gauge->ext_size) gauge->ext_size = style_crit->swidth; } } @@ -147,11 +147,12 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) *====================*/ /** - * Set the number of needles (should be <= LV_GAUGE_MAX_NEEDLE) + * Set the number of needles * @param gauge pointer to gauge object * @param num number of needles + * @param colors an array of colors for needles (with 'num' elements) */ -void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num) +void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num, color_t * colors) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); if(ext->values != NULL) dm_free(ext->values); @@ -164,6 +165,7 @@ void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num) } ext->needle_num = num; + ext->needle_color = colors; lv_obj_inv(gauge); } @@ -204,24 +206,6 @@ void lv_gauge_set_value(lv_obj_t * gauge, uint8_t needle, int16_t value) lv_obj_inv(gauge); } -/** - * Set text on a gauge - * @param gauge pinter to a gauge object - * @param txt a printf like format string - * with 1 place for a number (e.g. "Value: %d"); - */ -void lv_gauge_set_text(lv_obj_t * gauge, const char * txt) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - - if(ext->txt != NULL) dm_free(ext->txt); - - ext->txt = dm_alloc(strlen(txt) + 1); - strcpy(ext->txt, txt); - - lv_obj_inv(gauge); -} - /** * Set which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -236,6 +220,33 @@ void lv_gauge_set_low_critical(lv_obj_t * gauge, bool low) lv_obj_inv(gauge); } +/** + * Set the scale settings of a gauge + * @param gauge pointer to a gauge object + * @param angle angle of the scale (0..360) + * @param label_num number of labels on the scale (~5) + */ +void lv_gauge_set_scale(lv_obj_t * gauge, uint16_t angle, uint8_t label_num) +{ + lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); + ext->scale_angle = angle; + ext->scale_label_num = label_num; + + lv_obj_inv(gauge); +} + +/** + * Set the critical style of the gauge + * @param gauge pointer to a gauge object + * @param style pointer to the new critical style + */ +void lv_gauge_set_style_critical(lv_obj_t * gauge, lv_style_t * style) +{ + lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); + ext->style_critical = style; + gauge->signal_f(gauge, LV_SIGNAL_REFR_EXT_SIZE, NULL); + lv_obj_inv(gauge); +} /*===================== * Getter functions @@ -267,18 +278,6 @@ int16_t lv_gauge_get_value(lv_obj_t * gauge, uint8_t needle) return ext->values[needle]; } -/** - * Get the text of a gauge - * @param gauge pointer to gauge - * @return the set text. (not with the current value) - */ -const char * lv_gauge_get_text(lv_obj_t * gauge) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - return ext->txt; - -} - /** * Get which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -292,34 +291,17 @@ bool lv_gauge_get_low_critical(lv_obj_t * gauge) } /** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_gauges_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_gauges_t style + * Get the critical style of the gauge + * @param gauge pointer to a gauge object + * @return pointer to the critical style */ -lv_gauges_t * lv_gauges_get(lv_gauges_builtin_t style, lv_gauges_t * copy) +lv_style_t * lv_gauge_get_style_crit(lv_obj_t * gauge) { - static bool style_inited = false; + lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_gauges_init(); - style_inited = true; - } + if(ext->style_critical == NULL) return lv_obj_get_style(gauge); - lv_gauges_t *style_p; - - switch(style) { - case LV_GAUGES_DEF: - style_p = &lv_gauges_def; - break; - default: - style_p = &lv_gauges_def; - } - - if(copy != NULL) memcpy(copy, style_p, sizeof(lv_gauges_t)); - - return style_p; + return ext->style_critical; } /********************** @@ -344,13 +326,13 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod } /*Draw the object*/ else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_gauges_t * style = lv_obj_get_style(gauge); + lv_style_t * style_base = lv_obj_get_style(gauge); + lv_style_t * style_critical = lv_gauge_get_style_crit(gauge); lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); /* Draw the background * Re-color the gauge according to the critical value*/ - color_t mcolor_min = style->bg_rect.base.color; - color_t gcolor_min = style->bg_rect.gcolor; + lv_style_t style_bg; int16_t critical_val = ext->low_critical == 0 ? ext->min : ext->max; uint8_t i; @@ -363,15 +345,22 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod if(ext->low_critical != 0) ratio = OPA_COVER - ratio; - style->bg_rect.base.color= color_mix(style->critical_mcolor, mcolor_min, ratio); - style->bg_rect.gcolor = color_mix(style->critical_gcolor, gcolor_min, ratio); + /*Mix the normal and the critical style*/ + memcpy(&style_bg, style_base, sizeof(lv_style_t)); + style_bg.ccolor = color_mix(style_critical->ccolor, style_base->ccolor, ratio); + style_bg.mcolor= color_mix(style_critical->mcolor, style_base->mcolor, ratio); + style_bg.gcolor = color_mix(style_critical->gcolor, style_base->gcolor, ratio); + style_bg.bcolor = color_mix(style_critical->bcolor, style_base->bcolor, ratio); + style_bg.scolor = color_mix(style_critical->scolor, style_base->scolor, ratio); + style_bg.swidth = (cord_t)((cord_t)(style_critical->swidth + style_base->swidth) * ratio) >> 8; + + gauge->style_p = &style_bg; ancestor_design_f(gauge, mask, mode); - style->bg_rect.base.color= mcolor_min; - style->bg_rect.gcolor = gcolor_min; + gauge->style_p = style_base; - lv_gauge_draw_scale(gauge, mask); + lv_gauge_draw_scale(gauge, mask, &style_bg); - lv_gauge_draw_needle(gauge, mask); + lv_gauge_draw_needle(gauge, mask, &style_bg); } /*Post draw when the children are drawn*/ else if(mode == LV_DESIGN_DRAW_POST) { @@ -386,22 +375,21 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod * @param gauge pointer to gauge object * @param mask mask of drawing */ -static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) +static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_t * style) { - lv_gauges_t * style = lv_obj_get_style(gauge); lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); char scale_txt[16]; - cord_t r = lv_obj_get_width(gauge) / 2 - style->bg_rect.opad; + cord_t r = lv_obj_get_width(gauge) / 2 - style->hpad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; - int16_t angle_ofs = 90 + (360 - style->scale_angle) / 2; + int16_t angle_ofs = 90 + (360 - ext->scale_angle) / 2; uint8_t i; - for(i = 0; i < style->scale_label_num; i++) { + for(i = 0; i < ext->scale_label_num; i++) { /*Calculate the position a scale label*/ - int16_t angle = (i * style->scale_angle) / (style->scale_label_num - 1) + angle_ofs; + int16_t angle = (i * ext->scale_angle) / (ext->scale_label_num - 1) + angle_ofs; cord_t y = (int32_t)((int32_t)trigo_sin(angle) * r) / TRIGO_SIN_MAX; y += y_ofs; @@ -409,14 +397,14 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) cord_t x = (int32_t)((int32_t)trigo_sin(angle + 90) * r) / TRIGO_SIN_MAX; x += x_ofs; - int16_t scale_act = (int32_t)((int32_t)(ext->max - ext->min) * i) / (style->scale_label_num - 1); + int16_t scale_act = (int32_t)((int32_t)(ext->max - ext->min) * i) / (ext->scale_label_num - 1); scale_act += ext->min; sprintf(scale_txt, "%d", scale_act); area_t label_cord; point_t label_size; - txt_get_size(&label_size, scale_txt, style->scale_labels.font, - style->scale_labels.letter_space, style->scale_labels.line_space, + txt_get_size(&label_size, scale_txt, style->font, + style->letter_space, style->line_space, LV_CORD_MAX, TXT_FLAG_NONE); /*Draw the label*/ @@ -425,132 +413,59 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask) label_cord.x2 = label_cord.x1 + label_size.x; label_cord.y2 = label_cord.y1 + label_size.y; - lv_draw_label(&label_cord, mask, &style->scale_labels, scale_txt, TXT_FLAG_NONE); + lv_draw_label(&label_cord, mask, style, scale_txt, TXT_FLAG_NONE); } - - /*Calculate the critical value*/ - int16_t critical_value = ext->low_critical == 0 ? ext->min : ext->max;; - for(i = 0; i < ext->needle_num; i++) { - critical_value = ext->low_critical == 0 ? - MATH_MAX(critical_value, ext->values[i]) : MATH_MIN(critical_value, ext->values[i]); - } - - /*Write the critical value if enabled*/ - if(ext->txt[0] != '\0') { - char value_txt[16]; - sprintf(value_txt, ext->txt, critical_value); - - area_t label_cord; - point_t label_size; - txt_get_size(&label_size, value_txt, style->value_labels.font, - style->value_labels.letter_space, style->value_labels.line_space, - LV_CORD_MAX, TXT_FLAG_NONE); - - /*Draw the label*/ - label_cord.x1 = gauge->cords.x1 + lv_obj_get_width(gauge) / 2 - label_size.x / 2; - label_cord.y1 = gauge->cords.y1 + - (cord_t)style->value_pos * lv_obj_get_height(gauge) / 100 - label_size.y / 2; - - label_cord.x2 = label_cord.x1 + label_size.x; - label_cord.y2 = label_cord.y1 + label_size.y; - - lv_draw_label(&label_cord, mask, &style->value_labels, value_txt, TXT_FLAG_NONE); - } - } /** * Draw the needles of a gauge * @param gauge pointer to gauge object * @param mask mask of drawing */ -static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask) +static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style_t * style) { - lv_gauges_t * style = lv_obj_get_style(gauge); + lv_style_t style_needle; lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - cord_t r = lv_obj_get_width(gauge) / 2 - style->bg_rect.opad; + cord_t r = lv_obj_get_width(gauge) / 2 - style->opad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; - int16_t angle_ofs = 90 + (360 - style->scale_angle) / 2; + int16_t angle_ofs = 90 + (360 - ext->scale_angle) / 2; point_t p_mid; point_t p_end; uint8_t i; + memcpy(&style_needle, style, sizeof(lv_style_t)); + p_mid.x = x_ofs; p_mid.y = y_ofs; for(i = 0; i < ext->needle_num; i++) { /*Calculate the end point of a needle*/ - int16_t needle_angle = (ext->values[i] - ext->min) * style->scale_angle / + int16_t needle_angle = (ext->values[i] - ext->min) * ext->scale_angle / (ext->max - ext->min) + angle_ofs; p_end.y = (trigo_sin(needle_angle) * r) / TRIGO_SIN_MAX + y_ofs; p_end.x = (trigo_sin(needle_angle + 90) * r) / TRIGO_SIN_MAX + x_ofs; /*Draw the needle with the corresponding color*/ - style->needle_lines.base.color = style->needle_color[i]; - - lv_draw_line(&p_mid, &p_end, mask, &style->needle_lines); + if(ext->needle_color == NULL) style_needle.ccolor = LV_GAUGE_DEF_NEEDLE_COLOR; + else style_needle.ccolor = ext->needle_color[i]; + lv_draw_line(&p_mid, &p_end, mask, &style_needle); } /*Draw the needle middle area*/ - lv_rects_t nm; + lv_style_t style_neddle_mid; + lv_style_get(LV_STYLE_PLAIN, &style_neddle_mid); + style_neddle_mid.mcolor = style->bcolor; + style_neddle_mid.gcolor = style->bcolor; + style_neddle_mid.radius = LV_RECT_CIRCLE; + area_t nm_cord; - lv_rects_get(LV_RECTS_PLAIN, &nm); - nm.bwidth = 0; - nm.radius = LV_RECT_CIRCLE; - nm.base.color = style->needle_mid_color; - nm.gcolor = style->needle_mid_color; + nm_cord.x1 = x_ofs - style->opad; + nm_cord.y1 = y_ofs - style->opad; + nm_cord.x2 = x_ofs + style->opad; + nm_cord.y2 = y_ofs + style->opad; - nm_cord.x1 = x_ofs - style->needle_mid_size; - nm_cord.y1 = y_ofs - style->needle_mid_size; - nm_cord.x2 = x_ofs + style->needle_mid_size; - nm_cord.y2 = y_ofs + style->needle_mid_size; - - lv_draw_rect(&nm_cord, mask, &nm); - -} - -/** - * Initialize the built-in gauge styles - */ -static void lv_gauges_init(void) -{ - /*Default style*/ - lv_rects_get(LV_RECTS_FANCY, &lv_gauges_def.bg_rect); - lv_gauges_def.bg_rect.radius = LV_RECT_CIRCLE; - lv_gauges_def.bg_rect.bwidth = 4 * LV_DOWNSCALE; - lv_gauges_def.bg_rect.base.color = COLOR_MAKE(0x00, 0xaa, 0x00);//GREEN; - lv_gauges_def.bg_rect.gcolor = COLOR_BLACK; - lv_gauges_def.bg_rect.bcolor = COLOR_BLACK; - lv_gauges_def.bg_rect.opad = LV_DPI / 4; - - lv_gauges_def.critical_gcolor = COLOR_BLACK; - lv_gauges_def.critical_mcolor = COLOR_MAKE(0xff, 0x50, 0x50); - - lv_labels_get(LV_LABELS_TXT, &lv_gauges_def.scale_labels); - lv_gauges_def.scale_labels.base.color = COLOR_MAKE(0xd0, 0xd0, 0xd0); - - lv_labels_get(LV_LABELS_TITLE, &lv_gauges_def.value_labels); - lv_gauges_def.value_labels.base.color = COLOR_WHITE; - lv_gauges_def.value_labels.letter_space = 3 * LV_DOWNSCALE; - lv_gauges_def.value_labels.mid = 1; - - lv_gauges_def.value_pos = 75; - - lv_lines_get(LV_LINES_DEF, &lv_gauges_def.needle_lines); - lv_gauges_def.needle_lines.base.color = COLOR_WHITE; /*Overwritten by needle_color[]*/ - lv_gauges_def.needle_lines.base.opa = OPA_80; - lv_gauges_def.needle_lines.width = 3 * LV_DOWNSCALE; - - lv_gauges_def.needle_color[0] = COLOR_SILVER; - lv_gauges_def.needle_color[1] = COLOR_MAKE(0x40, 0x90, 0xe0); - lv_gauges_def.needle_color[2] = COLOR_MAKE(0x50, 0xe0, 0x50); - lv_gauges_def.needle_color[3] = COLOR_MAKE(0xff, 0xff, 0x70); - - lv_gauges_def.needle_mid_size = 5 * LV_DOWNSCALE; - lv_gauges_def.needle_mid_color = COLOR_GRAY; - lv_gauges_def.scale_label_num = 6; - lv_gauges_def.scale_angle = 220; + lv_draw_rect(&nm_cord, mask, &style_neddle_mid); } #endif diff --git a/lv_objx/lv_gauge.h b/lv_objx/lv_gauge.h index 8e694f743..0dc82576c 100644 --- a/lv_objx/lv_gauge.h +++ b/lv_objx/lv_gauge.h @@ -48,48 +48,23 @@ /*Data of gauge*/ typedef struct { - lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ + /*No inherited ext*/ /*Ext. of ancestor*/ /*New data for this type */ int16_t min; /*Minimum value of the scale*/ int16_t max; /*Maximum value of the scale*/ int16_t * values; /*Array of the set values (for needles) */ - char * txt; /*Printf-like text to display with the most critical value (e.g. "Value: %d")*/ + lv_style_t * style_critical;/*Fade to this style nearer to the critical value*/ + color_t * needle_color; /*A color of the needles (color_t my_colors[needle_num])*/ + uint16_t scale_angle; /*Angle of the scale in deg. (e.g. 220)*/ + uint8_t scale_label_num; /*Number of scale labels (~6)*/ uint8_t needle_num; /*Number of needles*/ uint8_t low_critical:1; /*0: the higher value is more critical, 1: the lower value is more critical*/ }lv_gauge_ext_t; -/*Style of gauge*/ -typedef struct -{ - lv_rects_t bg_rect; /*Style of ancestor*/ - /*New style element for this type */ - color_t critical_mcolor; /*Top color at critical value*/ - color_t critical_gcolor; /*Bottom color at critical value*/ - /*Scale settings*/ - uint16_t scale_angle; /*Angle of the scale in deg. (e.g. 220)*/ - lv_labels_t scale_labels; /*Style of the scale labels*/ - uint8_t scale_label_num; /*Number of scale labels (~6)*/ - /*Needle settings*/ - lv_lines_t needle_lines; /*Style of neddles*/ - color_t needle_color[LV_GAUGE_MAX_NEEDLE]; /*Color of needles*/ - color_t needle_mid_color; /*Color of middle where the needles start*/ - cord_t needle_mid_size; /*Size of the needle middle area (circle diameter)*/ - /*Value text settings*/ - lv_labels_t value_labels; /*Style of the value label*/ - uint8_t value_pos; /*Vertical position of the value label in percentage of object height (0..100 %)*/ -}lv_gauges_t; - -/*Built-in styles of gauge*/ -typedef enum -{ - LV_GAUGES_DEF, -}lv_gauges_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ - /** * Create a gauge objects * @param par pointer to an object, it will be the parent of the new gauge @@ -112,7 +87,7 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param); * @param gauge pointer to gauge object * @param num number of needles */ -void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num); +void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num, color_t * colors); /** * Set the range of a gauge @@ -145,6 +120,7 @@ void lv_gauge_set_text(lv_obj_t * gauge, const char * txt); */ void lv_gauge_set_low_critical(lv_obj_t * gauge, bool low); +void lv_gauge_vet_style_critical(lv_obj_t * gauge, lv_style_t * style); /** * Get the number of needles on a gauge * @param gauge pointer to gauge @@ -174,13 +150,7 @@ const char * lv_gauge_get_text(lv_obj_t * gauge); */ bool lv_gauge_get_low_critical(lv_obj_t * gauge); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_gauges_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_gauges_t style - */ -lv_gauges_t * lv_gauges_get(lv_gauges_builtin_t style, lv_gauges_t * copy); +lv_style_t * lv_gauge_get_style_crit(lv_obj_t * gauge); /********************** * MACROS diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_rect.c index b3ec743cc..cf5825935 100644 --- a/lv_objx/lv_rect.c +++ b/lv_objx/lv_rect.c @@ -35,8 +35,10 @@ /********************** * STATIC PROTOTYPES **********************/ +#if 0 static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode); -static void lv_rect_draw_shadow(lv_obj_t * rect, const area_t * mask); +#endif + static void lv_rect_refr_layout(lv_obj_t * rect); static void lv_rect_layout_col(lv_obj_t * rect); static void lv_rect_layout_row(lv_obj_t * rect); @@ -79,7 +81,6 @@ lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) ext->vpad_en = 0; ext->layout = LV_RECT_LAYOUT_OFF; - lv_obj_set_design_f(new_rect, lv_rect_design); lv_obj_set_signal_f(new_rect, lv_rect_signal); /*Init the new rectangle*/ @@ -124,7 +125,6 @@ bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) case LV_SIGNAL_STYLE_CHG: /*Recalculate the padding if the style changed*/ lv_rect_refr_layout(rect); lv_rect_refr_autofit(rect); - lv_obj_refr_ext_size(rect); break; case LV_SIGNAL_CHILD_CHG: lv_rect_refr_layout(rect); @@ -137,9 +137,6 @@ bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) lv_rect_refr_autofit(rect); } break; - case LV_SIGNAL_REFR_EXT_SIZE: - if(style->swidth > rect->ext_size) rect->ext_size = style->swidth; - break; default: break; } @@ -228,7 +225,7 @@ bool lv_rect_get_vfit(lv_obj_t * rect) /********************** * STATIC FUNCTIONS **********************/ - +#if 0 /** * Handle the drawing related tasks of the rectangles * @param rect pointer to an object @@ -242,91 +239,18 @@ bool lv_rect_get_vfit(lv_obj_t * rect) static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode) { if(mode == LV_DESIGN_COVER_CHK) { - /* Because of the radius it is not sure the area is covered - * Check the areas where there is no radius*/ - if(rect->style_p->empty != 0) return false; - - uint16_t r = rect->style_p->radius; - - if(r == LV_RECT_CIRCLE) return false; - - area_t area_tmp; - - /*Check horizontally without radius*/ - lv_obj_get_cords(rect, &area_tmp); - area_tmp.x1 += r; - area_tmp.x2 -= r; - if(area_is_in(mask, &area_tmp) == true) return true; - - /*Check vertically without radius*/ - lv_obj_get_cords(rect, &area_tmp); - area_tmp.y1 += r; - area_tmp.y2 -= r; - if(area_is_in(mask, &area_tmp) == true) return true; return false; } else if(mode == LV_DESIGN_DRAW_MAIN) { - lv_style_t * style = lv_obj_get_style(rect); - area_t area; - lv_obj_get_cords(rect, &area); - /*Draw the rectangle*/ - lv_draw_rect(&area, mask, style); - lv_rect_draw_shadow(rect, mask); } else if(mode == LV_DESIGN_DRAW_POST) { } return true; } +#endif -/** - * Draw a shadow around the object - * @param rect pointer to rectangle object - * @param mask pointer to a mask area (from the design functions) - */ -static void lv_rect_draw_shadow(lv_obj_t * rect, const area_t * mask) -{ - lv_style_t * style = lv_obj_get_style(rect); - cord_t swidth = style->swidth; - if(swidth == 0) return; - uint8_t res = LV_DOWNSCALE * 2; - if(swidth < res) return; - - area_t shadow_area; - lv_style_t shadow_style; - lv_obj_get_cords(rect, &shadow_area); - - memcpy(&shadow_style, style, sizeof(lv_style_t)); - - shadow_style.empty = 1; - shadow_style.bwidth = swidth; - shadow_style.radius = style->radius; - if(shadow_style.radius == LV_RECT_CIRCLE) { - shadow_style.radius = MATH_MIN(lv_obj_get_width(rect), lv_obj_get_height(rect)); - } - shadow_style.radius += swidth + 1; - shadow_style.bcolor = style->scolor; - shadow_style.bopa = 100; - - shadow_area.x1 -= swidth; - shadow_area.y1 -= swidth; - shadow_area.x2 += swidth; - shadow_area.y2 += swidth; - - cord_t i; - shadow_style.opa = style->opa / (swidth / res); - - for(i = 1; i < swidth; i += res) { - lv_draw_rect(&shadow_area, mask, &shadow_style); - shadow_style.radius -= res; - shadow_style.bwidth -= res; - shadow_area.x1 += res; - shadow_area.y1 += res; - shadow_area.x2 -= res; - shadow_area.y2 -= res; - } -} /** * Refresh the layout of a rectangle diff --git a/lv_objx/lv_rect.h b/lv_objx/lv_rect.h index a57c79933..da06b273a 100644 --- a/lv_objx/lv_rect.h +++ b/lv_objx/lv_rect.h @@ -18,7 +18,6 @@ /********************* * DEFINES *********************/ -#define LV_RECT_CIRCLE ((cord_t)-1) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS From d93844bdd8883820b5bdbe97a408d376ad2d25bf Mon Sep 17 00:00:00 2001 From: Gabor Date: Thu, 13 Apr 2017 16:12:03 +0200 Subject: [PATCH 29/53] lv_rect renamed to lv_cont (container) --- lv_app/lv_app.c | 20 +- lv_app/lv_app_util/lv_app_fsel.c | 3 +- lv_app/lv_app_util/lv_app_notice.c | 6 +- lv_appx/lv_app_files.c | 14 +- lv_appx/lv_app_sysmon.c | 6 +- lv_appx/lv_app_terminal.c | 4 +- lv_draw/lv_draw.c | 48 ++--- lv_draw/lv_draw.h | 2 +- lv_obj/lv_obj.c | 2 +- lv_objx/lv_bar.c | 4 +- lv_objx/lv_bar.h | 2 +- lv_objx/lv_btn.c | 6 +- lv_objx/lv_btn.h | 4 +- lv_objx/lv_btnm.c | 4 +- lv_objx/lv_btnm.h | 4 +- lv_objx/lv_cb.c | 4 +- lv_objx/lv_chart.c | 28 +-- lv_objx/lv_chart.h | 2 +- lv_objx/{lv_rect.c => lv_cont.c} | 304 ++++++++++++++--------------- lv_objx/lv_cont.h | 114 +++++++++++ lv_objx/lv_ddlist.c | 2 +- lv_objx/lv_gauge.c | 9 +- lv_objx/lv_gauge.h | 2 +- lv_objx/lv_img.c | 2 +- lv_objx/lv_led.c | 6 +- lv_objx/lv_led.h | 2 +- lv_objx/lv_line.c | 4 +- lv_objx/lv_list.c | 10 +- lv_objx/lv_mbox.c | 18 +- lv_objx/lv_mbox.h | 4 +- lv_objx/lv_page.c | 16 +- lv_objx/lv_page.h | 8 +- lv_objx/lv_rect.h | 114 ----------- lv_objx/lv_slider.c | 3 +- lv_objx/lv_win.c | 16 +- lv_objx/lv_win.h | 8 +- lvgl.h | 2 +- 37 files changed, 402 insertions(+), 405 deletions(-) rename lv_objx/{lv_rect.c => lv_cont.c} (59%) create mode 100644 lv_objx/lv_cont.h delete mode 100644 lv_objx/lv_rect.h diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index a72ee4786..a3e800557 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -257,7 +257,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) lv_obj_set_free_p(app->sc, app); lv_btn_set_styles(app->sc, &app_style.sc_rel, &app_style.sc_pr, NULL, NULL, NULL); lv_obj_set_size(app->sc, LV_APP_SC_WIDTH, LV_APP_SC_HEIGHT); - lv_rect_set_layout(app->sc, LV_RECT_LAYOUT_OFF); + lv_cont_set_layout(app->sc, LV_CONT_LAYOUT_OFF); lv_btn_set_rel_action(app->sc, lv_app_sc_rel_action); lv_btn_set_lpr_action(app->sc, lv_app_sc_lpr_action); @@ -545,23 +545,23 @@ lv_app_style_t * lv_app_style_get(void) static void lv_app_init_desktop(void) { /*Menu on the top*/ - menuh = lv_rect_create(lv_scr_act(), NULL); + menuh = lv_cont_create(lv_scr_act(), NULL); lv_obj_set_width(menuh, LV_HOR_RES); - lv_rect_set_fit(menuh, false, true); + lv_cont_set_fit(menuh, false, true); lv_obj_set_style(menuh, &app_style.menu); app_btn = lv_btn_create(menuh, NULL); lv_btn_set_styles(app_btn, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); - lv_rect_set_fit(app_btn, true, true); + lv_cont_set_fit(app_btn, true, true); lv_btn_set_rel_action(app_btn, lv_app_menu_rel_action); lv_obj_t * app_label = lv_label_create(app_btn, NULL); lv_label_set_text(app_label, "Apps"); lv_obj_set_pos(app_btn, 0, 0); lv_obj_set_pos(menuh, 0, 0); /* - sys_apph = lv_rect_create(menuh, NULL); - lv_rect_set_layout(sys_apph, LV_RECT_LAYOUT_ROW_M); - lv_rect_set_fit(sys_apph, true, false); + sys_apph = lv_cont_create(menuh, NULL); + lv_cont_set_layout(sys_apph, LV_CONT_LAYOUT_ROW_M); + lv_cont_set_fit(sys_apph, true, false); lv_obj_set_style(sys_apph, lv_rects_get(LV_RECTS_TRANSP, NULL)); lv_obj_t * clock = lv_label_create(sys_apph, NULL); lv_obj_set_style(clock, &app_style.menu_btn_label); @@ -576,8 +576,8 @@ static void lv_app_init_desktop(void) lv_obj_set_size(sc_page, LV_HOR_RES, LV_VER_RES - lv_obj_get_height(menuh)); lv_obj_set_pos(sc_page, 0, lv_obj_get_height(menuh)); lv_obj_set_width(lv_page_get_scrl(sc_page), LV_HOR_RES - 20); - lv_rect_set_fit(lv_page_get_scrl(sc_page), false, true); - lv_rect_set_layout(lv_page_get_scrl(sc_page), LV_RECT_LAYOUT_GRID); + lv_cont_set_fit(lv_page_get_scrl(sc_page), false, true); + lv_cont_set_layout(lv_page_get_scrl(sc_page), LV_CONT_LAYOUT_GRID); lv_page_set_rel_action(sc_page, lv_app_sc_page_rel_action); lv_page_set_sb_mode(sc_page, LV_PAGE_SB_MODE_AUTO); @@ -849,7 +849,7 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d sprintf(buf, "%s settings", app->dsc->name); lv_win_set_title(app->conf_win, buf); lv_obj_t * scrl = lv_page_get_scrl(app->conf_win); - lv_rect_set_layout(scrl, LV_RECT_LAYOUT_COL_L); + lv_cont_set_layout(scrl, LV_CONT_LAYOUT_COL_L); lv_win_add_ctrl_btn(app->conf_win, "U:/icon_close" ,lv_win_close_action); diff --git a/lv_app/lv_app_util/lv_app_fsel.c b/lv_app/lv_app_util/lv_app_fsel.c index 96b3a90a9..d8246b5d2 100644 --- a/lv_app/lv_app_util/lv_app_fsel.c +++ b/lv_app/lv_app_util/lv_app_fsel.c @@ -91,7 +91,6 @@ void lv_app_fsel_open(const char * path, const char * filter, void * param, void if(fsel_filter == NULL) fsel_filter = ""; /*Create a window for the File selector*/ - lv_app_style_t * app_style = lv_app_style_get(); fsel_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_size(fsel_win, LV_HOR_RES, LV_VER_RES); @@ -142,7 +141,7 @@ static void fsel_refr(void) //TODO lv_obj_set_style(fsel_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); lv_obj_set_drag_parent(fsel_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(fsel_list), true); - lv_rect_set_fit(fsel_list, false, true); + lv_cont_set_fit(fsel_list, false, true); fs_res_t res = FS_RES_OK; diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index fa4ccbe39..907d1a7b0 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -9,7 +9,7 @@ #include "lv_app_notice.h" #if LV_APP_ENABLE != 0 -#include "lvgl/lv_objx/lv_rect.h" +#include #include "lvgl/lv_objx/lv_label.h" #include "lvgl/lv_misc/anim.h" @@ -56,12 +56,12 @@ static lv_obj_t * notice_h; */ void lv_app_notice_init(void) { - notice_h = lv_rect_create(lv_scr_act(), NULL); + notice_h = lv_cont_create(lv_scr_act(), NULL); lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - LV_DPI); lv_obj_set_y(notice_h, LV_DPI); lv_obj_set_click(notice_h, false); lv_obj_set_style(notice_h, lv_style_get(LV_STYLE_TRANSP, NULL)); - lv_rect_set_layout(notice_h, LV_RECT_LAYOUT_COL_R); + lv_cont_set_layout(notice_h, LV_CONT_LAYOUT_COL_R); } /** diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index bea6caec0..91c43965b 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -299,11 +299,11 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) /*Create a text area to type chunk size*/ lv_obj_t * val_set_h; - val_set_h = lv_rect_create(conf_win, NULL); + val_set_h = lv_cont_create(conf_win, NULL); lv_obj_set_style(val_set_h, lv_style_get(LV_STYLE_PLAIN_COLOR, NULL)); lv_obj_set_click(val_set_h, false); - lv_rect_set_fit(val_set_h, true, true); - lv_rect_set_layout(val_set_h, LV_RECT_LAYOUT_ROW_M); + lv_cont_set_fit(val_set_h, true, true); + lv_cont_set_layout(val_set_h, LV_CONT_LAYOUT_ROW_M); lv_obj_t * label; label = lv_label_create(val_set_h, NULL); @@ -312,7 +312,7 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) lv_obj_t * ta; char buf[32]; ta = lv_ta_create(val_set_h, NULL); - lv_rect_set_fit(ta, false, true); + lv_cont_set_fit(ta, false, true); lv_obj_set_free_num(ta, SEND_SETTINGS_CHUNK_SIZE); lv_obj_set_free_p(ta, app); lv_page_set_rel_action(ta, win_send_settings_element_rel_action); @@ -320,7 +320,7 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) lv_ta_set_text(ta, buf); /*Create a text area to type the chunk delay*/ - val_set_h = lv_rect_create(conf_win, val_set_h); + val_set_h = lv_cont_create(conf_win, val_set_h); label = lv_label_create(val_set_h, NULL); lv_label_set_text(label, "Inter-chunk delay"); @@ -353,8 +353,8 @@ static void win_create_list(lv_app_inst_t * app) //TODO lv_obj_set_style(win_data->file_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); lv_obj_set_drag_parent(win_data->file_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(win_data->file_list), true); - lv_rect_set_fit(win_data->file_list, false, true); - lv_rect_set_layout(lv_page_get_scrl(win_data->file_list), LV_RECT_LAYOUT_COL_L); + lv_cont_set_fit(win_data->file_list, false, true); + lv_cont_set_layout(lv_page_get_scrl(win_data->file_list), LV_CONT_LAYOUT_COL_L); } /** diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 1377710b5..4b8e46745 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -308,8 +308,7 @@ static void sysmon_task(void * param) static bool mem_warn_report = false; if(mem_mon.size_free < LV_APP_SYSMON_MEM_WARN && mem_warn_report == false) { mem_warn_report = true; - lv_obj_t * not = lv_app_notice_add("Critically low memory"); - //TODO lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); + lv_app_notice_add("Critically low memory"); } if(mem_mon.size_free > LV_APP_SYSMON_MEM_WARN) mem_warn_report = false; @@ -318,8 +317,7 @@ static void sysmon_task(void * param) if(mem_mon.pct_frag > LV_APP_SYSMON_FRAG_WARN) { if(frag_warn_report == false) { frag_warn_report = true; - lv_obj_t * not =lv_app_notice_add("Critical memory\nfragmentation"); - //TODO lv_obj_set_style(not, lv_mboxs_get(LV_MBOXS_WARN, NULL)); + lv_app_notice_add("Critical memory\nfragmentation"); dm_defrag(); /*Defrag. if the fragmentation is critical*/ } diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index 2070d596a..52d4452dd 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -12,10 +12,10 @@ #include #include #include +#include #include #include #include -#include #include #include #include @@ -263,7 +263,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Create a clear button*/ win_data->clear_btn = lv_btn_create(win, NULL); - lv_rect_set_fit(win_data->clear_btn, true, true); + lv_cont_set_fit(win_data->clear_btn, true, true); lv_obj_set_free_p(win_data->clear_btn, app); lv_btn_set_rel_action(win_data->clear_btn, win_clear_rel_action); lv_obj_t * btn_label = lv_label_create(win_data->clear_btn, NULL); diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index c5ed1cb59..27b1cf157 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -43,12 +43,12 @@ typedef enum * STATIC PROTOTYPES **********************/ #if USE_LV_RECT != 0 -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); -static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); -static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h); +static void lv_draw_cont_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h); #endif /*USE_LV_RECT != 0*/ @@ -90,23 +90,23 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_ if(area_get_height(cords_p) < 1 || area_get_width(cords_p) < 1) return; if(style_p->empty == 0){ - lv_draw_rect_main_mid(cords_p, mask_p, style_p); + lv_draw_cont_main_mid(cords_p, mask_p, style_p); if(style_p->radius != 0) { - lv_draw_rect_main_corner(cords_p, mask_p, style_p); + lv_draw_cont_main_corner(cords_p, mask_p, style_p); } } if(style_p->bwidth != 0) { - lv_draw_rect_border_straight(cords_p, mask_p, style_p); + lv_draw_cont_border_straight(cords_p, mask_p, style_p); if(style_p->radius != 0) { - lv_draw_rect_border_corner(cords_p, mask_p, style_p); + lv_draw_cont_border_corner(cords_p, mask_p, style_p); } } if(style_p->swidth != 0) { - lv_draw_rect_shadow(cords_p, mask_p, style_p); + lv_draw_cont_shadow(cords_p, mask_p, style_p); } } #endif /*USE_LV_RECT != 0*/ @@ -573,7 +573,7 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +static void lv_draw_cont_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { uint16_t radius = style->radius; @@ -584,7 +584,7 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); /*If the radius is too big then there is no body*/ if(radius > height / 2) return; @@ -623,7 +623,7 @@ static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) +static void lv_draw_cont_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { uint16_t radius = style_p->radius; @@ -635,7 +635,7 @@ static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask cord_t height = area_get_height(cords_p); cord_t width = area_get_width(cords_p); - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); point_t lt_origo; /*Left Top origo*/ point_t lb_origo; /*Left Bottom origo*/ @@ -794,7 +794,7 @@ if(edge_top_area.y1 != mid_top_area.y1) { * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) +static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { uint16_t radius = style_p->radius; @@ -809,7 +809,7 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * /*the 0 px border width drawn as 1 px, so decrement the b_width*/ bwidth--; - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); if(radius < bwidth) { length_corr = bwidth - radius; @@ -910,7 +910,7 @@ static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * * @param rects_p pointer to a rectangle style * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { uint16_t radius = style->radius; uint16_t bwidth = style->bwidth; @@ -923,7 +923,7 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma cord_t width = area_get_width(cords_p); cord_t height = area_get_height(cords_p); - radius = lv_draw_rect_radius_corr(radius, width, height); + radius = lv_draw_cont_radius_corr(radius, width, height); point_t lt_origo; /*Left Top origo*/ point_t lb_origo; /*Left Bottom origo*/ @@ -1045,7 +1045,7 @@ static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * ma * @param rect pointer to rectangle object * @param mask pointer to a mask area (from the design functions) */ -static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { cord_t swidth = style->swidth; if(swidth == 0) return; @@ -1061,7 +1061,7 @@ static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, c shadow_style.empty = 1; shadow_style.bwidth = swidth; shadow_style.radius = style->radius; - if(shadow_style.radius == LV_RECT_CIRCLE) { + if(shadow_style.radius == LV_CONT_CIRCLE) { shadow_style.radius = MATH_MIN(area_get_width(cords_p), area_get_height(cords_p)); } shadow_style.radius += swidth + 1; @@ -1077,8 +1077,8 @@ static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, c shadow_style.opa = style->opa / (swidth / res); for(i = 1; i < swidth; i += res) { - lv_draw_rect_border_straight(&shadow_area, mask_p, &shadow_style); - lv_draw_rect_border_corner(&shadow_area, mask_p, &shadow_style); + lv_draw_cont_border_straight(&shadow_area, mask_p, &shadow_style); + lv_draw_cont_border_corner(&shadow_area, mask_p, &shadow_style); shadow_style.radius -= res; shadow_style.bwidth -= res; shadow_area.x1 += res; @@ -1089,7 +1089,7 @@ static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, c } -static uint16_t lv_draw_rect_radius_corr(uint16_t r, cord_t w, cord_t h) +static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h) { if(r >= (w >> 1)){ r = (w >> 1); diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index cacaa2f5a..850cea887 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -16,7 +16,7 @@ /********************* * DEFINES *********************/ -#define LV_RECT_CIRCLE ((cord_t)-1) /*A very big radius to always draw as circle*/ +#define LV_CONT_CIRCLE ((cord_t)-1) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index b1d086a36..5fdafa93f 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -1440,7 +1440,7 @@ static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode uint16_t r = style->radius; - if(r == LV_RECT_CIRCLE) return false; + if(r == LV_CONT_CIRCLE) return false; area_t area_tmp; diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index e0377fc76..ea2aa97da 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -67,7 +67,7 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) ext->act_value = 0; ext->style_indic = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); - /* Save the rectangle design function. + /* Save the ancient design function. * It will be used in the bar design function*/ if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_bar); @@ -106,7 +106,7 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(bar, sign, param); + valid = lv_cont_signal(bar, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ diff --git a/lv_objx/lv_bar.h b/lv_objx/lv_bar.h index 98c504f02..b8fd40de2 100644 --- a/lv_objx/lv_bar.h +++ b/lv_objx/lv_bar.h @@ -22,7 +22,7 @@ #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_btn.h" #include "lv_label.h" diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index 133807e51..a2b776d39 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -55,7 +55,7 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) { lv_obj_t * new_btn; - new_btn = lv_rect_create(par, copy); + new_btn = lv_cont_create(par, copy); dm_assert(new_btn); /*Allocate the extended data*/ lv_btn_ext_t * ext = lv_obj_alloc_ext(new_btn, sizeof(lv_btn_ext_t)); @@ -77,7 +77,7 @@ lv_obj_t * lv_btn_create(lv_obj_t * par, lv_obj_t * copy) /*If no copy do the basic initialization*/ if(copy == NULL) { - lv_rect_set_layout(new_btn, LV_RECT_LAYOUT_CENTER); + lv_cont_set_layout(new_btn, LV_CONT_LAYOUT_CENTER); lv_obj_set_style(new_btn, ext->styles[LV_BTN_STATE_REL]); } /*Copy 'copy'*/ @@ -113,7 +113,7 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(btn, sign, param); + valid = lv_cont_signal(btn, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 51005de3f..1161b8ca8 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -17,7 +17,7 @@ #error "lv_btn: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " #endif -#include "lv_rect.h" +#include #include "../lv_obj/lv_dispi.h" /********************* @@ -42,7 +42,7 @@ typedef enum /*Data of button*/ typedef struct { - lv_rect_ext_t rect; /*Ext. of ancestor*/ + lv_cont_ext_t cont; /*Ext. of ancestor*/ /*New data for this type */ lv_action_t pr_action; /*A function to call when the button is pressed (NULL if unused)*/ lv_action_t rel_action; /*A function to call when the button is released (NULL if unused)*/ diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index 5f188ec6d..8843e5ff0 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -61,7 +61,7 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_btnm_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor object*/ - lv_obj_t * new_btnm = lv_rect_create(par, copy); + lv_obj_t * new_btnm = lv_cont_create(par, copy); dm_assert(new_btnm); /*Allocate the object type specific extended data*/ @@ -106,7 +106,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(btnm, sign, param); + valid = lv_cont_signal(btnm, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index d8c5b4630..8ea0df11b 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -23,7 +23,7 @@ #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_label.h" #include "lv_btn.h" @@ -43,7 +43,7 @@ typedef lv_action_res_t (*lv_btnm_callback_t) (lv_obj_t *, uint16_t); /*Data of button matrix*/ typedef struct { - lv_rect_ext_t bg; /*Ext. of ancestor*/ + lv_cont_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ const char ** map_p; /*Pointer to the current map*/ area_t * btn_areas; /*Array of areas for the buttons (Handled by the library)*/ diff --git a/lv_objx/lv_cb.c b/lv_objx/lv_cb.c index 82a981765..bd9e932af 100644 --- a/lv_objx/lv_cb.c +++ b/lv_objx/lv_cb.c @@ -68,8 +68,8 @@ lv_obj_t * lv_cb_create(lv_obj_t * par, lv_obj_t * copy) lv_btn_set_styles(new_cb, lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL), lv_style_get(LV_STYLE_TRANSP, NULL)); - lv_rect_set_layout(new_cb, LV_RECT_LAYOUT_ROW_M); - lv_rect_set_fit(new_cb, true, true); + lv_cont_set_layout(new_cb, LV_CONT_LAYOUT_ROW_M); + lv_cont_set_fit(new_cb, true, true); lv_btn_set_tgl(new_cb, true); lv_obj_set_click(ext->bullet, false); diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 4e0d55777..48b64f6c8 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -484,32 +484,32 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) int32_t y_tmp; lv_chart_dl_t * dl; uint8_t dl_cnt = 0; - lv_style_t rects; - lv_style_get(LV_STYLE_PLAIN, &rects); + lv_style_t style_point; + lv_style_get(LV_STYLE_PLAIN, &style_point); - rects.bwidth = 0; - rects.empty = 0; - rects.radius = LV_RECT_CIRCLE; - rects.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; + style_point.bwidth = 0; + style_point.empty = 0; + style_point.radius = LV_CONT_CIRCLE; + style_point.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, dl) { - rects.radius = dl->width; - rects.mcolor = dl->color; - rects.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dark_eff); + style_point.radius = dl->width; + style_point.mcolor = dl->color; + style_point.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dark_eff); for(i = 0; i < ext->pnum; i ++) { cir_a.x1 = ((w * i) / (ext->pnum - 1)) + x_ofs; - cir_a.x2 = cir_a.x1 + rects.radius; - cir_a.x1 -= rects.radius; + cir_a.x2 = cir_a.x1 + style_point.radius; + cir_a.x1 -= style_point.radius; y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; y_tmp = y_tmp / (ext->ymax - ext->ymin); cir_a.y1 = h - y_tmp + y_ofs; - cir_a.y2 = cir_a.y1 + rects.radius; - cir_a.y1 -= rects.radius; + cir_a.y2 = cir_a.y1 + style_point.radius; + cir_a.y1 -= style_point.radius; - lv_draw_rect(&cir_a, mask, &rects); + lv_draw_rect(&cir_a, mask, &style_point); } dl_cnt++; } diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index 300799f2e..c503b24ec 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -22,7 +22,7 @@ #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_line.h" /********************* diff --git a/lv_objx/lv_rect.c b/lv_objx/lv_cont.c similarity index 59% rename from lv_objx/lv_rect.c rename to lv_objx/lv_cont.c index cf5825935..c9a1373b5 100644 --- a/lv_objx/lv_rect.c +++ b/lv_objx/lv_cont.c @@ -14,7 +14,7 @@ #include #include -#include "lv_rect.h" +#include #include "../lv_draw/lv_draw.h" #include "../lv_draw/lv_draw_vbasic.h" #include "../lv_misc/area.h" @@ -36,16 +36,16 @@ * STATIC PROTOTYPES **********************/ #if 0 -static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode); +static bool lv_cont_design(lv_obj_t * cont, const area_t * mask, lv_design_mode_t mode); #endif -static void lv_rect_refr_layout(lv_obj_t * rect); -static void lv_rect_layout_col(lv_obj_t * rect); -static void lv_rect_layout_row(lv_obj_t * rect); -static void lv_rect_layout_center(lv_obj_t * rect); -static void lv_rect_layout_pretty(lv_obj_t * rect); -static void lv_rect_layout_grid(lv_obj_t * rect); -static void lv_rect_refr_autofit(lv_obj_t * rect); +static void lv_cont_refr_layout(lv_obj_t * cont); +static void lv_cont_layout_col(lv_obj_t * cont); +static void lv_cont_layout_row(lv_obj_t * cont); +static void lv_cont_layout_center(lv_obj_t * cont); +static void lv_cont_layout_pretty(lv_obj_t * cont); +static void lv_cont_layout_grid(lv_obj_t * cont); +static void lv_cont_refr_autofit(lv_obj_t * cont); /********************** * STATIC VARIABLES @@ -64,32 +64,32 @@ static void lv_rect_refr_autofit(lv_obj_t * rect); *-----------------*/ /** - * Create a rectangle objects - * @param par pointer to an object, it will be the parent of the new rectangle - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it - * @return pointer to the created rectangle + * Create a container objects + * @param par pointer to an object, it will be the parent of the new container + * @param copy pointer to a container object, if not NULL then the new object will be copied from it + * @return pointer to the created container */ -lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) +lv_obj_t * lv_cont_create(lv_obj_t * par, lv_obj_t * copy) { /*Create a basic object*/ lv_obj_t * new_rect = lv_obj_create(par, copy); dm_assert(new_rect); - lv_obj_alloc_ext(new_rect, sizeof(lv_rect_ext_t)); - lv_rect_ext_t * ext = lv_obj_get_ext(new_rect); + lv_obj_alloc_ext(new_rect, sizeof(lv_cont_ext_t)); + lv_cont_ext_t * ext = lv_obj_get_ext(new_rect); dm_assert(ext); ext->hpad_en = 0; ext->vpad_en = 0; - ext->layout = LV_RECT_LAYOUT_OFF; + ext->layout = LV_CONT_LAYOUT_OFF; - lv_obj_set_signal_f(new_rect, lv_rect_signal); + lv_obj_set_signal_f(new_rect, lv_cont_signal); - /*Init the new rectangle*/ + /*Init the new container*/ if(copy == NULL) { lv_obj_set_style(new_rect, lv_style_get(LV_STYLE_PLAIN, NULL)); } /*Copy an existing object*/ else { - lv_rect_ext_t * copy_ext = lv_obj_get_ext(copy); + lv_cont_ext_t * copy_ext = lv_obj_get_ext(copy); ext->hpad_en = copy_ext->hpad_en; ext->vpad_en = copy_ext->vpad_en; ext->layout = copy_ext->layout; @@ -103,38 +103,38 @@ lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy) } /** - * Signal function of the rectangle - * @param rect pointer to a rectangle object + * Signal function of the container + * @param cont pointer to a container object * @param sign a signal type from lv_signal_t enum * @param param pointer to a signal specific variable */ -bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) +bool lv_cont_signal(lv_obj_t * cont, lv_signal_t sign, void * param) { bool valid; /* Include the ancient signal function */ - valid = lv_obj_signal(rect, sign, param); + valid = lv_obj_signal(cont, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - lv_style_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(cont); switch(sign) { case LV_SIGNAL_STYLE_CHG: /*Recalculate the padding if the style changed*/ - lv_rect_refr_layout(rect); - lv_rect_refr_autofit(rect); + lv_cont_refr_layout(cont); + lv_cont_refr_autofit(cont); break; case LV_SIGNAL_CHILD_CHG: - lv_rect_refr_layout(rect); - lv_rect_refr_autofit(rect); + lv_cont_refr_layout(cont); + lv_cont_refr_autofit(cont); break; case LV_SIGNAL_CORD_CHG: - if(lv_obj_get_width(rect) != area_get_width(param) || - lv_obj_get_height(rect) != area_get_height(param)) { - lv_rect_refr_layout(rect); - lv_rect_refr_autofit(rect); + if(lv_obj_get_width(cont) != area_get_width(param) || + lv_obj_get_height(cont) != area_get_height(param)) { + lv_cont_refr_layout(cont); + lv_cont_refr_autofit(cont); } break; default: @@ -150,36 +150,36 @@ bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param) *====================*/ /** - * Set the layout on a rectangle - * @param rect pointer to a rectangle object - * @param layout a layout from 'lv_rect_layout_t' + * Set the layout on a container + * @param cont pointer to a container object + * @param layout a layout from 'lv_cont_layout_t' */ -void lv_rect_set_layout(lv_obj_t * rect, lv_rect_layout_t layout) +void lv_cont_set_layout(lv_obj_t * cont, lv_cont_layout_t layout) { - lv_rect_ext_t * ext = lv_obj_get_ext(rect); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); ext->layout = layout; /*Send a signal to refresh the layout*/ - rect->signal_f(rect, LV_SIGNAL_CHILD_CHG, NULL); + cont->signal_f(cont, LV_SIGNAL_CHILD_CHG, NULL); } /** * Enable the horizontal or vertical fit. - * The rectangle size will be set to involve the children horizontally or vertically. - * @param rect pointer to a rectangle object + * The container size will be set to involve the children horizontally or vertically. + * @param cont pointer to a container object * @param hor_en true: enable the horizontal padding * @param ver_en true: enable the vertical padding */ -void lv_rect_set_fit(lv_obj_t * rect, bool hor_en, bool ver_en) +void lv_cont_set_fit(lv_obj_t * cont, bool hor_en, bool ver_en) { - lv_obj_inv(rect); - lv_rect_ext_t * ext = lv_obj_get_ext(rect); + lv_obj_inv(cont); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); ext->hpad_en = hor_en == false ? 0 : 1; ext->vpad_en = ver_en == false ? 0 : 1; /*Send a signal to set a new size*/ - rect->signal_f(rect, LV_SIGNAL_CORD_CHG, rect); + cont->signal_f(cont, LV_SIGNAL_CORD_CHG, cont); } /*===================== @@ -187,48 +187,46 @@ void lv_rect_set_fit(lv_obj_t * rect, bool hor_en, bool ver_en) *====================*/ /** - * Get the layout of a rectangle - * @param rect pointer to rectangle object - * @return the layout from 'lv_rect_layout_t' + * Get the layout of a container + * @param cont pointer to container object + * @return the layout from 'lv_cont_layout_t' */ -lv_rect_layout_t lv_rect_get_layout(lv_obj_t * rect) +lv_cont_layout_t lv_cont_get_layout(lv_obj_t * cont) { - lv_rect_ext_t * ext = lv_obj_get_ext(rect); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); return ext->layout; } /** - * Get horizontal fit enable attribute of a rectangle - * @param rect pointer to a rectangle object + * Get horizontal fit enable attribute of a container + * @param cont pointer to a container object * @return true: horizontal padding is enabled */ -bool lv_rect_get_hfit(lv_obj_t * rect) +bool lv_cont_get_hfit(lv_obj_t * cont) { - lv_rect_ext_t * ext = lv_obj_get_ext(rect); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); return ext->hpad_en == 0 ? false : true; } /** - * Get vertical fit enable attribute of a rectangle - * @param obj pointer to a rectangle object + * Get vertical fit enable attribute of a container + * @param cont pointer to a container object * @return true: vertical padding is enabled */ -bool lv_rect_get_vfit(lv_obj_t * rect) +bool lv_cont_get_vfit(lv_obj_t * cont) { - lv_rect_ext_t * ext = lv_obj_get_ext(rect); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); return ext->vpad_en == 0 ? false : true; } - - /********************** * STATIC FUNCTIONS **********************/ #if 0 /** - * Handle the drawing related tasks of the rectangles - * @param rect pointer to an object + * Handle the drawing related tasks of the containers + * @param cont pointer to an object * @param mask the object will be drawn only in this area * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area * (return 'true' if yes) @@ -236,7 +234,7 @@ bool lv_rect_get_vfit(lv_obj_t * rect) * LV_DESIGN_DRAW_POST: drawing after every children are drawn * @param return true/false, depends on 'mode' */ -static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_t mode) +static bool lv_cont_design(lv_obj_t * cont, const area_t * mask, lv_design_mode_t mode) { if(mode == LV_DESIGN_COVER_CHK) { @@ -253,55 +251,55 @@ static bool lv_rect_design(lv_obj_t * rect, const area_t * mask, lv_design_mode_ /** - * Refresh the layout of a rectangle - * @param rect pointer to an object which layout should be refreshed + * Refresh the layout of a container + * @param cont pointer to an object which layout should be refreshed */ -static void lv_rect_refr_layout(lv_obj_t * rect) +static void lv_cont_refr_layout(lv_obj_t * cont) { - lv_rect_layout_t type = lv_rect_get_layout(rect); + lv_cont_layout_t type = lv_cont_get_layout(cont); /*'rect' has to be at least 1 child*/ - if(lv_obj_get_child(rect, NULL) == NULL) return; + if(lv_obj_get_child(cont, NULL) == NULL) return; - if(type == LV_RECT_LAYOUT_OFF) return; + if(type == LV_CONT_LAYOUT_OFF) return; - if(type == LV_RECT_LAYOUT_CENTER) { - lv_rect_layout_center(rect); - } else if(type == LV_RECT_LAYOUT_COL_L || type == LV_RECT_LAYOUT_COL_M || type == LV_RECT_LAYOUT_COL_R) { - lv_rect_layout_col(rect); - } else if(type == LV_RECT_LAYOUT_ROW_T || type == LV_RECT_LAYOUT_ROW_M || type == LV_RECT_LAYOUT_ROW_B) { - lv_rect_layout_row(rect); - } else if(type == LV_RECT_LAYOUT_PRETTY) { - lv_rect_layout_pretty(rect); - } else if(type == LV_RECT_LAYOUT_GRID) { - lv_rect_layout_grid(rect); + if(type == LV_CONT_LAYOUT_CENTER) { + lv_cont_layout_center(cont); + } else if(type == LV_CONT_LAYOUT_COL_L || type == LV_CONT_LAYOUT_COL_M || type == LV_CONT_LAYOUT_COL_R) { + lv_cont_layout_col(cont); + } else if(type == LV_CONT_LAYOUT_ROW_T || type == LV_CONT_LAYOUT_ROW_M || type == LV_CONT_LAYOUT_ROW_B) { + lv_cont_layout_row(cont); + } else if(type == LV_CONT_LAYOUT_PRETTY) { + lv_cont_layout_pretty(cont); + } else if(type == LV_CONT_LAYOUT_GRID) { + lv_cont_layout_grid(cont); } } /** * Handle column type layouts - * @param rect pointer to an object which layout should be handled + * @param cont pointer to an object which layout should be handled */ -static void lv_rect_layout_col(lv_obj_t * rect) +static void lv_cont_layout_col(lv_obj_t * cont) { - lv_rect_layout_t type = lv_rect_get_layout(rect); + lv_cont_layout_t type = lv_cont_get_layout(cont); lv_obj_t * child; /*Adjust margin and get the alignment type*/ lv_align_t align; - lv_style_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(cont); cord_t hpad_corr; switch(type) { - case LV_RECT_LAYOUT_COL_L: + case LV_CONT_LAYOUT_COL_L: hpad_corr = style->hpad; align = LV_ALIGN_IN_TOP_LEFT; break; - case LV_RECT_LAYOUT_COL_M: + case LV_CONT_LAYOUT_COL_M: hpad_corr = 0; align = LV_ALIGN_IN_TOP_MID; break; - case LV_RECT_LAYOUT_COL_R: + case LV_CONT_LAYOUT_COL_R: hpad_corr = -style->hpad; align = LV_ALIGN_IN_TOP_RIGHT; break; @@ -313,44 +311,44 @@ static void lv_rect_layout_col(lv_obj_t * rect) /* Disable child change action because the children will be moved a lot * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); /* Align the children */ cord_t last_cord = style->vpad; - LL_READ_BACK(rect->child_ll, child) { + LL_READ_BACK(cont->child_ll, child) { if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - lv_obj_align(child, rect, align, hpad_corr , last_cord); + lv_obj_align(child, cont, align, hpad_corr , last_cord); last_cord += lv_obj_get_height(child) + style->opad; } - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); } /** * Handle row type layouts - * @param rect pointer to an object which layout should be handled + * @param cont pointer to an object which layout should be handled */ -static void lv_rect_layout_row(lv_obj_t * rect) +static void lv_cont_layout_row(lv_obj_t * cont) { - lv_rect_layout_t type = lv_rect_get_layout(rect); + lv_cont_layout_t type = lv_cont_get_layout(cont); lv_obj_t * child; /*Adjust margin and get the alignment type*/ lv_align_t align; - lv_style_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(cont); cord_t vpad_corr = style->vpad; switch(type) { - case LV_RECT_LAYOUT_ROW_T: + case LV_CONT_LAYOUT_ROW_T: vpad_corr = style->vpad; align = LV_ALIGN_IN_TOP_LEFT; break; - case LV_RECT_LAYOUT_ROW_M: + case LV_CONT_LAYOUT_ROW_M: vpad_corr = 0; align = LV_ALIGN_IN_LEFT_MID; break; - case LV_RECT_LAYOUT_ROW_B: + case LV_CONT_LAYOUT_ROW_B: vpad_corr = -style->vpad; align = LV_ALIGN_IN_BOTTOM_LEFT; break; @@ -362,33 +360,33 @@ static void lv_rect_layout_row(lv_obj_t * rect) /* Disable child change action because the children will be moved a lot * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); /* Align the children */ cord_t last_cord = style->hpad; - LL_READ_BACK(rect->child_ll, child) { + LL_READ_BACK(cont->child_ll, child) { if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - lv_obj_align(child, rect, align, last_cord, vpad_corr); + lv_obj_align(child, cont, align, last_cord, vpad_corr); last_cord += lv_obj_get_width(child) + style->opad; } - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); } /** * Handle the center layout - * @param rect pointer to an object which layout should be handled + * @param cont pointer to an object which layout should be handled */ -static void lv_rect_layout_center(lv_obj_t * rect) +static void lv_cont_layout_center(lv_obj_t * cont) { lv_obj_t * child; - lv_style_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(cont); uint32_t obj_num = 0; cord_t h_tot = 0; - LL_READ(rect->child_ll, child) { + LL_READ(cont->child_ll, child) { h_tot += lv_obj_get_height(child) + style->opad; obj_num ++; } @@ -399,41 +397,41 @@ static void lv_rect_layout_center(lv_obj_t * rect) /* Disable child change action because the children will be moved a lot * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); /* Align the children */ cord_t last_cord = - (h_tot / 2); - LL_READ_BACK(rect->child_ll, child) { + LL_READ_BACK(cont->child_ll, child) { if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; - lv_obj_align(child, rect, LV_ALIGN_CENTER, 0, last_cord + lv_obj_get_height(child) / 2); + lv_obj_align(child, cont, LV_ALIGN_CENTER, 0, last_cord + lv_obj_get_height(child) / 2); last_cord += lv_obj_get_height(child) + style->opad; } - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); } /** * Handle the pretty layout. Put as many object as possible in row * then begin a new row - * @param rect pointer to an object which layout should be handled + * @param cont pointer to an object which layout should be handled */ -static void lv_rect_layout_pretty(lv_obj_t * rect) +static void lv_cont_layout_pretty(lv_obj_t * cont) { lv_obj_t * child_rs; /* Row starter child */ lv_obj_t * child_rc; /* Row closer child */ lv_obj_t * child_tmp; /* Temporary child */ - lv_style_t * style = lv_obj_get_style(rect); - cord_t w_obj = lv_obj_get_width(rect); + lv_style_t * style = lv_obj_get_style(cont); + cord_t w_obj = lv_obj_get_width(cont); cord_t act_y = style->vpad; /* Disable child change action because the children will be moved a lot * an unnecessary child change signals could be sent*/ - child_rs = ll_get_tail(&rect->child_ll); /*Set the row starter child*/ + child_rs = ll_get_tail(&cont->child_ll); /*Set the row starter child*/ if(child_rs == NULL) return; /*Return if no child*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); child_rc = child_rs; /*Initially the the row starter and closer is the same*/ while(child_rs != NULL) { @@ -450,23 +448,23 @@ static void lv_rect_layout_pretty(lv_obj_t * rect) h_row = MATH_MAX(h_row, lv_obj_get_height(child_rc)); /*Search the highest object*/ obj_num ++; } - child_rc = ll_get_prev(&rect->child_ll, child_rc); /*Load the next object*/ + child_rc = ll_get_prev(&cont->child_ll, child_rc); /*Load the next object*/ if(obj_num == 0) child_rs = child_rc; /*If the first object was hidden (or too long) then set the next as first */ }while(child_rc != NULL); /*Step back one child because the last is already not fit*/ - if(child_rc != NULL && obj_num != 0) child_rc = ll_get_next(&rect->child_ll, child_rc); + if(child_rc != NULL && obj_num != 0) child_rc = ll_get_next(&cont->child_ll, child_rc); /*If the object is too long then align it to the middle*/ if(obj_num == 0) { if(child_rc != NULL) { h_row = lv_obj_get_height(child_rc); - lv_obj_align(child_rc, rect, LV_ALIGN_IN_TOP_MID, 0, act_y); + lv_obj_align(child_rc, cont, LV_ALIGN_IN_TOP_MID, 0, act_y); } } /*If here is only one object in the row then align it to the left*/ else if (obj_num == 1) { - lv_obj_align(child_rs, rect, LV_ALIGN_IN_TOP_MID, 0, act_y); + lv_obj_align(child_rs, cont, LV_ALIGN_IN_TOP_MID, 0, act_y); } /* Align the children (from child_rs to child_rc)*/ else { @@ -477,33 +475,33 @@ static void lv_rect_layout_pretty(lv_obj_t * rect) do{ if(lv_obj_get_hidden(child_tmp) == false && lv_obj_is_protected(child_tmp, LV_PROTECT_POS) == false) { - lv_obj_align(child_tmp, rect, LV_ALIGN_IN_TOP_LEFT, act_x, act_y); + lv_obj_align(child_tmp, cont, LV_ALIGN_IN_TOP_LEFT, act_x, act_y); act_x += lv_obj_get_width(child_tmp) + new_opad; } - child_tmp = ll_get_prev(&rect->child_ll, child_tmp); + child_tmp = ll_get_prev(&cont->child_ll, child_tmp); }while(child_tmp != child_rc); } if(child_rc == NULL) break; act_y += style->opad + h_row; /*y increment*/ - child_rs = ll_get_prev(&rect->child_ll, child_rc); /*Go to the next object*/ + child_rs = ll_get_prev(&cont->child_ll, child_rc); /*Go to the next object*/ child_rc = child_rs; } - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); } /** * Handle the grid layout. Align same-sized objects in a grid - * @param rect pointer to an object which layout should be handled + * @param cont pointer to an object which layout should be handled */ -static void lv_rect_layout_grid(lv_obj_t * rect) +static void lv_cont_layout_grid(lv_obj_t * cont) { lv_obj_t * child; - lv_style_t * style = lv_obj_get_style(rect); - cord_t w_tot = lv_obj_get_width(rect); - cord_t w_obj = lv_obj_get_width(lv_obj_get_child(rect, NULL)); - cord_t h_obj = lv_obj_get_height(lv_obj_get_child(rect, NULL)); + lv_style_t * style = lv_obj_get_style(cont); + cord_t w_tot = lv_obj_get_width(cont); + cord_t w_obj = lv_obj_get_width(lv_obj_get_child(cont, NULL)); + cord_t h_obj = lv_obj_get_height(lv_obj_get_child(cont, NULL)); uint16_t obj_row = (w_tot - (2 * style->hpad)) / (w_obj + style->opad); /*Obj. num. in a row*/ cord_t x_ofs; if(obj_row > 1) { @@ -515,13 +513,13 @@ static void lv_rect_layout_grid(lv_obj_t * rect) /* Disable child change action because the children will be moved a lot * an unnecessary child change signals could be sent*/ - lv_obj_set_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_set_protect(cont, LV_PROTECT_CHILD_CHG); /* Align the children */ cord_t act_x = style->hpad; cord_t act_y = style->vpad; uint16_t obj_cnt = 0; - LL_READ_BACK(rect->child_ll, child) { + LL_READ_BACK(cont->child_ll, child) { if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) continue; @@ -540,16 +538,16 @@ static void lv_rect_layout_grid(lv_obj_t * rect) } } - lv_obj_clr_protect(rect, LV_PROTECT_CHILD_CHG); + lv_obj_clr_protect(cont, LV_PROTECT_CHILD_CHG); } /** * Handle auto fit. Set the size of the object to involve all children. - * @param rect pointer to an object which size will be modified + * @param cont pointer to an object which size will be modified */ -static void lv_rect_refr_autofit(lv_obj_t * rect) +static void lv_cont_refr_autofit(lv_obj_t * cont) { - lv_rect_ext_t * ext = lv_obj_get_ext(rect); + lv_cont_ext_t * ext = lv_obj_get_ext(cont); if(ext->hpad_en == 0 && ext->vpad_en == 0) { @@ -558,21 +556,21 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) area_t new_cords; area_t ori; - lv_style_t * style = lv_obj_get_style(rect); + lv_style_t * style = lv_obj_get_style(cont); lv_obj_t * i; cord_t hpad = style->hpad; cord_t vpad = style->vpad; /*Search the side coordinates of the children*/ - lv_obj_get_cords(rect, &ori); - lv_obj_get_cords(rect, &new_cords); + lv_obj_get_cords(cont, &ori); + lv_obj_get_cords(cont, &new_cords); new_cords.x1 = LV_CORD_MAX; new_cords.y1 = LV_CORD_MAX; new_cords.x2 = LV_CORD_MIN; new_cords.y2 = LV_CORD_MIN; - LL_READ(rect->child_ll, i) { + LL_READ(cont->child_ll, i) { if(lv_obj_get_hidden(i) != false) continue; new_cords.x1 = MATH_MIN(new_cords.x1, i->cords.x1); new_cords.y1 = MATH_MIN(new_cords.y1, i->cords.y1); @@ -586,33 +584,33 @@ static void lv_rect_refr_autofit(lv_obj_t * rect) new_cords.x1 -= hpad; new_cords.x2 += hpad; } else { - new_cords.x1 = rect->cords.x1; - new_cords.x2 = rect->cords.x2; + new_cords.x1 = cont->cords.x1; + new_cords.x2 = cont->cords.x2; } if(ext->vpad_en != 0) { new_cords.y1 -= vpad; new_cords.y2 += vpad; } else { - new_cords.y1 = rect->cords.y1; - new_cords.y2 = rect->cords.y2; + new_cords.y1 = cont->cords.y1; + new_cords.y2 = cont->cords.y2; } /*Do nothing if the coordinates are not changed*/ - if(rect->cords.x1 != new_cords.x1 || - rect->cords.y1 != new_cords.y1 || - rect->cords.x2 != new_cords.x2 || - rect->cords.y2 != new_cords.y2) { + if(cont->cords.x1 != new_cords.x1 || + cont->cords.y1 != new_cords.y1 || + cont->cords.x2 != new_cords.x2 || + cont->cords.y2 != new_cords.y2) { - lv_obj_inv(rect); - area_cpy(&rect->cords, &new_cords); - lv_obj_inv(rect); + lv_obj_inv(cont); + area_cpy(&cont->cords, &new_cords); + lv_obj_inv(cont); /*Notify the object about its new coordinates*/ - rect->signal_f(rect, LV_SIGNAL_CORD_CHG, &ori); + cont->signal_f(cont, LV_SIGNAL_CORD_CHG, &ori); /*Inform the parent about the new coordinates*/ - lv_obj_t * par = lv_obj_get_parent(rect); - par->signal_f(par, LV_SIGNAL_CHILD_CHG, rect); + lv_obj_t * par = lv_obj_get_parent(cont); + par->signal_f(par, LV_SIGNAL_CHILD_CHG, cont); } } } diff --git a/lv_objx/lv_cont.h b/lv_objx/lv_cont.h new file mode 100644 index 000000000..3fb8a5d22 --- /dev/null +++ b/lv_objx/lv_cont.h @@ -0,0 +1,114 @@ +/** + * @file lv_cont.h + * + */ + +#ifndef LV_CONT_H +#define LV_CONT_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_RECT != 0 + +#include "../lv_obj/lv_obj.h" +#include "../lv_obj/lv_dispi.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Layout options*/ +typedef enum +{ + LV_CONT_LAYOUT_OFF = 0, + LV_CONT_LAYOUT_CENTER, + LV_CONT_LAYOUT_COL_L, /*Column left align*/ + LV_CONT_LAYOUT_COL_M, /*Column middle align*/ + LV_CONT_LAYOUT_COL_R, /*Column right align*/ + LV_CONT_LAYOUT_ROW_T, /*Row left align*/ + LV_CONT_LAYOUT_ROW_M, /*Row middle align*/ + LV_CONT_LAYOUT_ROW_B, /*Row right align*/ + LV_CONT_LAYOUT_PRETTY, /*Put as many object as possible in row and begin a new row*/ + LV_CONT_LAYOUT_GRID, /*Align same-sized object into a grid*/ +}lv_cont_layout_t; + +typedef struct +{ + /*Inherited from 'base_obj' so no inherited ext. */ /*Ext. of ancestor*/ + /*New data for this type */ + uint8_t layout :5; /*Set a layout from 'lv_cont_layout_t' enum*/ + uint8_t hpad_en :1; /*Enable horizontal padding according to the children*/ + uint8_t vpad_en :1; /*Enable horizontal padding according to the children*/ +}lv_cont_ext_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a container objects + * @param par pointer to an object, it will be the parent of the new container + * @param copy pointer to a container object, if not NULL then the new object will be copied from it + * @return pointer to the created container + */ +lv_obj_t * lv_cont_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the container + * @param cont pointer to a container object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + */ +bool lv_cont_signal(lv_obj_t * cont, lv_signal_t sign, void * param); + +/** + * Set the layout on a container + * @param cont pointer to a container object + * @param layout a layout from 'lv_cont_layout_t' + */ +void lv_cont_set_layout(lv_obj_t * cont, lv_cont_layout_t layout); + +/** + * Enable the horizontal or vertical fit. + * The container size will be set to involve the children horizontally or vertically. + * @param cont pointer to a container object + * @param hor_en true: enable the horizontal padding + * @param ver_en true: enable the vertical padding + */ +void lv_cont_set_fit(lv_obj_t * cont, bool hor_en, bool ver_en); + +/** + * Get the layout of a container + * @param cont pointer to container object + * @return the layout from 'lv_cont_layout_t' + */ +lv_cont_layout_t lv_cont_get_layout(lv_obj_t * cont); + +/** + * Get horizontal fit enable attribute of a container + * @param cont pointer to a container object + * @return true: horizontal padding is enabled + */ +bool lv_cont_get_hfit(lv_obj_t * cont); + +/** + * Get vertical fit enable attribute of a container + * @param obj pointer to a container object + * @return true: vertical padding is enabled + */ +bool lv_cont_get_vfit(lv_obj_t * cont); + + +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 969a8c214..1403e6d92 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -86,7 +86,7 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) ext->opt_label = lv_label_create(new_ddlist, NULL); lv_obj_set_style(ext->opt_label, NULL); /*Inherit the style*/ - lv_rect_set_fit(new_ddlist, true, false); + lv_cont_set_fit(new_ddlist, true, false); lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); lv_page_set_sb_mode(new_ddlist, LV_PAGE_SB_MODE_DRAG); lv_obj_set_style(new_ddlist, lv_style_get(LV_STYLE_PRETTY, NULL)); diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 44448cb6c..26c076078 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -24,6 +24,7 @@ #define LV_GAUGE_DEF_WIDTH (3 * LV_DPI) #define LV_GAUGE_DEF_HEIGHT (3 * LV_DPI) #define LV_GAUGE_DEF_NEEDLE_COLOR COLOR_RED +#define LV_GAUGE_DEF_ANGLE 220 /********************** * TYPEDEFS **********************/ @@ -61,7 +62,7 @@ static lv_design_f_t ancestor_design_f = NULL; lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor gauge*/ - lv_obj_t * new_gauge = lv_rect_create(par, copy); + lv_obj_t * new_gauge = lv_cont_create(par, copy); dm_assert(new_gauge); /*Allocate the gauge type specific extended data*/ @@ -75,7 +76,7 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) ext->values = NULL; ext->needle_color = NULL; ext->low_critical = 0; - ext->scale_angle = 120; + ext->scale_angle = LV_GAUGE_DEF_ANGLE; ext->scale_label_num = 6; ext->style_critical = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); @@ -123,7 +124,7 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(gauge, sign, param); + valid = lv_cont_signal(gauge, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -457,7 +458,7 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style lv_style_get(LV_STYLE_PLAIN, &style_neddle_mid); style_neddle_mid.mcolor = style->bcolor; style_neddle_mid.gcolor = style->bcolor; - style_neddle_mid.radius = LV_RECT_CIRCLE; + style_neddle_mid.radius = LV_CONT_CIRCLE; area_t nm_cord; nm_cord.x1 = x_ofs - style->opad; diff --git a/lv_objx/lv_gauge.h b/lv_objx/lv_gauge.h index 0dc82576c..17bb8e806 100644 --- a/lv_objx/lv_gauge.h +++ b/lv_objx/lv_gauge.h @@ -32,7 +32,7 @@ #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_label.h" #include "lv_line.h" diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index be7f6b653..c37ec7d97 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -49,7 +49,7 @@ static bool lv_img_is_symbol(const char * txt); /** * Create an image objects * @param par pointer to an object, it will be the parent of the new button - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it + * @param copy pointer to a image object, if not NULL then the new object will be copied from it * @return pointer to the created image */ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index 057c59e6e..aeadf2cc9 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -9,7 +9,7 @@ #include "lv_conf.h" #if USE_LV_LED != 0 -#include "lv_rect.h" +#include #include "lv_led.h" #include "../lv_draw/lv_draw.h" @@ -56,7 +56,7 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor basic object*/ - lv_obj_t * new_led = lv_rect_create(par, copy); + lv_obj_t * new_led = lv_cont_create(par, copy); dm_assert(new_led); /*Allocate the object type specific extended data*/ @@ -98,7 +98,7 @@ bool lv_led_signal(lv_obj_t * led, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(led, sign, param); + valid = lv_cont_signal(led, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ diff --git a/lv_objx/lv_led.h b/lv_objx/lv_led.h index 86a876c13..50338513e 100644 --- a/lv_objx/lv_led.h +++ b/lv_objx/lv_led.h @@ -30,7 +30,7 @@ /*Data of led*/ typedef struct { - lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ + lv_cont_ext_t bg_rect; /*Ext. of ancestor*/ /*New data for this type */ uint8_t bright; /*Current brightness of the LED (0..255)*/ }lv_led_ext_t; diff --git a/lv_objx/lv_line.c b/lv_objx/lv_line.c index 41a8423d2..867cb2ecf 100644 --- a/lv_objx/lv_line.c +++ b/lv_objx/lv_line.c @@ -58,7 +58,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_t * new_line = lv_obj_create(par, copy); dm_assert(new_line); - /*Extend the basic object to rectangle object*/ + /*Extend the basic object to line object*/ lv_line_ext_t * ext = lv_obj_alloc_ext(new_line, sizeof(lv_line_ext_t)); dm_assert(ext); ext->point_num = 0; @@ -70,7 +70,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_design_f(new_line, lv_line_design); lv_obj_set_signal_f(new_line, lv_line_signal); - /*Init the new rectangle*/ + /*Init the new line*/ if(copy == NULL) { lv_obj_set_style(new_line, lv_style_get(LV_STYLE_PLAIN, NULL)); } diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index 078b696e9..b43f71bda 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -10,13 +10,13 @@ #if USE_LV_LIST != 0 #include "lv_list.h" -#include "lv_rect.h" +#include #include "misc/math/math_base.h" /********************* * DEFINES *********************/ -#define LV_LIST_LAYOUT_DEF LV_RECT_LAYOUT_COL_M +#define LV_LIST_LAYOUT_DEF LV_CONT_LAYOUT_COL_M /********************** * TYPEDEFS @@ -71,7 +71,7 @@ lv_obj_t * lv_list_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new list object*/ if(copy == NULL) { lv_obj_set_size_us(new_list, 2 * LV_DPI, 3 * LV_DPI); - lv_rect_set_layout(ext->page.scrl, LV_LIST_LAYOUT_DEF); + lv_cont_set_layout(ext->page.scrl, LV_LIST_LAYOUT_DEF); lv_obj_set_style(new_list, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_style(lv_page_get_scrl(new_list), lv_style_get(LV_STYLE_PRETTY, NULL)); lv_page_set_sb_mode(new_list, LV_PAGE_SB_MODE_AUTO); @@ -121,8 +121,8 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l lv_btn_set_rel_action(liste, rel_action); lv_page_glue_obj(liste, true); - lv_rect_set_layout(liste, LV_RECT_LAYOUT_ROW_M); - lv_rect_set_fit(liste, false, true); + lv_cont_set_layout(liste, LV_CONT_LAYOUT_ROW_M); + lv_cont_set_fit(liste, false, true); if(img_fn != NULL && img_fn[0] != '\0') { lv_obj_t * img = lv_img_create(liste, NULL); diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index 1de658004..62800355c 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -59,7 +59,7 @@ static void lv_mbox_disable_fit(lv_obj_t * mbox); lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor message box*/ - lv_obj_t * new_mbox = lv_rect_create(par, copy); + lv_obj_t * new_mbox = lv_cont_create(par, copy); dm_assert(new_mbox); /*Allocate the message box type specific extended data*/ @@ -78,8 +78,8 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new message box message box*/ if(copy == NULL) { - lv_rect_set_layout(new_mbox, LV_RECT_LAYOUT_COL_L); - lv_rect_set_fit(new_mbox, true, true); + lv_cont_set_layout(new_mbox, LV_CONT_LAYOUT_COL_L); + lv_cont_set_fit(new_mbox, true, true); ext->txt = lv_label_create(new_mbox, NULL); lv_label_set_text(ext->txt, "Text of the message box"); @@ -126,7 +126,7 @@ bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_rect_signal(mbox, sign, param); + valid = lv_cont_signal(mbox, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -201,11 +201,11 @@ lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t re /*Create a button if it is not existed yet*/ if(ext->btnh == NULL) { - ext->btnh = lv_rect_create(mbox, NULL); + ext->btnh = lv_cont_create(mbox, NULL); lv_obj_set_style(ext->btnh, lv_style_get(LV_STYLE_TRANSP, NULL)); lv_obj_set_click(ext->btnh, false); - lv_rect_set_fit(ext->btnh, false, true); - lv_rect_set_layout(ext->btnh, LV_RECT_LAYOUT_PRETTY); + lv_cont_set_fit(ext->btnh, false, true); + lv_cont_set_layout(ext->btnh, LV_CONT_LAYOUT_PRETTY); } lv_obj_t * btn; @@ -214,7 +214,7 @@ lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t re lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], ext->styles_btn[LV_BTN_STATE_INA]); - lv_rect_set_fit(btn, true, true); + lv_cont_set_fit(btn, true, true); lv_obj_t * label; label = lv_label_create(btn, NULL); @@ -405,7 +405,7 @@ static void lv_mbox_realign(lv_obj_t * mbox) */ static void lv_mbox_disable_fit(lv_obj_t * mbox) { - lv_rect_set_fit(mbox, false, false); + lv_cont_set_fit(mbox, false, false); } #endif diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 62a218982..b64d85522 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -27,7 +27,7 @@ #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_btn.h" #include "lv_label.h" @@ -42,7 +42,7 @@ /*Data of message box*/ typedef struct { - lv_rect_ext_t bg; /*Ext. of ancestor*/ + lv_cont_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * txt; /*Text of the message box*/ lv_obj_t * btnh; /*Holder of the buttons*/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 31053cc2e..aca44c695 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -11,7 +11,7 @@ #include "misc/math/math_base.h" #include "../lv_objx/lv_page.h" -#include "../lv_objx/lv_rect.h" +#include "../lv_objx/lv_cont.h" #include "../lv_draw/lv_draw.h" #include "../lv_obj/lv_refr.h" #include "../lv_misc/anim.h" @@ -61,7 +61,7 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor object*/ - lv_obj_t * new_page = lv_rect_create(par, copy); + lv_obj_t * new_page = lv_cont_create(par, copy); dm_assert(new_page); /*Allocate the object type specific extended data*/ @@ -81,12 +81,12 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new page object*/ if(copy == NULL) { lv_style_t * style = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); - ext->scrl = lv_rect_create(new_page, NULL); + ext->scrl = lv_cont_create(new_page, NULL); lv_obj_set_signal_f(ext->scrl, lv_scrl_signal); lv_obj_set_drag(ext->scrl, true); lv_obj_set_drag_throw(ext->scrl, true); lv_obj_set_protect(ext->scrl, LV_PROTECT_PARENT); - lv_rect_set_fit(ext->scrl, true, true); + lv_cont_set_fit(ext->scrl, true, true); lv_obj_set_style(ext->scrl, lv_style_get(LV_STYLE_PRETTY, NULL)); /* Add the signal function only if 'scrolling' is created @@ -96,7 +96,7 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_style(new_page, style); } else { lv_page_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->scrl = lv_rect_create(new_page, copy_ext->scrl); + ext->scrl = lv_cont_create(new_page, copy_ext->scrl); lv_obj_set_signal_f(ext->scrl, lv_scrl_signal); lv_page_set_pr_action(new_page, copy_ext->pr_action); @@ -128,7 +128,7 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) bool obj_valid = true; /* Include the ancient signal function */ - obj_valid = lv_rect_signal(page, sign, param); + obj_valid = lv_cont_signal(page, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -209,7 +209,7 @@ static bool lv_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void* param) bool obj_valid = true; /* Include the ancient signal function */ - obj_valid = lv_rect_signal(scrl, sign, param); + obj_valid = lv_cont_signal(scrl, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -480,7 +480,7 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) /** * Get the scrollable object of a page- * @param page pointer to page object - * @return pointer to rectangle which is the scrollable part of the page + * @return pointer to a container which is the scrollable part of the page */ lv_obj_t * lv_page_get_scrl(lv_obj_t * page) { diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 0613d8eda..c1ee020ca 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -18,7 +18,7 @@ #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include /********************* * DEFINES @@ -34,13 +34,13 @@ typedef enum LV_PAGE_SB_MODE_OFF, /*Never show scrollbars*/ LV_PAGE_SB_MODE_ON, /*Always show scrollbars*/ LV_PAGE_SB_MODE_DRAG, /*Show scrollbars when page is being dragged*/ - LV_PAGE_SB_MODE_AUTO, /*Show scrollbars when the scrollable rect. is large enough to be scrolled*/ + LV_PAGE_SB_MODE_AUTO, /*Show scrollbars when the scrollable container is large enough to be scrolled*/ }lv_page_sb_mode_t; /*Data of page*/ typedef struct { - lv_rect_ext_t bg_rect; /*Ext. of ancestor*/ + lv_cont_ext_t bg_rect; /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * scrl; /*The scrollable object on the background*/ lv_action_t rel_action; /*Function to call when the page is released*/ @@ -110,7 +110,7 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en); /** * Get the scrollable object of a page- * @param page pointer to page object - * @return pointer to rectangle which is the scrollable part of the page + * @return pointer to container which is the scrollable part of the page */ lv_obj_t * lv_page_get_scrl(lv_obj_t * page); diff --git a/lv_objx/lv_rect.h b/lv_objx/lv_rect.h deleted file mode 100644 index da06b273a..000000000 --- a/lv_objx/lv_rect.h +++ /dev/null @@ -1,114 +0,0 @@ -/** - * @file lv_rect.h - * - */ - -#ifndef LV_RECT_H -#define LV_RECT_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#if USE_LV_RECT != 0 - -#include "../lv_obj/lv_obj.h" -#include "../lv_obj/lv_dispi.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/*Layout options*/ -typedef enum -{ - LV_RECT_LAYOUT_OFF = 0, - LV_RECT_LAYOUT_CENTER, - LV_RECT_LAYOUT_COL_L, /*Column left align*/ - LV_RECT_LAYOUT_COL_M, /*Column middle align*/ - LV_RECT_LAYOUT_COL_R, /*Column right align*/ - LV_RECT_LAYOUT_ROW_T, /*Row left align*/ - LV_RECT_LAYOUT_ROW_M, /*Row middle align*/ - LV_RECT_LAYOUT_ROW_B, /*Row right align*/ - LV_RECT_LAYOUT_PRETTY, /*Put as many object as possible in row and begin a new row*/ - LV_RECT_LAYOUT_GRID, /*Align same-sized object into a grid*/ -}lv_rect_layout_t; - -typedef struct -{ - /*Inherited from 'base_obj' so no inherited ext. */ /*Ext. of ancestor*/ - /*New data for this type */ - uint8_t layout :5; /*Set a layout from 'lv_rect_layout_t' enum*/ - uint8_t hpad_en :1; /*Enable horizontal padding according to the children*/ - uint8_t vpad_en :1; /*Enable horizontal padding according to the children*/ -}lv_rect_ext_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Create a rectangle objects - * @param par pointer to an object, it will be the parent of the new rectangle - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it - * @return pointer to the created rectangle - */ -lv_obj_t * lv_rect_create(lv_obj_t * par, lv_obj_t * copy); - -/** - * Signal function of the rectangle - * @param rect pointer to a rectangle object - * @param sign a signal type from lv_signal_t enum - * @param param pointer to a signal specific variable - */ -bool lv_rect_signal(lv_obj_t * rect, lv_signal_t sign, void * param); - -/** - * Set the layout on a rectangle - * @param rect pointer to a rectangle object - * @param layout a layout from 'lv_rect_layout_t' - */ -void lv_rect_set_layout(lv_obj_t * rect, lv_rect_layout_t layout); - -/** - * Enable the horizontal or vertical fit. - * The rectangle size will be set to involve the children horizontally or vertically. - * @param rect pointer to a rectangle object - * @param hor_en true: enable the horizontal padding - * @param ver_en true: enable the vertical padding - */ -void lv_rect_set_fit(lv_obj_t * rect, bool hor_en, bool ver_en); - -/** - * Get the layout of a rectangle - * @param rect pointer to rectangle object - * @return the layout from 'lv_rect_layout_t' - */ -lv_rect_layout_t lv_rect_get_layout(lv_obj_t * rect); - -/** - * Get horizontal fit enable attribute of a rectangle - * @param rect pointer to a rectangle object - * @return true: horizontal padding is enabled - */ -bool lv_rect_get_hfit(lv_obj_t * rect); - -/** - * Get vertical fit enable attribute of a rectangle - * @param obj pointer to a rectangle object - * @return true: vertical padding is enabled - */ -bool lv_rect_get_vfit(lv_obj_t * rect); - - -/********************** - * MACROS - **********************/ - -#endif - -#endif diff --git a/lv_objx/lv_slider.c b/lv_objx/lv_slider.c index 95cbb7e9f..fe81680bb 100644 --- a/lv_objx/lv_slider.c +++ b/lv_objx/lv_slider.c @@ -80,7 +80,8 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) /*Copy an existing slider*/ else { lv_slider_ext_t * copy_ext = lv_obj_get_ext(copy); - + ext->style_knob = copy_ext->style_knob; + ext->cb = copy_ext->cb; /*Refresh the style with new signal function*/ lv_obj_refr_style(new_slider); } diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 71ef414d5..9bbf2f5c6 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -79,12 +79,12 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) lv_page_set_sb_mode(ext->page, LV_PAGE_SB_MODE_AUTO); lv_obj_t * scrl = lv_page_get_scrl(ext->page); - lv_rect_set_fit(scrl, false, true); + lv_cont_set_fit(scrl, false, true); lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); /*Create a holder for the header*/ - ext->header = lv_rect_create(new_win, NULL); - lv_rect_set_fit(ext->header, false, true); + ext->header = lv_cont_create(new_win, NULL); + lv_cont_set_fit(ext->header, false, true); /*Move back the header because it is automatically moved to the scrollable */ lv_obj_set_protect(ext->header, LV_PROTECT_PARENT); lv_obj_set_parent(ext->header, new_win); @@ -95,10 +95,10 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) lv_label_set_text(ext->title,"My title"); /*Create a holder for the control buttons*/ - ext->btnh = lv_rect_create(ext->header, NULL); - lv_rect_set_fit(ext->btnh, true, false); + ext->btnh = lv_cont_create(ext->header, NULL); + lv_cont_set_fit(ext->btnh, true, false); lv_obj_set_style(ext->btnh, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); - lv_rect_set_layout(ext->btnh, LV_RECT_LAYOUT_ROW_M); + lv_cont_set_layout(ext->btnh, LV_CONT_LAYOUT_ROW_M); lv_obj_set_signal_f(new_win, lv_win_signal); lv_obj_set_size(new_win, LV_HOR_RES, LV_VER_RES); @@ -107,13 +107,13 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) else { lv_win_ext_t * copy_ext = lv_obj_get_ext(copy); /*Create the objects*/ - ext->header = lv_rect_create(new_win, copy_ext->header); + ext->header = lv_cont_create(new_win, copy_ext->header); /*Move back the header because it is automatically moved to the scrollable */ lv_obj_set_protect(ext->header, LV_PROTECT_PARENT); lv_obj_set_parent(ext->header, new_win); ext->title = lv_label_create(ext->header, copy_ext->title); - ext->btnh = lv_rect_create(ext->header, copy_ext->btnh); + ext->btnh = lv_cont_create(ext->header, copy_ext->btnh); /*Copy the control buttons*/ lv_obj_t * child; diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index 66bee5b0b..04bb96766 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -38,7 +38,7 @@ #endif #include "../lv_obj/lv_obj.h" -#include "lv_rect.h" +#include #include "lv_btn.h" #include "lv_label.h" #include "lv_img.h" @@ -58,10 +58,10 @@ typedef struct /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * page; - lv_obj_t * header; /*Pointer to the header rectangle of the window*/ + lv_obj_t * header; /*Pointer to the header container of the window*/ lv_obj_t * title; /*Pointer to the title label of the window*/ - lv_obj_t * btnh; /*Pointer to the control button holder rectangle of the window*/ - lv_style_t * style_header; /*Style of the header rectangle*/ + lv_obj_t * btnh; /*Pointer to the control button holder container of the window*/ + lv_style_t * style_header; /*Style of the header container*/ lv_style_t * style_cbtn_rel; /*Control button releases style*/ lv_style_t * style_cbtn_pr; /*Control button pressed style*/ cord_t cbtn_size; /*Size of the control buttons (square)*/ diff --git a/lvgl.h b/lvgl.h index f73b0848b..a047cf558 100644 --- a/lvgl.h +++ b/lvgl.h @@ -34,7 +34,7 @@ #include "lv_objx/lv_label.h" #include "lv_objx/lv_line.h" #include "lv_objx/lv_page.h" -#include "lv_objx/lv_rect.h" +#include #include "lv_objx/lv_list.h" #include "lv_objx/lv_chart.h" #include "lv_objx/lv_cb.h" From 2a1ace1f817037293f7a261aab10902aba9469d5 Mon Sep 17 00:00:00 2001 From: Gabor Date: Tue, 18 Apr 2017 10:27:59 +0200 Subject: [PATCH 30/53] lv_misc moved to misc/gfx --- lv_misc/anim.c | 259 - lv_misc/anim.h | 110 - lv_misc/area.c | 233 - lv_misc/area.h | 158 - lv_misc/circ.c | 79 - lv_misc/circ.h | 70 - lv_misc/font.c | 163 - lv_misc/font.h | 115 - lv_misc/fonts/dejavu_10.c | 2780 ------ lv_misc/fonts/dejavu_10.h | 18 - lv_misc/fonts/dejavu_14.c | 3679 ------- lv_misc/fonts/dejavu_14.h | 18 - lv_misc/fonts/dejavu_20.c | 5020 ---------- lv_misc/fonts/dejavu_20.h | 18 - lv_misc/fonts/dejavu_30.c | 7260 -------------- lv_misc/fonts/dejavu_30.h | 18 - lv_misc/fonts/dejavu_40.c | 9500 ------------------ lv_misc/fonts/dejavu_40.h | 18 - lv_misc/fonts/dejavu_60.c | 13980 -------------------------- lv_misc/fonts/dejavu_60.h | 18 - lv_misc/fonts/dejavu_8.c | 2332 ----- lv_misc/fonts/dejavu_8.h | 18 - lv_misc/fonts/dejavu_80.c | 18460 ----------------------------------- lv_misc/fonts/dejavu_80.h | 15 - lv_misc/fonts/symbol_30.c | 867 -- lv_misc/fonts/symbol_30.h | 16 - lv_misc/fonts/symbol_60.c | 1648 ---- lv_misc/fonts/symbol_60.h | 16 - lv_misc/fonts/symbol_def.h | 39 - lv_misc/text.c | 265 - lv_misc/text.h | 94 - 31 files changed, 67284 deletions(-) delete mode 100644 lv_misc/anim.c delete mode 100644 lv_misc/anim.h delete mode 100644 lv_misc/area.c delete mode 100644 lv_misc/area.h delete mode 100644 lv_misc/circ.c delete mode 100644 lv_misc/circ.h delete mode 100644 lv_misc/font.c delete mode 100644 lv_misc/font.h delete mode 100644 lv_misc/fonts/dejavu_10.c delete mode 100644 lv_misc/fonts/dejavu_10.h delete mode 100644 lv_misc/fonts/dejavu_14.c delete mode 100644 lv_misc/fonts/dejavu_14.h delete mode 100644 lv_misc/fonts/dejavu_20.c delete mode 100644 lv_misc/fonts/dejavu_20.h delete mode 100644 lv_misc/fonts/dejavu_30.c delete mode 100644 lv_misc/fonts/dejavu_30.h delete mode 100644 lv_misc/fonts/dejavu_40.c delete mode 100644 lv_misc/fonts/dejavu_40.h delete mode 100644 lv_misc/fonts/dejavu_60.c delete mode 100644 lv_misc/fonts/dejavu_60.h delete mode 100644 lv_misc/fonts/dejavu_8.c delete mode 100644 lv_misc/fonts/dejavu_8.h delete mode 100644 lv_misc/fonts/dejavu_80.c delete mode 100644 lv_misc/fonts/dejavu_80.h delete mode 100644 lv_misc/fonts/symbol_30.c delete mode 100644 lv_misc/fonts/symbol_30.h delete mode 100644 lv_misc/fonts/symbol_60.c delete mode 100644 lv_misc/fonts/symbol_60.h delete mode 100644 lv_misc/fonts/symbol_def.h delete mode 100644 lv_misc/text.c delete mode 100644 lv_misc/text.h diff --git a/lv_misc/anim.c b/lv_misc/anim.c deleted file mode 100644 index df97f8187..000000000 --- a/lv_misc/anim.c +++ /dev/null @@ -1,259 +0,0 @@ -/** - * @file anim.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include -#include "anim.h" -#include "misc/math/math_base.h" -#include "misc/os/ptask.h" -#include "hal/systick/systick.h" - - -/********************* - * DEFINES - *********************/ -#define ANIM_PATH_LENGTH 129 /*Elements in a path array*/ -#define ANIM_PATH_START 64 /*In path array a value which corresponds to the start position*/ -#define ANIM_PATH_END 192 /* ... to the end position. Not required, just for clearance.*/ -#define ANIM_PATH_NORM_SHIFT 7 /*ANIM_PATH_START - ANIM_PATH_END. Must be 2^N. The exponent goes here. */ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static void anim_task (void * param); -static bool anim_ready_handler(anim_t * a); - -/********************** - * STATIC VARIABLES - **********************/ -static ll_dsc_t anim_ll; -static uint32_t last_task_run; -static bool anim_del_global_flag = false; - -static anim_path_t anim_path_lin[] = - {64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, - 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192}; - -static anim_path_t anim_path_step[] = - {64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 192,}; - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Init. the animation module - */ -void anim_init(void) -{ - ll_init(&anim_ll, sizeof(anim_t)); - last_task_run = systick_get(); - ptask_create(anim_task, LV_REFR_PERIOD, PTASK_PRIO_MID, NULL); -} - -/** - * Create an animation - * @param anim_p an initialized 'anim_t' variable. Not required after call. - */ -void anim_create(anim_t * anim_p) -{ - /*Add the new animation to the animation linked list*/ - anim_t * new_anim = ll_ins_head(&anim_ll); - dm_assert(new_anim); - - /*Initialize the animation descriptor*/ - anim_p->playback_now = 0; - memcpy(new_anim, anim_p, sizeof(anim_t)); - - /*Set the start value*/ - if(new_anim->fp != NULL) new_anim->fp(new_anim->var, new_anim->start); -} - -/** - * Delete an animation for a variable with a given animatior function - * @param var pointer to variable - * @param fp a function pointer which is animating 'var', - * or NULL to ignore it and delete all animation with 'var - * @return true: at least 1 animation is deleted, false: no animation is deleted - */ -bool anim_del(void * var, anim_fp_t fp) -{ - bool del = false; - anim_t * a; - anim_t * a_next; - a = ll_get_head(&anim_ll); - while(a != NULL) { - /*'a' might be deleted, so get the next object while 'a' is valid*/ - a_next = ll_get_next(&anim_ll, a); - - if(a->var == var && (a->fp == fp || fp == NULL)) { - ll_rem(&anim_ll, a); - dm_free(a); - del = true; - anim_del_global_flag = true; - } - - a = a_next; - } - - return del; -} - -/** - * Calculate the time of an animation with a given speed and the start and end values - * @param speed speed of animation in unit/sec - * @param start start value of the animation - * @param end end value of the animation - * @return the required time [ms] for the animation with the given parameters - */ -uint16_t anim_speed_to_time(uint16_t speed, int32_t start, int32_t end) -{ - int32_t d = MATH_ABS((int32_t) start - end); - uint16_t time = (int32_t)((int32_t)(d * 1000) / speed); - - if(time == 0) { - time++; - } - - return time; -} - -/** - * Get a predefine animation path - * @param name name of the path from 'anim_path_name_t' - * @return pointer to the path array - */ -anim_path_t * anim_get_path(anim_path_name_t name) -{ - switch (name) { - case ANIM_PATH_LIN: - return anim_path_lin; - break; - case ANIM_PATH_STEP: - return anim_path_step; - break; - default: - return NULL; - break; - } -} -/********************** - * STATIC FUNCTIONS - **********************/ - -/** - * Periodically handle the animations. - * @param param unused - */ -static void anim_task (void * param) -{ - uint32_t elaps; - elaps = systick_elaps(last_task_run); - - anim_t * a; - anim_t * a_next; - a = ll_get_head(&anim_ll); - while(a != NULL) { - /*'a' might be deleted, so get the next object while 'a' is valid*/ - a_next = ll_get_next(&anim_ll, a); - - a->act_time += elaps; - if(a->act_time >= 0) { - if(a->act_time > a->time) a->act_time = a->time; - - /* Get the index of the path array based on the elapsed time*/ - uint8_t path_i; - if(a->time == a->act_time) { - path_i = ANIM_PATH_LENGTH - 1; /*Use the last value id the time fully elapsed*/ - } else { - path_i = a->act_time * (ANIM_PATH_LENGTH - 1) / a->time; - } - /* Get the new value which will be proportional to the current element of 'path_p' - * and the 'start' and 'end' values*/ - int32_t new_val; - new_val = (int32_t)(a->path[path_i] - ANIM_PATH_START) * (a->end - a->start); - new_val = new_val >> ANIM_PATH_NORM_SHIFT; - new_val += a->start; - - if(a->fp != NULL) a->fp(a->var, new_val); /*Apply the calculated value*/ - - /*If the time is elapsed the animation is ready*/ - if(a->act_time >= a->time) { - bool invalid; - invalid = anim_ready_handler(a); - if(invalid != false) { - a_next = ll_get_head(&anim_ll); /*a_next might be invalid if animation delete occurred*/ - } - } - } - - a = a_next; - } - - last_task_run = systick_get(); -} - -/** - * Called when an animation is ready to do the necessary thinks - * e.g. repeat, play back, delete etc. - * @param a pointer to an animation descriptor - * @return true: animation delete occurred - * */ -static bool anim_ready_handler(anim_t * a) -{ - bool invalid = false; - - /*Delete the animation if - * - no repeat and no play back (simple one shot animation) - * - no repeat, play back is enabled and play back is ready */ - if((a->repeat == 0 && a->playback == 0) || - (a->repeat == 0 && a->playback == 1 && a->playback_now == 1)) { - void (*cb) (void *) = a->end_cb; - void * p = a->var; - ll_rem(&anim_ll, a); - dm_free(a); - - /*Call the callback function at the end*/ - /* Check if an animation is deleted in the cb function - * if yes then the caller function has to know this*/ - anim_del_global_flag = false; - if(cb != NULL) cb(p); - invalid = anim_del_global_flag; - } - /*If the animation is not deleted then restart it*/ - else { - a->act_time = - a->repeat_pause; /*Restart the animation*/ - /*Swap the start and end values in play back mode*/ - if(a->playback != 0) { - /*If now turning back use the 'playback_pause*/ - if(a->playback_now == 0) a->act_time = - a->playback_pause; - - /*Toggle the play back state*/ - a->playback_now = a->playback_now == 0 ? 1: 0; - /*Swap the start and end values*/ - int32_t tmp; - tmp = a->start; - a->start = a->end; - a->end = tmp; - } - } - - return invalid; -} diff --git a/lv_misc/anim.h b/lv_misc/anim.h deleted file mode 100644 index 3789d7a81..000000000 --- a/lv_misc/anim.h +++ /dev/null @@ -1,110 +0,0 @@ -/** - * @file anim.h - * - */ - -#ifndef ANIM_H -#define ANIM_H - -/********************* - * INCLUDES - *********************/ -#include "lvgl/lvgl.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -typedef enum -{ - ANIM_PATH_LIN, - ANIM_PATH_STEP, -}anim_path_name_t; - -typedef uint8_t anim_path_t; - -typedef void (*anim_fp_t)(void *, int32_t); -typedef void (*anim_cb_t)(void *); - -typedef struct -{ - void * var; /*Variable to animate*/ - anim_fp_t fp; /*Animator function*/ - anim_cb_t end_cb; /*Call it when the animation is ready*/ - anim_path_t * path; /*An array with the steps of animations*/ - int32_t start; /*Start value*/ - int32_t end; /*End value*/ - int16_t time; /*Animation time in ms*/ - int16_t act_time; /*Current time in animation. Set to negative to make delay.*/ - uint16_t playback_pause; /*Wait before play back*/ - uint16_t repeat_pause; /*Wait before repeat*/ - uint8_t playback :1; /*When the animation is ready play it back*/ - uint8_t repeat :1; /*Repeat the animation infinitely*/ - /*Animation system use these - user shouldn't set*/ - uint8_t playback_now :1; /*Play back is in progress*/ -}anim_t; - -/*Example initialization -anim_t a; -a.var = obj; -a.start = lv_obj_get_height(obj); -a.end = new_height; -a.fp = (anim_fp_t)lv_obj_set_height; -a.path = anim_get_path(ANIM_PATH_LIN); -a.end_cb = NULL; -a.act_time = 0; -a.time = 200; -a.playback = 0; -a.playback_pause = 0; -a.repeat = 0; -a.repeat_pause = 0; - */ -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Init. the animation module - */ -void anim_init(void); - -/** - * Create an animation - * @param anim_p an initialized 'anim_t' variable. Not required after call. - */ -void anim_create(anim_t * anim_p); - -/** - * Delete an animation for a variable with a given animatior function - * @param var pointer to variable - * @param fp a function pointer which is animating 'var', - * or NULL to ignore it and delete all animation with 'var - * @return true: at least 1 animation is deleted, false: no animation is deleted - */ -bool anim_del(void * var, anim_fp_t fp); - -/** - * Calculate the time of an animation with a given speed and the start and end values - * @param speed speed of animation in unit/sec - * @param start start value of the animation - * @param end end value of the animation - * @return the required time [ms] for the animation with the given parameters - */ -uint16_t anim_speed_to_time(uint16_t speed, int32_t start, int32_t end); - -/** - * Get a predefine animation path - * @param name name of the path from 'anim_path_name_t' - * @return pointer to the path array - */ -anim_path_t * anim_get_path(anim_path_name_t name); - -/********************** - * MACROS - **********************/ - -#endif diff --git a/lv_misc/area.c b/lv_misc/area.c deleted file mode 100644 index 21c398081..000000000 --- a/lv_misc/area.c +++ /dev/null @@ -1,233 +0,0 @@ -/** - * @file 2d.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include -#include "misc/math/math_base.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Initialize an area - * @param area_p pointer to an area - * @param x1 left coordinate of the area - * @param y1 top coordinate of the area - * @param x2 right coordinate of the area - * @param y2 bottom coordinate of the area - */ -void area_set(area_t * area_p, cord_t x1, cord_t y1, cord_t x2, cord_t y2) -{ - area_p->x1 = x1; - area_p->y1 = y1; - area_p->x2 = x2; - area_p->y2 = y2; -} - -/** - * Set the width of an area - * @param area_p pointer to an area - * @param w the new width of the area (w == 1 makes x1 == x2) - */ -void area_set_width(area_t * area_p, cord_t w) -{ - area_p->x2 = area_p->x1 + w - 1; -} - -/** - * Set the height of an area - * @param area_p pointer to an area - * @param h the new height of the area (h == 1 makes y1 == y2) - */ -void area_set_height(area_t * area_p, cord_t h) -{ - area_p->y2 = area_p->y1 + h - 1; -} - -/** - * Set the position of an area (width and height will be kept) - * @param area_p pointer to an area - * @param x the new x coordinate of the area - * @param y the new y coordinate of the area - */ -void area_set_pos(area_t * area_p, cord_t x, cord_t y) -{ - cord_t w = area_get_width(area_p); - cord_t h = area_get_height(area_p); - area_p->x1 = x; - area_p->y1 = y; - area_set_width(area_p, w); - area_set_height(area_p, h); -} - -/** - * Return with area of an area (x * y) - * @param area_p pointer to an area - * @return size of area - */ -uint32_t area_get_size(const area_t * area_p) -{ - uint32_t size; - - size = (uint32_t)(area_p->x2 - area_p->x1 + 1) * - (area_p->y2 - area_p->y1 + 1); - - return size; -} - -/** - * Get the common parts of two areas - * @param res_p pointer to an area, the result will be stored her - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - * @return false: the two area has NO common parts, res_p is invalid - */ -bool area_union(area_t * res_p, const area_t * a1_p, const area_t * a2_p) -{ - /* Get the smaller area from 'a1_p' and 'a2_p' */ - res_p->x1 = MATH_MAX(a1_p->x1, a2_p->x1); - res_p->y1 = MATH_MAX(a1_p->y1, a2_p->y1); - res_p->x2 = MATH_MIN(a1_p->x2, a2_p->x2); - res_p->y2 = MATH_MIN(a1_p->y2, a2_p->y2); - - /*If x1 or y1 greater then x2 or y2 then the areas union is empty*/ - bool union_ok = true; - if((res_p->x1 > res_p->x2) || - (res_p->y1 > res_p->y2)) - { - union_ok = false; - } - - return union_ok; -} -/** - * Join two areas into a third which involves the other two - * @param res_p pointer to an area, the result will be stored here - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - */ -void area_join(area_t * a_res_p, const area_t * a1_p, const area_t * a2_p) -{ - a_res_p->x1 = MATH_MIN(a1_p->x1, a2_p->x1); - a_res_p->y1 = MATH_MIN(a1_p->y1, a2_p->y1); - a_res_p->x2 = MATH_MAX(a1_p->x2, a2_p->x2); - a_res_p->y2 = MATH_MAX(a1_p->y2, a2_p->y2); -} - -/** - * Check if a point is on an area - * @param a_p pointer to an area - * @param p_p pointer to a point - * @return false:the point is out of the area - */ -bool area_is_point_on(const area_t * a_p, const point_t * p_p) -{ - bool is_on = false; - - if((p_p->x >= a_p->x1 && p_p->x <= a_p->x2) && - ((p_p->y >= a_p->y1 && p_p->y <= a_p->y2))) - { - is_on = true; - } - - return is_on; -} - -/** - * Check if two area has common parts - * @param a1_p pointer to an area. - * @param a2_p pointer to an other area - * @return false: a1_p and a2_p has no common parts - */ -bool area_is_on(const area_t * a1_p, const area_t * a2_p) -{ - /*Two area are on each other if... */ - - point_t p; - /*a2 left-top corner is on a1*/ - p.x = a2_p->x1; - p.y = a2_p->y1; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 right-top corner is on a1*/ - p.x = a2_p->x1; - p.y = a2_p->y1; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 left-bottom corner is on a1*/ - p.x = a2_p->x1; - p.y = a2_p->y2; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 right-bottom corner is on a1*/ - p.x = a2_p->x2; - p.y = a2_p->y2; - if(area_is_point_on(a1_p, &p)) return true; - - /*a2 is horizontally bigger then a1 and covers it*/ - if((a2_p->x1 <= a1_p->x1 && a2_p->x2 >= a1_p->x2) && /*a2 hor. cover a1?*/ - ((a2_p->y1 <= a1_p->y1 && a2_p->y1 >= a1_p->y2) || /*upper edge is on a1?*/ - (a2_p->y2 <= a1_p->y1 && a2_p->y2 >= a1_p->y2) ||/* or lower edge is on a1?*/ - (a2_p->y1 <= a1_p->y1 && a2_p->y2 >= a1_p->y2))) /*or a2 vert bigger then a1*/ - return true; - - /*a2 is vertically bigger then a1 and covers it*/ - if((a2_p->y1 <= a1_p->y1 && a2_p->y2 >= a1_p->y2) && /*a2 vert. cover a1?*/ - ((a2_p->x1 <= a1_p->x1 && a2_p->x1 >= a1_p->x2) || /*left edge is on a1?*/ - (a2_p->x2 <= a1_p->x1 && a2_p->x2 >= a1_p->x2) ||/* or right edge is on a1?*/ - (a2_p->x1 <= a1_p->x1 && a2_p->x2 >= a1_p->x2))) /*or a2 hor. bigger then a1*/ - return true; - - /*Else no cover*/ - return false; -} - -/** - * Check if an area is fully on an other - * @param ain_p pointer to an area which could be on aholder_p - * @param aholder pointer to an area which could involve ain_p - * @return - */ -bool area_is_in(const area_t * ain_p, const area_t * aholder_p) -{ - bool is_in = false; - - if(ain_p->x1 >= aholder_p->x1 && - ain_p->y1 >= aholder_p->y1 && - ain_p->x2 <= aholder_p->x2 && - ain_p->y2 <= aholder_p->y2) - { - is_in = true; - } - - return is_in; -} - -/********************** - * STATIC FUNCTIONS - **********************/ diff --git a/lv_misc/area.h b/lv_misc/area.h deleted file mode 100644 index 96514fc6c..000000000 --- a/lv_misc/area.h +++ /dev/null @@ -1,158 +0,0 @@ -/** - * @file area.h - * - */ - -#ifndef AREA_H -#define AREA_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#include -#include -#include - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ -typedef LV_CORD_TYPE cord_t; - -typedef struct -{ - cord_t x; - cord_t y; -}point_t; - -typedef struct -{ - cord_t x1; - cord_t y1; - cord_t x2; - cord_t y2; -}area_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Initialize an area - * @param area_p pointer to an area - * @param x1 left coordinate of the area - * @param y1 top coordinate of the area - * @param x2 right coordinate of the area - * @param y2 bottom coordinate of the area - */ -void area_set(area_t * area_p, cord_t x1, cord_t y1, cord_t x2, cord_t y2); - -/** - * Copy an area - * @param dest pointer to the destination area - * @param src pointer to the source area - */ -static void inline area_cpy(area_t * dest, const area_t * src) -{ - memcpy(dest, src, sizeof(area_t)); -} - -/** - * Get the width of an area - * @param area_p pointer to an area - * @return the width of the area (if x1 == x2 -> width = 1) - */ -static inline cord_t area_get_width(const area_t * area_p) -{ - return area_p->x2 - area_p->x1 + 1; -} - -/** - * Get the height of an area - * @param area_p pointer to an area - * @return the height of the area (if y1 == y2 -> height = 1) - */ -static inline cord_t area_get_height(const area_t * area_p) -{ - return area_p->y2 - area_p->y1 + 1; -} - -/** - * Set the width of an area - * @param area_p pointer to an area - * @param w the new width of the area (w == 1 makes x1 == x2) - */ -void area_set_width(area_t * area_p, cord_t w); - -/** - * Set the height of an area - * @param area_p pointer to an area - * @param h the new height of the area (h == 1 makes y1 == y2) - */ -void area_set_height(area_t * area_p, cord_t h); - -/** - * Set the position of an area (width and height will be kept) - * @param area_p pointer to an area - * @param x the new x coordinate of the area - * @param y the new y coordinate of the area - */ -void area_set_pos(area_t * area_p, cord_t x, cord_t y); - -/** - * Return with area of an area (x * y) - * @param area_p pointer to an area - * @return size of area - */ -uint32_t area_get_size(const area_t * area_p); - -/** - * Get the common parts of two areas - * @param res_p pointer to an area, the result will be stored her - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - * @return false: the two area has NO common parts, res_p is invalid - */ -bool area_union(area_t * res_p, const area_t * a1_p, const area_t * a2_p); - -/** - * Join two areas into a third which involves the other two - * @param res_p pointer to an area, the result will be stored here - * @param a1_p pointer to the first area - * @param a2_p pointer to the second area - */ -void area_join(area_t * a_res_p, const area_t * a1_p, const area_t * a2_p); - -/** - * Check if a point is on an area - * @param a_p pointer to an area - * @param p_p pointer to a point - * @return false:the point is out of the area - */ -bool area_is_point_on(const area_t * a_p, const point_t * p_p); - -/** - * Check if two area has common parts - * @param a1_p pointer to an area. - * @param a2_p pointer to an other area - * @return false: a1_p and a2_p has no common parts - */ -bool area_is_on(const area_t * a1_p, const area_t * a2_p); - -/** - * Check if an area is fully on an other - * @param ain_p pointer to an area which could be on aholder_p - * @param aholder pointer to an area which could involve ain_p - * @return - */ -bool area_is_in(const area_t * ain_p, const area_t * aholder_p); - -/********************** - * MACROS - **********************/ - -#endif diff --git a/lv_misc/circ.c b/lv_misc/circ.c deleted file mode 100644 index 100474f96..000000000 --- a/lv_misc/circ.c +++ /dev/null @@ -1,79 +0,0 @@ -/** - * @file circ.c - * Circle drawing algorithm (with Bresenham) - * Only a 1/8 circle is calculated. Use CIRC_OCT1_X, CIRC_OCT1_Y macros to get - * the other octets. - */ - -/********************* - * INCLUDES - *********************/ -#include - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Initialize the circle drawing - * @param c pointer to a point. The coordinates will be calculated here - * @param tmp point to a variable. It will store temporary data - * @param radius radius of the circle - */ -void circ_init(point_t * c, cord_t * tmp, cord_t radius) -{ - c->x = radius; - c->y = 0; - *tmp = 1 - radius; -} - -/** - * Test the circle drawing is ready or not - * @param c same as in circ_init - * @return true if the circle is not ready yet - */ -bool circ_cont(point_t * c) -{ - return c->y <= c->x ? true : false; -} - -/** - * Get the next point from the circle - * @param c same as in circ_init. The next point stored here. - * @param tmp same as in circ_init. - */ -void circ_next(point_t * c, cord_t * tmp) -{ - c->y++; - - if (*tmp <= 0) { - (*tmp) += 2 * c->y + 1; // Change in decision criterion for y -> y+1 - } else { - c->x--; - (*tmp) += 2 * (c->y - c->x) + 1; // Change for y -> y+1, x -> x-1 - } -} - -/********************** - * STATIC FUNCTIONS - **********************/ diff --git a/lv_misc/circ.h b/lv_misc/circ.h deleted file mode 100644 index 3fdcb0025..000000000 --- a/lv_misc/circ.h +++ /dev/null @@ -1,70 +0,0 @@ -/** - * @file circ.h - * - */ - -#ifndef CIRC_H -#define CIRC_H - -/********************* - * INCLUDES - *********************/ - -#include -#include - -/********************* - * DEFINES - *********************/ -#define CIRC_OCT1_X(p) (p.x) -#define CIRC_OCT1_Y(p) (p.y) -#define CIRC_OCT2_X(p) (p.y) -#define CIRC_OCT2_Y(p) (p.x) -#define CIRC_OCT3_X(p) (-p.y) -#define CIRC_OCT3_Y(p) (p.x) -#define CIRC_OCT4_X(p) (-p.x) -#define CIRC_OCT4_Y(p) (p.y) -#define CIRC_OCT5_X(p) (-p.x) -#define CIRC_OCT5_Y(p) (-p.y) -#define CIRC_OCT6_X(p) (-p.y) -#define CIRC_OCT6_Y(p) (-p.x) -#define CIRC_OCT7_X(p) (p.y) -#define CIRC_OCT7_Y(p) (-p.x) -#define CIRC_OCT8_X(p) (p.x) -#define CIRC_OCT8_Y(p) (-p.y) - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Initialize the circle drawing - * @param c pointer to a point. The coordinates will be calculated here - * @param tmp point to a variable. It will store temporary data - * @param radius radius of the circle - */ -void circ_init(point_t * c, cord_t * tmp, cord_t radius); - -/** - * Test the circle drawing is ready or not - * @param c same as in circ_init - * @return true if the circle is not ready yet - */ -bool circ_cont(point_t * c); - -/** - * Get the next point from the circle - * @param c same as in circ_init. The next point stored here. - * @param tmp same as in circ_init. - */ -void circ_next(point_t * c, cord_t * tmp); - -/********************** - * MACROS - **********************/ - -#endif diff --git a/lv_misc/font.c b/lv_misc/font.c deleted file mode 100644 index a0600d053..000000000 --- a/lv_misc/font.c +++ /dev/null @@ -1,163 +0,0 @@ -/** - * @file font.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include -#include -#include "font.h" -#include "fonts/dejavu_8.h" -#include "fonts/dejavu_10.h" -#include "fonts/dejavu_14.h" -#include "fonts/dejavu_20.h" -#include "fonts/dejavu_30.h" -#include "fonts/dejavu_40.h" -#include "fonts/dejavu_60.h" -#include "fonts/dejavu_80.h" -#include "fonts/symbol_30.h" -#include "fonts/symbol_60.h" - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Get the font from its id - * @param font_id: the id of a font (an element of font_types_t enum) - * @return pointer to a font descriptor - */ -const font_t * font_get(font_types_t font_id) -{ - const font_t * font_p = NULL; - - switch(font_id) - { -#if USE_FONT_DEJAVU_8 != 0 - case FONT_DEJAVU_8: - font_p = dejavu_8_get_dsc(); - break; -#endif -#if USE_FONT_DEJAVU_10 != 0 - case FONT_DEJAVU_10: - font_p = dejavu_10_get_dsc(); - break; -#endif -#if USE_FONT_DEJAVU_14 != 0 - case FONT_DEJAVU_14: - font_p = dejavu_14_get_dsc(); - break; -#endif -#if USE_FONT_DEJAVU_20 != 0 - case FONT_DEJAVU_20: - font_p = dejavu_20_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_30 != 0 - case FONT_DEJAVU_30: - font_p = dejavu_30_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_40 != 0 - case FONT_DEJAVU_40: - font_p = dejavu_40_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_60 != 0 - case FONT_DEJAVU_60: - font_p = dejavu_60_get_dsc(); - break; -#endif - -#if USE_FONT_DEJAVU_80 != 0 - case FONT_DEJAVU_80: - font_p = dejavu_80_get_dsc(); - break; -#endif - -#if USE_FONT_SYMBOL_30 != 0 - case FONT_SYMBOL_30: - font_p = symbol_30_get_dsc(); - break; -#endif - -#if USE_FONT_SYMBOL_60 != 0 - case FONT_SYMBOL_60: - font_p = symbol_60_get_dsc(); - break; -#endif - default: - font_p = NULL; - } - - return font_p; -} - -/** - * Return with the bitmap of a font. - * @param font_p pointer to a font - * @param letter a letter - * @return pointer to the bitmap of the letter - */ -const uint8_t * font_get_bitmap(const font_t * font_p, uint8_t letter) -{ - if(letter < font_p->start_ascii || letter >= font_p->start_ascii + font_p->letter_cnt) return NULL; - - uint32_t index = (letter - font_p->start_ascii) * font_p->height_row * font_p->width_byte; - return &font_p->bitmaps_a[index]; -} - -/** - * Get the width of a letter in a font - * @param font_p pointer to a font - * @param letter a letter - * @return the width of a letter - */ -uint8_t font_get_width(const font_t * font_p, uint8_t letter) -{ - if(letter < font_p->start_ascii) return 0; - - letter -= font_p->start_ascii; - uint8_t w = 0; - if(letter < font_p->letter_cnt) { - w = font_p->fixed_width != 0 ? font_p->fixed_width : - font_p->width_bit_a[letter]; - } - - return w; -} - -/********************** - * STATIC FUNCTIONS - **********************/ - - diff --git a/lv_misc/font.h b/lv_misc/font.h deleted file mode 100644 index 50755e401..000000000 --- a/lv_misc/font.h +++ /dev/null @@ -1,115 +0,0 @@ -/** - * @file font.h - * - */ - -#ifndef FONT_H -#define FONT_H - -/********************* - * INCLUDES - *********************/ -#include "lv_conf.h" -#include -#include - -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -typedef enum -{ -#if USE_FONT_DEJAVU_8 != 0 - FONT_DEJAVU_8, -#endif -#if USE_FONT_DEJAVU_10 != 0 - FONT_DEJAVU_10, -#endif -#if USE_FONT_DEJAVU_14 != 0 - FONT_DEJAVU_14, -#endif -#if USE_FONT_DEJAVU_20 != 0 - FONT_DEJAVU_20, -#endif -#if USE_FONT_DEJAVU_30 != 0 - FONT_DEJAVU_30, -#endif -#if USE_FONT_DEJAVU_40 != 0 - FONT_DEJAVU_40, -#endif -#if USE_FONT_DEJAVU_60 != 0 - FONT_DEJAVU_60, -#endif -#if USE_FONT_DEJAVU_80 != 0 - FONT_DEJAVU_80, -#endif -#if USE_FONT_SYMBOL_30 != 0 - FONT_SYMBOL_30, -#endif -#if USE_FONT_SYMBOL_60 != 0 - FONT_SYMBOL_60, -#endif - FONT_TYPE_NUM, -}font_types_t; - -typedef struct -{ - uint8_t letter_cnt; - uint8_t start_ascii; - uint8_t width_byte; - uint8_t height_row; - uint8_t fixed_width; - const uint8_t * width_bit_a; - const uint8_t * bitmaps_a; -}font_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Get the font from its id - * @param font_id: the id of a font (an element of font_types_t enum) - * @return pointer to a font descriptor - */ -const font_t * font_get(font_types_t font_id); - - -/** - * Return with the bitmap of a font. - * @param font_p pointer to a font - * @param letter a letter - * @return pointer to the bitmap of the letter - */ -const uint8_t * font_get_bitmap(const font_t * font_p, uint8_t letter); - -/** - * Get the height of a font - * @param font_p pointer to a font - * @return the height of a font - */ -static inline uint8_t font_get_height(const font_t * font_p) -{ - return font_p->height_row; -} - - -/** - * Get the width of a letter in a font - * @param font_p pointer to a font - * @param letter a letter - * @return the width of a letter - */ -uint8_t font_get_width(const font_t * font_p, uint8_t letter); - - -/********************** - * MACROS - **********************/ - - -#endif diff --git a/lv_misc/fonts/dejavu_10.c b/lv_misc/fonts/dejavu_10.c deleted file mode 100644 index 7dcfff35d..000000000 --- a/lv_misc/fonts/dejavu_10.c +++ /dev/null @@ -1,2780 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_10 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_10_bitmaps[2240] = -{ - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 33, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 34, char width: 4 - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 35, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x28, // --O-O--. - 0x7c, // -OOOOO-. - 0x28, // --O-O--. - 0x50, // -O-O---. - 0xf8, // OOOOO--. - 0x50, // -O-O---. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 36, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x70, // -OOO-... - 0xa0, // O-O--... - 0x60, // -OO--... - 0x30, // --OO-... - 0x28, // --O-O... - 0x70, // -OOO-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 37, char width: 8 - 0x00, // -------- - 0x42, // -O----O- - 0xa4, // O-O--O-- - 0x48, // -O--O--- - 0x10, // ---O---- - 0x24, // --O--O-- - 0x4a, // -O--O-O- - 0x84, // O----O-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 38, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x40, // -O----.. - 0x40, // -O----.. - 0x64, // -OO--O.. - 0x94, // O--O-O.. - 0x88, // O---O-.. - 0x74, // -OOO-O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 39, char width: 2 - 0x00, // --...... - 0x04, // -O...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 40, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 41, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 42, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 43, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x10, // ---O---. - 0x10, // ---O---. - 0x7c, // -OOOOO-. - 0x10, // ---O---. - 0x10, // ---O---. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 44, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x80, // O--..... - 0x00, // ---..... - - // ASCII: 45, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 46, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 47, char width: 3 - 0x00, // ---..... - 0x20, // --O..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x00, // ---..... - - // ASCII: 48, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x88, // O---O... - 0x88, // O---O... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 49, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 50, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x10, // ---O-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x20, // --O--... - 0x40, // -O---... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 51, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x10, // ---O-... - 0x10, // ---O-... - 0x20, // --O--... - 0x10, // ---O-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 52, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x30, // --OO-... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 53, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x30, // --OO-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 54, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x48, // -O--O... - 0x48, // -O--O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 55, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x10, // ---O-... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 56, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 57, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 58, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 59, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x80, // O--..... - 0x00, // ---..... - - // ASCII: 60, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x0c, // ----OO-. - 0x30, // --OO---. - 0x60, // -OO----. - 0x18, // ---OO--. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 61, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 62, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x60, // -OO----. - 0x18, // ---OO--. - 0x0c, // ----OO-. - 0x30, // --OO---. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 63, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x10, // ---O.... - 0x10, // ---O.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x00, // ----.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 64, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x3c, // --OOOO-- - 0x42, // -O----O- - 0xbe, // O-OOOOO- - 0xa5, // O-O--O-O - 0xa6, // O-O--OO- - 0x5c, // -O-OOO-- - 0x20, // --O----- - 0x1c, // ---OOO-- - - // ASCII: 65, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x20, // --O---.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0xf8, // OOOOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 66, char width: 6 - 0x00, // ------.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x70, // -OOO--.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 67, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x40, // -O----.. - 0x38, // --OOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 68, char width: 6 - 0x00, // ------.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x44, // -O---O.. - 0x44, // -O---O.. - 0x44, // -O---O.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 69, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 70, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 71, char width: 6 - 0x00, // ------.. - 0x38, // --OOO-.. - 0x40, // -O----.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x8c, // O---OO.. - 0x44, // -O---O.. - 0x38, // --OOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 72, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 73, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 74, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - - // ASCII: 75, char width: 5 - 0x00, // -----... - 0x48, // -O--O... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x40, // -O---... - 0x60, // -OO--... - 0x50, // -O-O-... - 0x48, // -O--O... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 76, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 77, char width: 7 - 0x00, // -------. - 0x44, // -O---O-. - 0x44, // -O---O-. - 0x6c, // -OO-OO-. - 0x6c, // -OO-OO-. - 0x54, // -O-O-O-. - 0x44, // -O---O-. - 0x44, // -O---O-. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 78, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x68, // -OO-O-.. - 0x68, // -OO-O-.. - 0x58, // -O-OO-.. - 0x58, // -O-OO-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 79, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 80, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x50, // -O-O-... - 0x48, // -O--O... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x40, // -O---... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 81, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x08, // ----O-.. - 0x00, // ------.. - - // ASCII: 82, char width: 6 - 0x00, // ------.. - 0x70, // -OOO--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x70, // -OOO--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 83, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x80, // O----... - 0x80, // O----... - 0x70, // -OOO-... - 0x08, // ----O... - 0x08, // ----O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 84, char width: 5 - 0x00, // -----... - 0xf8, // OOOOO... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 85, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x30, // --OO--.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 86, char width: 6 - 0x00, // ------.. - 0x88, // O---O-.. - 0x88, // O---O-.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x20, // --O---.. - 0x20, // --O---.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 87, char width: 8 - 0x00, // -------- - 0x81, // O------O - 0x99, // O--OO--O - 0x5a, // -O-OO-O- - 0x5a, // -O-OO-O- - 0x66, // -OO-_OO- - 0x66, // -OO--OO- - 0x24, // --O--O-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 88, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x30, // --OO--.. - 0x30, // --OO--.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 89, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 90, char width: 6 - 0x00, // ------.. - 0xf8, // OOOOO-.. - 0x08, // ----O-.. - 0x10, // ---O--.. - 0x20, // --O---.. - 0x20, // --O---.. - 0x40, // -O----.. - 0xf8, // OOOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 91, char width: 3 - 0x00, // ---..... - 0xC0, // OO-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0xC0, // OO-..... - - // ASCII: 92, char width: 3 - 0x00, // ---..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x20, // --O..... - 0x00, // ---..... - - // ASCII: 93, char width: 3 - 0x00, // ---..... - 0xC0, // OO-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xC0, // OO-..... - 0x00, // ---..... - - // ASCII: 94, char width: 7 - 0x00, // -------. - 0x10, // ---O---. - 0x28, // --O-O--. - 0x44, // -O---O-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 95, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xf0, // OOOO.... - - // ASCII: 96, char width: 4 - 0x80, // O---.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 97, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 98, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0xb0, // O-OO-... - 0x48, // -O--O... - 0x88, // O---O... - 0x48, // -O--O... - 0xb0, // O-OO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 99, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 100, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 101, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 102, char width: 3 - 0x00, // ---..... - 0x60, // -OO..... - 0x40, // -O-..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 103, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x60, // -OO--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - - // ASCII: 104, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0xb0, // O-OO-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 105, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 106, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - - // ASCII: 107, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0x90, // O--O-... - 0xa0, // O-O--... - 0x40, // -O---... - 0xa0, // O-O--... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 108, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 109, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x00, // -------- - 0x36, // --OO-OO- - 0x5a, // -O-OO-O- - 0x92, // O--O--O- - 0x92, // O--O--O- - 0x92, // O--O--O- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 110, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x30, // --OO-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 111, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 112, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x30, // --OO-... - 0x48, // -O--O... - 0x88, // O---O... - 0x48, // -O--O... - 0xb0, // O-OO-... - 0x80, // O----... - 0x00, // -----... - - // ASCII: 113, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x60, // -OO--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x00, // -----... - - // ASCII: 114, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x20, // --O..... - 0x40, // -O-..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 115, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x10, // ---O.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 116, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x80, // O--..... - 0xe0, // OOO..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x60, // -OO..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 117, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 118, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 119, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x94, // O--O-O-. - 0x94, // O--O-O-. - 0x74, // -OOO-O-. - 0x68, // -OO-O--. - 0x48, // -O--O--. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 120, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 121, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... - - // ASCII: 122, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xf0, // OOOO.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 123, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x10, // ---O-... - - // ASCII: 124, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - - // ASCII: 125, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x10, // ---O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 126, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 160, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 161, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 162, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x60, // -OO--... - 0xa0, // O-O--... - 0x60, // -OO--... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 163, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x40, // -O---... - 0x40, // -O---... - 0x40, // -O---... - 0x60, // -OO--... - 0x40, // -O---... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 164, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x68, // -OO-O... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 165, char width: 5 - 0x00, // -----... - 0x88, // O---O... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x78, // -OOOO... - 0x78, // -OOOO... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 166, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - - // ASCII: 167, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x40, // -O--.... - 0xa0, // O-O-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x00, // ----.... - - // ASCII: 168, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 169, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x3c, // --OOOO-- - 0x7a, // -OOOO-O- - 0x62, // -OO---O- - 0x62, // -OO---O- - 0x5a, // -O-OO-O- - 0x3c, // --OOOO-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 170, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 171, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x50, // -O-O-... - 0xa0, // O-O--... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 172, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x04, // -----O-. - 0x04, // -----O-. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 173, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 174, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x3c, // --OOOO-- - 0x7a, // -OOOO-O- - 0x7a, // -OOOO-O- - 0x6a, // -OO-O-O- - 0x46, // -O---OO- - 0x3c, // --OOOO-- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 175, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 176, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 177, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x10, // ---O---. - 0x10, // ---O---. - 0x7c, // -OOOOO-. - 0x10, // ---O---. - 0x10, // ---O---. - 0x7c, // -OOOOO-. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 178, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x20, // --O..... - 0x40, // -O-..... - 0x80, // O--..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 179, char width: 3 - 0x00, // ---..... - 0xc0, // OO-..... - 0x20, // --O..... - 0x20, // --O..... - 0xa0, // O-O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 180, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 181, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x78, // -OOOO... - 0x80, // O----... - 0x00, // -----... - - // ASCII: 182, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x70, // -OOO-... - 0x70, // -OOO-... - 0x70, // -OOO-... - 0x30, // --OO-... - 0x30, // --OO-... - 0x30, // --OO-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 183, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 184, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - - // ASCII: 185, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 186, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 187, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x30, // --OO-... - 0x60, // -OO--... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 188, char width: 8 - 0x00, // -------- - 0x44, // -O---O-- - 0x48, // -O--O--- - 0x48, // -O--O--- - 0x50, // -O-O---- - 0x12, // ---O--O- - 0x26, // --O--OO- - 0x42, // -O----O- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 189, char width: 8 - 0x00, // -------- - 0x44, // -O---O-- - 0x48, // -O--O--- - 0x48, // -O--O--- - 0x52, // -O-O--O- - 0x11, // ---O---O - 0x22, // --O---O- - 0x44, // -O---O-- - 0x02, // ------O- - 0x00, // -------- - - // ASCII: 190, char width: 8 - 0x00, // -------- - 0xc4, // OO---O-- - 0x28, // --O-O--- - 0x28, // --O-O--- - 0xb0, // O-OO---- - 0x52, // -O-O--O- - 0x26, // --O--OO- - 0x42, // -O----O- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 191, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 192, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 193, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 194, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 195, char width: 6 - 0x10, // ---O--.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 196, char width: 6 - 0x00, // ------.. - 0x20, // --O---.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 197, char width: 6 - 0x70, // -OOO--.. - 0x30, // --OO--.. - 0x30, // --OO--.. - 0x50, // -O-O--.. - 0x50, // -O-O--.. - 0x48, // -O--O-.. - 0xb8, // O-OOO-.. - 0x88, // O---O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 198, char width: 8 - 0x00, // -------- - 0x3e, // --OOOOO- - 0x30, // --OO---- - 0x30, // --OO---- - 0x4e, // -O--OOO- - 0x50, // -O-O---- - 0xb0, // O-OO---- - 0x8e, // O---OOO- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 199, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x80, // O-----.. - 0x40, // -O----.. - 0x38, // --OOO-.. - 0x10, // ---O--.. - 0x30, // --OO--.. - - // ASCII: 200, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 201, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 202, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 203, char width: 5 - 0x00, // -----... - 0x78, // -OOOO... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x40, // -O---... - 0x40, // -O---... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 204, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 205, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 206, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 207, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 208, char width: 6 - 0x00, // ------.. - 0x60, // -OO---.. - 0x58, // -O-OO-.. - 0x44, // -O---O.. - 0xe4, // OOO--O.. - 0x44, // -O---O.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 209, char width: 6 - 0x10, // ---O--.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x68, // -OO-O-.. - 0x68, // -OO-O-.. - 0x58, // -O-OO-.. - 0x58, // -O-OO-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 210, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 211, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 212, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 213, char width: 6 - 0x10, // ---O--.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 214, char width: 6 - 0x00, // ------.. - 0x30, // --OO--.. - 0x48, // -O--O-.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x84, // O----O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 215, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x48, // -O--O--. - 0x30, // --OO---. - 0x10, // ---O---. - 0x28, // --O-O--. - 0x40, // -O-----. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 216, char width: 6 - 0x00, // ------.. - 0x34, // --OO-O.. - 0x48, // -O--O-.. - 0x94, // O--O-O.. - 0x94, // O--O-O.. - 0xa4, // O-O--O.. - 0x44, // -O---O.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 217, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 218, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 219, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 220, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 221, char width: 5 - 0x00, // -----... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 222, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x40, // -O---... - 0x70, // -OOO-... - 0x48, // -O--O... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 223, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x50, // -O-O-... - 0xa0, // O-O--... - 0xa0, // O-O--... - 0x90, // O--O-... - 0x88, // O---O... - 0xb0, // O-OO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 224, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 225, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 226, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 227, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x20, // --O--... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 228, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 229, char width: 5 - 0x60, // -OO--... - 0xa0, // O-O--... - 0x40, // -O---... - 0x70, // -OOO-... - 0x10, // ---O-... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 230, char width: 8 - 0x00, // -------- - 0x00, // -------- - 0x00, // -------- - 0x7e, // -OOOOOO- - 0x12, // ---O--O- - 0x7f, // -OOOOOOO - 0x90, // O--O---- - 0x6e, // -OO-OOO- - 0x00, // -------- - 0x00, // -------- - - // ASCII: 231, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x10, // ---O.... - 0x30, // --OO.... - - // ASCII: 232, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 233, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 234, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 235, char width: 5 - 0x00, // -----... - 0x30, // --OO-... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xf8, // OOOOO... - 0x80, // O----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 236, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 237, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 238, char width: 2 - 0x00, // --...... - 0xc0, // OO...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 239, char width: 2 - 0x00, // --...... - 0xc0, // OO...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 240, char width: 5 - 0x00, // -----... - 0x10, // ---O-... - 0x60, // -OO--... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 241, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x10, // ---O-... - 0x30, // --OO-... - 0x50, // -O-O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 242, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 243, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 244, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 245, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x20, // --O--... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 246, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0x88, // O---O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 247, char width: 7 - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - 0x10, // ---O---. - 0x00, // -------. - 0x7c, // -OOOOO-. - 0x10, // ---O---. - 0x00, // -------. - 0x00, // -------. - 0x00, // -------. - - // ASCII: 248, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x70, // -OOO-... - 0x90, // O--O-... - 0xa8, // O-O-O... - 0x50, // -O-O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 249, char width: 5 - 0x00, // -----... - 0x40, // -O---... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 250, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 251, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 252, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 253, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x80, // O----... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... - - // ASCII: 254, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x80, // O----... - 0xb0, // O-OO-... - 0x48, // -O--O... - 0x88, // O---O... - 0x48, // -O--O... - 0xb0, // O-OO-... - 0x80, // O----... - 0x00, // -----... - - // ASCII: 255, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x00, // -----... - 0x80, // O----... - 0x50, // -O-O-... - 0x50, // -O-O-... - 0x60, // -OO--... - 0x20, // --O--... - 0x20, // --O--... - 0x40, // -O---... -}; - -static const uint8_t dejavu_10_widths[224] = -{ - 3, 3, 4, 7, 5, 8, 6, 2, - 3, 3, 4, 7, 3, 3, 3, 3, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 3, 3, 7, 7, 7, 4, - 8, 6, 6, 6, 6, 5, 5, 6, - 6, 2, 2, 5, 5, 7, 6, 6, - 5, 6, 6, 5, 5, 6, 6, 8, - 6, 5, 6, 3, 3, 3, 7, 4, - 4, 5, 5, 4, 5, 5, 3, 5, - 5, 2, 2, 5, 2, 8, 5, 5, - 5, 5, 3, 4, 3, 5, 5, 7, - 5, 5, 4, 5, 3, 5, 7, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 5, 5, 5, 5, 3, 4, - 4, 8, 4, 5, 7, 3, 8, 4, - 4, 7, 3, 3, 4, 5, 5, 3, - 4, 3, 4, 5, 8, 8, 8, 4, - 6, 6, 6, 6, 6, 6, 8, 6, - 5, 5, 5, 5, 2, 2, 2, 2, - 6, 6, 6, 6, 6, 6, 6, 7, - 6, 6, 6, 6, 6, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 8, 4, - 5, 5, 5, 5, 2, 2, 2, 2, - 5, 5, 5, 5, 5, 5, 5, 7, - 5, 5, 5, 5, 5, 5, 5, 5, -}; - -static const font_t dejavu_10_dsc = -{ - 224, // Letter count - 32, // First ascii code - 1, // Letters width (bytes) - 10, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_10_widths, - dejavu_10_bitmaps -}; - -const font_t * dejavu_10_get_dsc(void) -{ - return &dejavu_10_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_10.h b/lv_misc/fonts/dejavu_10.h deleted file mode 100644 index 4135ed0b2..000000000 --- a/lv_misc/fonts/dejavu_10.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_10_H -#define DEJAVU_10_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_10 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_10_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_14.c b/lv_misc/fonts/dejavu_14.c deleted file mode 100644 index 30dd5b5bd..000000000 --- a/lv_misc/fonts/dejavu_14.c +++ /dev/null @@ -1,3679 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_14 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_14_bitmaps[6272] = -{ - // ASCII: 32, char width: 2 //white space - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - - // ASCII: 33, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 34, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 35, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x14, 0x00, // ---O-O---....... - 0x14, 0x00, // ---O-O---....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x24, 0x00, // --O--O---....... - 0x24, 0x00, // --O--O---....... - 0xfe, 0x00, // OOOOOOO--....... - 0x48, 0x00, // -O--O----....... - 0x48, 0x00, // -O--O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 36, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x78, 0x00, // -OOOO--......... - 0x80, 0x00, // O------......... - 0xc0, 0x00, // OO-----......... - 0x70, 0x00, // -OOO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0xf8, 0x00, // OOOOO--......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 37, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x60, 0x80, // -OO-----O-...... - 0x91, 0x00, // O--O---O--...... - 0x92, 0x00, // O--O--O---...... - 0x94, 0x00, // O--O-O----...... - 0x69, 0x80, // -OO-O--OO-...... - 0x0a, 0x40, // ----O-O--O...... - 0x12, 0x40, // ---O--O--O...... - 0x20, 0x40, // --O---O--O...... - 0x41, 0x80, // -O-----OO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 38, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x40, 0x00, // -O------........ - 0x40, 0x00, // -O------........ - 0x60, 0x00, // -OO-----........ - 0x72, 0x00, // -OOO--O-........ - 0x92, 0x00, // O--O--O-........ - 0x8e, 0x00, // O---OOO-........ - 0xc4, 0x00, // OO---O--........ - 0x7a, 0x00, // -OOOO-O-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 39, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 40, char width: 4 - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 41, char width: 4 - 0x00, 0x00, // ----............ - 0x80, 0x00, // O---............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x80, 0x00, // O---............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 42, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0xf8, 0x00, // OOOOO........... - 0x20, 0x00, // --O--........... - 0x50, 0x00, // -O-O-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 43, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 44, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 45, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 46, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 47, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 48, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x48, 0x00, // -O--O--......... - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 49, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x50, 0x00, // -O-O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 50, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x70, 0x00, // -OOO---......... - 0x88, 0x00, // O---O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x40, 0x00, // -O-----......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 51, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x70, 0x00, // -OOO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x30, 0x00, // --OO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0xf0, 0x00, // OOOO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 52, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x88, 0x00, // O---O--......... - 0xfc, 0x00, // OOOOOO-......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - - - // ASCII: 53, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xf8, 0x00, // OOOOO--......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf0, 0x00, // OOOO---......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0xf0, 0x00, // OOOO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 54, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x40, 0x00, // -O-----......... - 0x80, 0x00, // O------......... - 0xf0, 0x00, // OOOO---......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x44, 0x00, // -O---O-......... - 0x38, 0x00, // --OOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 55, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xf8, 0x00, // OOOOOO-......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x20, 0x00, // --O----......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 56, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x78, 0x00, // -OOOO--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 57, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O---.O-......... - 0x84, 0x00, // O----O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x04, 0x00, // -----O-......... - 0x08, 0x00, // ----O--......... - 0x70, 0x00, // -OOO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 58, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 59, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 60, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x07, 0x00, // -----OOO-....... - 0x18, 0x00, // ---OO----....... - 0x60, 0x00, // -OO------....... - 0x18, 0x00, // ---OO----....... - 0x07, 0x00, // -----OOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 61, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 62, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x70, 0x00, // -OOO-----....... - 0x0c, 0x00, // ----OO---....... - 0x03, 0x00, // ------OO-....... - 0x0c, 0x00, // ----OO---....... - 0x70, 0x00, // -OOO-----....... - 0x40, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 63, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x90, 0x00, // O--O-........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 64, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x1e, 0x00, // ---OOOO----..... - 0x21, 0x00, // --O----O---..... - 0x40, 0x80, // -O------O--..... - 0x99, 0x00, // O---OO---O-..... - 0x92, 0x40, // O--O--O--O-..... - 0x92, 0x40, // O--O--O--O-..... - 0x92, 0x80, // O--O--O-O--..... - 0x8f, 0x00, // O---OOOO---..... - 0x40, 0x00, // -O---------..... - 0x21, 0x00, // --O----O---..... - 0x1e, 0x00, // ---OOOO----..... - 0x00, 0x00, // -----------..... - - // ASCII: 65, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x82, 0x00, // O-----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 66, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xf0, 0x00, // OOOO---......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xf8, 0x00, // OOOOO--......... - 0x84, 0x00, // O----O-........ - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 67, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x84, 0x00, // -O---O-......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x40, 0x00, // -O-----......... - 0x3c, 0x00, // --OOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 68, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0xf8, 0x00, // OOOOO---........ - 0x84, 0x00, // O----O--........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x84, 0x00, // O----O-........ - 0xf8, 0x00, // OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 69, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 70, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x78, 0x00, // -OOOO-.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 71, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x3c, 0x00, // --OOOO--........ - 0x42, 0x00, // -O----O-........ - 0x80, 0x00, // O-------........ - 0x80, 0x00, // O-------........ - 0x86, 0x00, // O----OO-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x42, 0x00, // -O----O-........ - 0x3e, 0x00, // --OOOOO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 72, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x7e, 0x00, // -OOOOOO-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 73, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 74, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - - // ASCII: 75, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x42, 0x00, // -O----O......... - 0x44, 0x00, // -O---O-......... - 0x48, 0x00, // -O--O--......... - 0x70, 0x00, // -OOO---......... - 0x60, 0x00, // -OO----......... - 0x50, 0x00, // -O-O---......... - 0x48, 0x00, // -O--O--......... - 0x44, 0x00, // -O---O-......... - 0x42, 0x00, // -O----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 76, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x7c, 0x00, // -OOOOO.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 77, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x55, 0x00, // -O-O-O-O-....... - 0x55, 0x00, // -O-O-O-O-....... - 0x5d, 0x00, // -O-OOO-O-....... - 0x49, 0x00, // -O--O--O-....... - 0x41, 0x00, // -O-----O-....... - 0x41, 0x00, // -O-----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 78, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x62, 0x00, // -OO---O-........ - 0x52, 0x00, // -O-O--O-........ - 0x52, 0x00, // -O-O--O-........ - 0x5a, 0x00, // -O-OO-O-........ - 0x4a, 0x00, // -O--O-O-........ - 0x4A, 0x00, // -O--O-O-........ - 0x46, 0x00, // -O---OO-........ - 0x46, 0x00, // -O---OO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 79, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x3c, 0x00, // --OOOO--........ - 0x66, 0x00, // -OO--OO-........ - 0xc3, 0x00, // OO----OO........ - 0x81, 0x00, // O------O........ - 0x81, 0x00, // O------O........ - 0x81, 0x00, // O------O........ - 0xc3, 0x00, // OO----OO........ - 0x66, 0x00, // -OO--OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 80, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0x4c, 0x00, // -O--OO.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x7c, 0x00, // -OOOOO.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 81, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x44, 0x00, // -O---O--........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x44, 0x00, // -O----O-........ - 0x3c, 0x00, // --OOOO--........ - 0x0c, 0x00, // ----OO--........ - 0x02, 0x00, // ------O-........ - 0x00, 0x00, // --------........ - - // ASCII: 82, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0x4c, 0x00, // -O--OO-......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x78, 0x00, // -OOOO--......... - 0x48, 0x00, // -O--O--......... - 0x44, 0x00, // -O---O-......... - 0x42, 0x00, // -O----O......... - 0x42, 0x00, // -O----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 83, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0xc0, 0x00, // OO-----......... - 0x80, 0x00, // O------......... - 0xc0, 0x00, // OO-----......... - 0x78, 0x00, // -OOOO--......... - 0x0c, 0x00, // ----OO-......... - 0x04, 0x00, // -----O-......... - 0x0c, 0x00, // ----OO-......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 84, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xfc, 0x00, // OOOOOO.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 85, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x42, 0x00, // -O----O-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 86, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x82, 0x00, // O-----O......... - 0x82, 0x00, // O-----O......... - 0x44, 0x00, // -O---O......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x38, 0x00, // --OOO--......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 87, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x44, 0x40, // -O---O---O...... - 0x2a, 0x80, // --O-O-O-O-...... - 0x20, 0x80, // --O-----O-...... - 0x20, 0x80, // --O-----O-...... - 0x20, 0x80, // --O-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 88, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x84, 0x00, // O----O-......... - 0x48, 0x00, // -O--O-......... - 0x48, 0x00, // -O--O--......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x84, 0x00, // O----O-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 89, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x84, 0x00, // O----O.......... - 0x84, 0x00, // O----O.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 90, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7e, 0x00, // -OOOOOO......... - 0x02, 0x00, // ------O......... - 0x04, 0x00, // -----O-......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x30, 0x00, // --O----......... - 0x40, 0x00, // -O-----......... - 0x80, 0x00, // O------......... - 0xfe, 0x00, // OOOOOOO......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 91, char width: 4 - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0x80, 0x00, // O---............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 92, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x20, 0x00, // --O............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 93, char width: 4 - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 94, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x14, 0x00, // ---O-O---....... - 0x22, 0x00, // --O---O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 95, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x7c, 0x00, // -OOOOO.......... - 0x00, 0x00, // -----........... - - // ASCII: 96, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x40, 0x00, // -O---........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 97, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xf0, 0x00, // OOOO--.......... - 0x08, 0x00, // ----O-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 98, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf8, 0x00, // OOOOO--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 99, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x38, 0x00, // --OOO-.......... - 0x40, 0x00, // -O----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 100, char width: 7 - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x78, 0x00, // -OOOO--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 101, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x38, 0x00, // --OOO-.......... - 0x44, 0x00, // -O---O.......... - 0x84, 0x00, // O----O.......... - 0xfC, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 102, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x30, 0x00, // --OO............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0xf0, 0x00, // OOOO............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 103, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x48, 0x00, // -O--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x78, 0x00, // -OOOO--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x70, 0x00, // -OOO---......... - 0x00, 0x00, // -------......... - - // ASCII: 104, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf0, 0x00, // OOOO---......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 105, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 106, char width: 3 - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O--............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - - // ASCII: 107, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x90, 0x00, // O--O--.......... - 0xa0, 0x00, // O-O---.......... - 0xe0, 0x00, // OOO---.......... - 0xa0, 0x00, // O-O---.......... - 0x89, 0x00, // O--O--.......... - 0x88, 0x00, // O---O-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 108, char width: 2 - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x80, 0x00, // O-.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - 0x00, 0x00, // --.............. - - // ASCII: 109, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xb3, 0x00, // O-OO--OO--...... - 0xcd, 0x80, // OO--OO--O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x88, 0x80, // O---O---O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 110, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xb0, 0x00, // O-OO---......... - 0xc8, 0x00, // OO--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 111, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x70, 0x00, // -OOO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 112, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0xb0, 0x00, // O-OO---......... - 0xc8, 0x00, // OO--O--......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x88, 0x00, // O---O--......... - 0xf0, 0x00, // OOOO---......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - - // ASCII: 113, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO--......... - 0x48, 0x00, // -O--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x78, 0x00, // -OOOO--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - - // ASCII: 114, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xb0, 0x00, // O-OO-........... - 0xc0, 0x00, // OO---........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 115, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x80, 0x00, // O----........... - 0x80, 0x00, // O----........... - 0x60, 0x00, // -OO--........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0xe0, 0x00, // OOO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 116, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0xf0, 0x00, // OOOO............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 117, char width: 7 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-........... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 118, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x48, 0x00, // -O--O--......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 119, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x49, 0x00, // -O--O--O-....... - 0x49, 0x00, // -O--O--O-....... - 0x49, 0x00, // -O--O--O-....... - 0x55, 0x00, // -O-O-O-O-....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 120, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x88, 0x00, // O---O-.......... - 0x50, 0x00, // -O-O--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x50, 0x00, // -O-O--.......... - 0x88, 0x00, // O---O-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 121, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x84, 0x00, // O----O.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x28, 0x00, // --O-O-.......... - 0x30, 0x00, // --OO--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - - // ASCII: 122, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xf8, 0x00, // OOOOO........... - 0x08, 0x00, // ----O........... - 0x08, 0x00, // ----O........... - 0x10, 0x00, // ---O-........... - 0x20, 0x00, // --O--........... - 0x40, 0x00, // -O---........... - 0xf8, 0x00, // OOOOO........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 123, char width: 7 - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x30, 0x00, // --OO---......... - 0x30, 0x00, // --OO---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 124, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - - // ASCII: 125, char width: 7 - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x18, 0x00, // ---OO--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 126, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x31, 0x00, // --OO---O-....... - 0x4e, 0x00, // -O--OOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 160, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 161, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 162, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x78, 0x00, // -OOOO--......... - 0x50, 0x00, // -O-O---......... - 0xd0, 0x00, // OO-O---......... - 0x90, 0x00, // O--O---......... - 0xd0, 0x00, // OO-O---......... - 0x50, 0x00, // -O-O---......... - 0x38, 0x00, // --OOO--......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 163, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x20, 0x00, // --O----......... - 0x60, 0x00, // -OO----......... - 0x40, 0x00, // -O-----......... - 0x70, 0x00, // -OOO---......... - 0x60, 0x00, // -OO----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0xf8, 0x00, // OOOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 164, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x68, 0x00, // -OO-O--......... - 0x44, 0x00, // -O---O-......... - 0x44, 0x00, // -O---O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x44, 0x00, // -O---O-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 165, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x04, 0x00, // -----O-......... - 0x44, 0x00, // -O---O-......... - 0x68, 0x00, // -OO-O--......... - 0x28, 0x00, // --O-O--......... - 0x38, 0x00, // --OOO--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 166, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 167, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0x70, 0x00, // -OOO-........... - 0x98, 0x00, // O--OO........... - 0x48, 0x00, // -O--O........... - 0x78, 0x00, // -OOOO........... - 0x10, 0x00, // ---O-........... - 0x18, 0x00, // ---OO........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 168, char width: 5 - 0x00, 0x00, // -----........... - 0x50, 0x00, // -O-O-........... - 0x50, 0x00, // -O-O-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 169, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x0e, 0x00, // ----OOO----..... - 0x11, 0x00, // ---O---O---..... - 0x2e, 0x80, // --O-OOO-O--..... - 0x10, 0x00, // ---O-------..... - 0x50, 0x00, // -O-O-------..... - 0x10, 0x00, // ---O-------..... - 0x0a, 0x80, // ----O-O-O--..... - 0x20, 0x00, // --O--------..... - 0x1e, 0x00, // ---OOOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 170, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x10, 0x00, // ---O-........... - 0xf0, 0x00, // OOOO-........... - 0x90, 0x00, // O--O-........... - 0xf0, 0x00, // OOOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 171, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x28, 0x00, // --O-O-.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x68, 0x00, // -OO-O-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 172, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 173, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xe0, 0x00, // OOO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 174, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x0e, 0x00, // ----OOO----..... - 0x11, 0x00, // ---O---O---..... - 0x2e, 0x80, // --O-OOO-O--..... - 0x0a, 0x00, // ----O-O----..... - 0x4e, 0x00, // -O--OOO----..... - 0x0a, 0x00, // ----O-O----..... - 0x0a, 0x80, // ----O-O-O--..... - 0x21, 0x00, // --O----O---..... - 0x1e, 0x00, // ---OOOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 175, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 176, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 177, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 178, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x40, 0x00, // -O--............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 179, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x10, 0x00, // ---O............ - 0x70, 0x00, // -OOO............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 180, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 181, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0xfc, 0x00, // OOOOOO-......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x00, 0x00, // -------......... - - // ASCII: 182, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x38, 0x00, // --OOO--......... - 0x68, 0x00, // -OO-O--......... - 0xe8, 0x00, // OOO-O--......... - 0xe8, 0x00, // OOO-O--......... - 0x68, 0x00, // -OO-O--......... - 0x28, 0x00, // --O-O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 183, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 184, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - - // ASCII: 185, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xc0, 0x00, // OO--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 186, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x70, 0x00, // -OOO-........... - 0x50, 0x00, // -O-O-........... - 0x88, 0x00, // O---O........... - 0x50, 0x00, // -O-O-........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 187, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x28, 0x00, // --O-O-.......... - 0x28, 0x00, // --O-O-.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 188, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xc1, 0x00, // OO-----O--...... - 0x42, 0x00, // -O----O---...... - 0x40, 0x00, // -O--------...... - 0x44, 0x00, // -O---O----...... - 0x68, 0x80, // -OO-O---O-...... - 0x09, 0x80, // ----O--OO-...... - 0x12, 0x80, // ---O--O-O-...... - 0x13, 0x80, // ---O--OOO-...... - 0x20, 0x80, // --O-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 189, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xc1, 0x00, // OO-----O--...... - 0x42, 0x00, // -O----O---...... - 0x40, 0x00, // -O--------...... - 0x44, 0x00, // -O---O----...... - 0x6b, 0x80, // -OO-O-OOO-...... - 0x08, 0x80, // ----O---O-...... - 0x10, 0x80, // ---O----O-...... - 0x11, 0x00, // ---O---O--...... - 0x23, 0x80, // --O---OOO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 190, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x61, 0x00, // -OO----O--...... - 0x11, 0x00, // ---O---O--...... - 0x22, 0x00, // --O---O---...... - 0x10, 0x00, // ---O------...... - 0x74, 0x80, // -OOO-O--O-...... - 0x08, 0x80, // ----O---O-...... - 0x08, 0x80, // ----O---O-...... - 0x13, 0xc0, // ---O--OOOO...... - 0x10, 0x80, // ---O----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 191, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x40, 0x00, // -O---........... - 0xc0, 0x00, // OO---........... - 0x80, 0x00, // O----........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 192, char width: 7 - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 193, char width: 7 - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 194, char width: 7 - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 195, char width: 7 - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 196, char width: 7 - 0x28, 0x00, // --O-O--......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x18, 0x00, // ---OO--......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x24, 0x00, // --O--O-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x42, 0x00, // -O----O......... - 0x82, 0x00, // O-----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 197, char width: 7 - 0x10, 0x00, // ---O---......... - 0x28, 0x00, // --O-O--......... - 0x28, 0x00, // --O-O--......... - 0x18, 0x00, // ---OO--......... - 0x38, 0x00, // --OOO--......... - 0x28, 0x00, // --O-O--......... - 0x2c, 0x00, // --O-OO-......... - 0x64, 0x00, // -OO--O-......... - 0x7c, 0x00, // -OOOOO-......... - 0x46, 0x00, // -O---OO......... - 0xc2, 0x00, // OO----O......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 198, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x1f, 0xc0, // ---OOOOOOO...... - 0x14, 0x00, // ---O-O----...... - 0x34, 0x00, // --OO-O----...... - 0x24, 0x00, // --O--O----...... - 0x27, 0x80, // --O--OOOO-...... - 0x64, 0x00, // -OO--O----...... - 0x7c, 0x00, // -OOOOO----...... - 0x44, 0x00, // -O---O----...... - 0x87, 0xc0, // O----OOOOO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 199, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x3c, 0x00, // --OOOO-......... - 0x64, 0x00, // -OO--O-......... - 0xc0, 0x00, // OO-----......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xc0, 0x00, // OO-----......... - 0x40, 0x00, // -O-----......... - 0x3c, 0x00, // --OOOO-......... - 0x08, 0x00, // ----O--......... - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - - // ASCII: 200, char width: 7 - 0x20, 0x00, // --O----......... - 0x10, 0x00, // ---O---......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 201, char width: 7 - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 202, char width: 7 - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 203, char width: 7 - 0x28, 0x00, // --O-O--......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 204, char width: 3 - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 205, char width: 3 - 0x20, 0x00, // --O............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 206, char width: 3 - 0x60, 0x00, // -OO............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 207, char width: 3 - 0xa0, 0x00, // O-O............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 208, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x78, 0x00, // -OOOO---........ - 0x46, 0x00, // -O---OO-........ - 0x42, 0x00, // -O----O-........ - 0x43, 0x00, // -O----OO........ - 0xf1, 0x00, // OOOO---O........ - 0x43, 0x00, // -O----OO........ - 0x42, 0x00, // -O----O-........ - 0x46, 0x00, // -O---OO-........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 209, char width: 8 - 0x30, 0x00, // --OO----........ - 0x00, 0x00, // --------........ - 0x42, 0x00, // -O----O-........ - 0x62, 0x00, // -OO---O-........ - 0x72, 0x00, // -OOO--O-........ - 0x52, 0x00, // -O-O--O-........ - 0x5a, 0x00, // -O-OO-O-........ - 0x4a, 0x00, // -O--O-O-........ - 0x4e, 0x00, // -O--OOO-........ - 0x46, 0x00, // -O---OO-........ - 0x46, 0x00, // -O---OO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 210, char width: 8 - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 211, char width: 8 - 0x08, 0x00, // ----O---........ - 0x10, 0x00, // ---O----........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 212, char width: 8 - 0x18, 0x00, // ---OO---........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 213, char width: 8 - 0x30, 0x00, // --OO----........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 214, char width: 8 - 0x28, 0x00, // --O-O---........ - 0x00, 0x00, // --------........ - 0x38, 0x00, // --OOO---........ - 0x66, 0x00, // -OO--OO-........ - 0xc2, 0x00, // OO----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0x82, 0x00, // O-----O-........ - 0xc2, 0x00, // OO----O-........ - 0x46, 0x00, // -O---OO-........ - 0x3c, 0x00, // --OOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 215, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x22, 0x00, // --O---O--....... - 0x14, 0x00, // ---O-O---....... - 0x08, 0x00, // ----O----....... - 0x1c, 0x00, // ---OOO---....... - 0x36, 0x00, // --OO-OO--....... - 0x22, 0x00, // --O---O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 216, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x7e, 0x00, // -OOOOOO-........ - 0x46, 0x00, // -O---OO-........ - 0x8e, 0x00, // O---OOO-........ - 0x8a, 0x00, // O---O-O-........ - 0x92, 0x00, // O--O--O-........ - 0xa2, 0x00, // O-O---O-........ - 0xc2, 0x00, // OO----O-........ - 0x64, 0x00, // -OO--O--........ - 0x98, 0x00, // O--OO---........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 217, char width: 8 - 0x20, 0x00, // --O-----........ - 0x10, 0x00, // ---O----........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 218, char width: 8 - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 219, char width: 8 - 0x30, 0x00, // --OO----........ - 0x00, 0x00, // --------........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 220, char width: 8 - 0x28, 0x00, // --O-O---........ - 0x00, 0x00, // --------........ - 0x04, 0x00, // -----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0x84, 0x00, // O----O--........ - 0xc4, 0x00, // OO---O--........ - 0x44, 0x00, // -O---O--........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 221, char width: 6 - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x84, 0x00, // O----O.......... - 0x44, 0x00, // -O---O.......... - 0x48, 0x00, // -O--O-.......... - 0x38, 0x00, // --OOO-.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 222, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x78, 0x00, // -OOOO-.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x44, 0x00, // -O---O.......... - 0x78, 0x00, // -OOOO-.......... - 0x40, 0x00, // -O----.......... - 0x40, 0x00, // -O----.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 223, char width: 7 - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x58, 0x00, // -O-OO--......... - 0xc8, 0x00, // OO--O--......... - 0x90, 0x00, // O--O---......... - 0xb0, 0x00, // O-OO---......... - 0x90, 0x00, // O--O---......... - 0x88, 0x00, // O---O--......... - 0x84, 0x00, // O----O-......... - 0x8c, 0x00, // O---OO-......... - 0x38, 0x00, // --OOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 224, char width: 6 - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 225, char width: 6 - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 226, char width: 6 - 0x00, 0x00, // ------.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 227, char width: 6 - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x08, 0x00, // ----O-.......... - 0x38, 0x00, // --OOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0xd8, 0x00, // OO-OO-.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 228, char width: 6 - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x70, 0x00, // -OOO--.......... - 0x08, 0x00, // ----O-.......... - 0x38, 0x00, // --OOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0xd8, 0x00, // OO-OO-.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 229, char width: 6 - 0x20, 0x00, // --O---.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x20, 0x00, // --O---.......... - 0x70, 0x00, // -OOO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 230, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x73, 0x00, // -OOO--OO--...... - 0x1c, 0x80, // ---OOO--O-...... - 0x08, 0x80, // ----O---O-...... - 0x7f, 0xc0, // -OOOOOOOOO...... - 0x88, 0x00, // O---O-----...... - 0x8c, 0x00, // O---OO----...... - 0x77, 0x80, // -OOO-OOOO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 231, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - - // ASCII: 232, char width: 6 - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x48, 0x00, // -O--O-.......... - 0x88, 0x00, // O---O-.......... - 0xfc, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 233, char width: 6 - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x48, 0x00, // -O--O-.......... - 0x88, 0x00, // O---O-.......... - 0xfc, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 234, char width: 6 - 0x00, 0x00, // ------.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x30, 0x00, // --OO--.......... - 0x48, 0x00, // -O--O-.......... - 0x88, 0x00, // O---O-.......... - 0xfc, 0x00, // OOOOOO.......... - 0x80, 0x00, // O-----.......... - 0xc0, 0x00, // OO----.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 235, char width: 6 - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x8c, 0x00, // O---OO.......... - 0xf8, 0x00, // OOOOO-.......... - 0x80, 0x00, // O-----.......... - 0x40, 0x00, // -O----.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 236, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 237, char width: 3 - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x80, 0x00, // O--............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 238, char width: 3 - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x60, 0x00, // -OO............. - 0x80, 0x00, // O--............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 239, char width: 3 - 0x00, 0x00, // ---............. - 0xa0, 0x00, // O-O............. - 0xa0, 0x00, // O-O............. - 0x00, 0x00, // ---............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x40, 0x00, // -O-............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - 0x00, 0x00, // ---............. - - // ASCII: 240, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 241, char width: 7 - 0x00, 0x00, // -------......... - 0x28, 0x00, // --O-O--......... - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - 0xf8, 0x00, // OOOOO--......... - 0xc8, 0x00, // OO--O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 242, char width: 6 - 0x00, 0x00, // ------.......... - 0x40, 0x00, // -O----.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x58, 0x00, // -O-OO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0xc8, 0x00, // OO--O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 243, char width: 6 - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x58, 0x00, // -O-OO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0xc8, 0x00, // OO--O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 244, char width: 6 - 0x00, 0x00, // ------.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x40, 0x00, // -O----.......... - 0x30, 0x00, // --OO--.......... - 0x58, 0x00, // -O-OO-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0xc8, 0x00, // OO--O-.......... - 0x78, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 245, char width: 6 - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 246, char width: 6 - 0x00, 0x00, // ------.......... - 0x50, 0x00, // -O-O--.......... - 0x50, 0x00, // -O-O--.......... - 0x00, 0x00, // ------.......... - 0x78, 0x00, // -OOOO-.......... - 0xc8, 0x00, // OO--O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x88, 0x00, // O---O-.......... - 0x48, 0x00, // -O--O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 247, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 248, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x7c, 0x00, // -OOOOO.......... - 0x4c, 0x00, // -O--OO.......... - 0x54, 0x00, // -O-O-O.......... - 0x54, 0x00, // -O-O-O.......... - 0x64, 0x00, // -OO--O.......... - 0x68, 0x00, // -OO-O-.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 249, char width: 7 - 0x00, 0x00, // -------......... - 0x40, 0x00, // -O-----......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 250, char width: 7 - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x10, 0x00, // ---O---......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 251, char width: 7 - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x30, 0x00, // --OO---......... - 0x40, 0x00, // -O-----......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0xc8, 0x00, // OO--O--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 252, char width: 7 - 0x00, 0x00, // -------......... - 0x50, 0x00, // -O-O---......... - 0x50, 0x00, // -O-O---......... - 0x00, 0x00, // -------......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x88, 0x00, // O---O--......... - 0x58, 0x00, // -O-OO--......... - 0x20, 0x00, // --O----......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 253, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x04, 0x00, // -----O.......... - 0x44, 0x00, // -O---O.......... - 0x48, 0x00, // -O--O-.......... - 0x48, 0x00, // -O--O-.......... - 0x28, 0x00, // --O-O-.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - - // ASCII: 254, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0xf8, 0x00, // OOOOO--......... - 0xc8, 0x00, // OO--O--......... - 0xc4, 0x00, // OO---O-......... - 0x84, 0x00, // O----O-......... - 0xc4, 0x00, // OO---O-......... - 0xc8, 0x00, // OO--O--......... - 0xb0, 0x00, // O-OO---......... - 0x80, 0x00, // O------......... - 0x80, 0x00, // O------......... - 0x00, 0x00, // -------......... - - // ASCII: 255, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xc4, 0x00, // OO---O.......... - 0x4c, 0x00, // -O--OO.......... - 0x48, 0x00, // -O--O-.......... - 0x28, 0x00, // --O-O-.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x20, 0x00, // --O---.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... -}; - -static const uint8_t dejavu_14_widths[224] = -{ - 2, 4, 5, 9, 7, 10, 8, 3, - 4, 4, 5, 9, 3, 4, 3, 3, - 7, 7, 7, 7, 7, 7, 7, 7, - 7, 7, 3, 3, 9, 9, 9, 5, - 11, 7, 7, 7, 8, 7, 6, 8, - 8, 3, 3, 7, 6, 9, 8, 8, - 6, 8, 7, 7, 6, 8, 7, 10, - 7, 6, 7, 4, 3, 4, 9, 5, - 5, 6, 7, 6, 7, 6, 4, 7, - 7, 3, 3, 6, 2, 10, 7, 6, - 7, 7, 5, 5, 4, 6, 7, 9, - 6, 6, 5, 7, 3, 7, 9, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, - 3, 4, 7, 7, 7, 7, 3, 5, - 5, 11, 5, 6, 9, 4, 11, 5, - 5, 9, 4, 4, 5, 7, 7, 3, - 5, 4, 5, 6, 10, 10, 10, 5, - 7, 7, 7, 7, 7, 7, 10, 7, - 7, 7, 7, 7, 3, 3, 3, 3, - 8, 8, 8, 8, 8, 8, 8, 9, - 8, 8, 8, 8, 8, 6, 6, 7, - 6, 6, 6, 6, 6, 6, 10, 6, - 6, 6, 6, 6, 3, 3, 3, 3, - 6, 7, 6, 6, 6, 6, 6, 9, - 6, 7, 7, 7, 7, 6, 7, 6, -}; - -static const font_t dejavu_14_dsc = -{ - 224, // Letter count - 32, // First ascii code - 2, // Letters width (bytes) - 14, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_14_widths, - dejavu_14_bitmaps -}; - - -const font_t * dejavu_14_get_dsc(void) -{ - return &dejavu_14_dsc; -} - - -#endif diff --git a/lv_misc/fonts/dejavu_14.h b/lv_misc/fonts/dejavu_14.h deleted file mode 100644 index 109af8bab..000000000 --- a/lv_misc/fonts/dejavu_14.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_14_H -#define DEJAVU_14_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_14 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_14_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_20.c b/lv_misc/fonts/dejavu_20.c deleted file mode 100644 index b680ebc0e..000000000 --- a/lv_misc/fonts/dejavu_20.c +++ /dev/null @@ -1,5020 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_20 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_20_bitmaps[8960] = -{ - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 33, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 34, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x28, 0x00, // --O-O--......... - 0x6c, 0x00, // -OO-OO-......... - 0x6c, 0x00, // -OO-OO-......... - 0x6c, 0x00, // -OO-OO-......... - 0x28, 0x00, // --O-O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 35, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x40, // ---------O---... - 0x04, 0x40, // -----O---O---... - 0x04, 0xc0, // -----O--OO---... - 0x04, 0xc0, // -----O--OO---... - 0x3f, 0xf0, // --OOOOOOOOOO-... - 0x0c, 0x80, // ----OO--O----... - 0x09, 0x80, // ----O--OO----... - 0x09, 0x80, // ----O--OO----... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x19, 0x00, // ---OO--O-----... - 0x11, 0x00, // ---O---O-----... - 0x13, 0x00, // ---O--OO-----... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 36, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x1e, 0x00, // ---OOOO--....... - 0x3b, 0x00, // --OOO-OO-....... - 0x68, 0x00, // -OO-O----....... - 0x68, 0x00, // -OO-O----....... - 0x38, 0x00, // --OOO----....... - 0x1e, 0x00, // ---OOOO--....... - 0x0f, 0x00, // ----OOOO-....... - 0x09, 0x00, // ----O--O-....... - 0x09, 0x00, // ----O--O-....... - 0x6b, 0x00, // -OO-O-OO-....... - 0x3e, 0x00, // --OOOOO--....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 37, char width: 14 - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x70, 0x40, // -OOO-----O----.. - 0xc8, 0xc0, // O---O---OO----.. - 0x88, 0x80, // O---O---O-----.. - 0x89, 0x80, // O---O--OO-----.. - 0x89, 0x00, // O---O--O------.. - 0x73, 0x00, // -OOO--OO------.. - 0x02, 0x70, // ------O--OOO--.. - 0x04, 0x88, // -----O--O---O-.. - 0x04, 0x88, // -----O--O---O-.. - 0x08, 0x88, // ----O---O---O-.. - 0x08, 0x88, // ----O---O---O-.. - 0x10, 0x70, // ---O-----OOO--.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - 0x00, 0x00, // --------------.. - - // ASCII: 38, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0c, 0x00, // ----OO------.... - 0x1e, 0x00, // ---OOOO-----.... - 0x20, 0x00, // --O---------.... - 0x20, 0x00, // --O---------.... - 0x30, 0x00, // --OO--------.... - 0x30, 0x00, // --OO--------.... - 0x78, 0x40, // -OOOO----O--.... - 0x4c, 0x40, // -O--OO---O--.... - 0xc6, 0x40, // OO---OO--O--.... - 0xc3, 0xc0, // OO----OOOO--.... - 0x41, 0x80, // -O-----OO---.... - 0x63, 0xc0, // -OO---OOOO--.... - 0x3e, 0x60, // --OOOOO--OO-.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 39, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 40, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 41, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x10, 0x00, // ---O--.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 42, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x52, 0x00, // -O-O--O......... - 0x3c, 0x00, // --OOOO-......... - 0x18, 0x00, // ---OO--......... - 0x54, 0x00, // -O-O-O-......... - 0x12, 0x00, // ---O--O......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 43, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 44, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x40, 0x00, // -O---........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 45, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xf0, 0x00, // OOOO-........... - 0xf0, 0x00, // OOOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 46, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 47, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x08, 0x00, // ----O........... - 0x18, 0x00, // ---OO........... - 0x18, 0x00, // ---OO........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x30, 0x00, // --OO-........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x60, 0x00, // -OO--........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0xc0, 0x00, // OO---........... - 0x80, 0x00, // O----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 48, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1C, 0x00, // ---OOO---....... - 0x44, 0x00, // --O---O--....... - 0x82, 0x00, // -O-----O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O-....... - 0x81, 0x00, // O-------O....... - 0x42, 0x00, // -O-----O-....... - 0x24, 0x00, // --O---O--....... - 0x1c, 0x00, // ---OOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 49, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x38, 0x00, // --OOO----....... - 0x68, 0x00, // -OO-O----....... - 0x88, 0x00, // O---O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 50, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x18, 0x00, // ---OO----....... - 0x7e, 0x00, // -OOOOOO--....... - 0x43, 0x00, // -O----OO-....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x03, 0x00, // ------OO-....... - 0x06, 0x00, // -----OO--....... - 0x06, 0x00, // -----OO--....... - 0x0c, 0x00, // ----OO---....... - 0x18, 0x00, // ---OO----....... - 0x30, 0x00, // --OO-----....... - 0x70, 0x00, // -OOO-----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 51, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x66, 0x00, // -OO--OO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x03, 0x00, // ------OO-....... - 0x1e, 0x00, // ---OOOO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x43, 0x00, // -O----OO-....... - 0x3e, 0x00, // --OOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 52, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x06, 0x00, // -----OO--....... - 0x0e, 0x00, // ----OOO--....... - 0x1e, 0x00, // ---OOOO--....... - 0x16, 0x00, // ---O-OO--....... - 0x36, 0x00, // --OO-OO--....... - 0x26, 0x00, // --O--OO--....... - 0x46, 0x00, // -O---OO--....... - 0xc6, 0x00, // OO---OO--....... - 0xc7, 0x00, // OO---OOO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0x06, 0x00, // -----OO--....... - 0x06, 0x00, // -----OO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 53, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x3e, 0x00, // --OOOOO--....... - 0x20, 0x00, // --O------....... - 0x20, 0x00, // --O------....... - 0x3c, 0x00, // --OOOO---....... - 0x3e, 0x00, // --OOOOO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x03, 0x00, // ------OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 54, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x06, 0x00, // -----OO--....... - 0x1f, 0x00, // ---OOOOO-....... - 0x30, 0x00, // --OO-----....... - 0x20, 0x00, // --O------....... - 0x60, 0x00, // -OO------....... - 0x7e, 0x00, // -OOOOOO--....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x21, 0x80, // --O----OO....... - 0x33, 0x00, // --OO--OO-....... - 0x1e, 0x00, // ---OOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 55, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x02, 0x00, // ------O--....... - 0x06, 0x00, // -----OO--....... - 0x04, 0x00, // -----O---....... - 0x0c, 0x00, // ----OO---....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x18, 0x00, // ---OO----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 56, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x38, 0x00, // --OOO----....... - 0x6c, 0x00, // -OO-OO---....... - 0xc6, 0x00, // OO---OO--....... - 0xc6, 0x00, // OO---OO--....... - 0xc6, 0x00, // OO---OO--....... - 0x6c, 0x00, // -OO-OO---....... - 0x3c, 0x00, // --OOOO---....... - 0x66, 0x00, // -OO--OO--....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 57, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x6f, 0x00, // -OO-OOOO-....... - 0x3b, 0x00, // --OOO-OO-....... - 0x03, 0x00, // ------OO-....... - 0x02, 0x00, // ------O--....... - 0x46, 0x00, // -O---OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 58, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 59, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x60, 0x00, // -OO--........... - 0x40, 0x00, // -O---........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 60, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x20, // ----------O--... - 0x01, 0xe0, // -------OOOO--... - 0x07, 0x80, // -----OOOO----... - 0x3c, 0x00, // --OOOO-------... - 0x70, 0x00, // -OOO---------... - 0x78, 0x00, // -OOOO--------... - 0x0f, 0x00, // ----OOOO-----... - 0x03, 0xc0, // ------OOOO---... - 0x00, 0x60, // ---------OO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 61, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 62, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x40, 0x00, // -O-----------... - 0x70, 0x00, // -OOO---------... - 0x1e, 0x00, // ---OOOO------... - 0x03, 0x80, // ------OOO----... - 0x00, 0xe0, // --------OOO--... - 0x01, 0xc0, // -------OOO---... - 0x0f, 0x00, // ----OOOO-----... - 0x38, 0x00, // --OOO--------... - 0x60, 0x00, // -OO----------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 63, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x18, 0x00, // ---OO---........ - 0x7c, 0x00, // -OOOOO--........ - 0x46, 0x00, // -O---OO-........ - 0x06, 0x00, // -----OO-........ - 0x06, 0x00, // -----OO-........ - 0x0c, 0x00, // ----OO--........ - 0x18, 0x00, // ---OO---........ - 0x18, 0x00, // ---OO---........ - 0x10, 0x00, // ---O----........ - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x10, 0x00, // ---O----........ - 0x10, 0x00, // ---O----........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 64, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x0f, 0xe0, // ----OOOOOOO----. - 0x18, 0x30, // ---OO-----OO---. - 0x20, 0x18, // --O--------OO--. - 0x63, 0x08, // -OO---OO----O--. - 0x47, 0xcc, // -O---OOOOO--OO-. - 0x4c, 0x44, // -O--OO---O---O-. - 0xc8, 0x44, // OO--O----O---O-. - 0xc8, 0x4c, // OO--O----O--OO-. - 0x4c, 0x48, // -O--OO---O--O--. - 0x46, 0xf8, // -O---OO-OOOOO--. - 0x43, 0x60, // -O----OO-OO----. - 0x20, 0x00, // --O------------. - 0x18, 0x20, // ---OO-----O----. - 0x0f, 0xe0, // ----OOOOOOO----. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 65, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x04, 0x00, // -----O----...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x33, 0x00, // --OO--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x21, 0x80, // --O----OO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0x80, // -OO-----O-...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0xc0, // OO------OO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 66, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x3e, 0x00, // --OOOOO---...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x61, 0x80, // -OO----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x60, 0x80, // -OO-----O-...... - 0x60, 0x80, // -OO-----O-...... - 0x61, 0x80, // -OO----OO-...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 67, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x0e, 0x00, // ----OOO---...... - 0x3f, 0x00, // --OOOOOO--...... - 0x70, 0x80, // -OOO----O-...... - 0x60, 0x00, // -OO-------...... - 0x40, 0x00, // -O--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0x40, 0x00, // -O--------...... - 0x60, 0x00, // -OO-------...... - 0x30, 0x80, // --OO----O-...... - 0x1f, 0x00, // ---OOOOO--...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 68, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x3e, 0x00, // --OOOOO-----.... - 0x7f, 0x80, // -OOOOOOOO---.... - 0x60, 0xc0, // -OO-----OO--.... - 0x60, 0x40, // -OO------O--.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0x60, // -OO------OO-.... - 0x60, 0xc0, // -OO-----OO--.... - 0x61, 0xc0, // -OO----OOO--.... - 0x7f, 0x80, // -OOOOOOOO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 69, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 70, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3f, 0x00, // --OOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7e, 0x00, // -OOOOOO--....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 71, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0f, 0x00, // ----OOOO----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x60, 0x40, // -OO------O--.... - 0x60, 0x00, // -OO---------.... - 0x40, 0x00, // -O----------.... - 0xc0, 0x00, // OO----------.... - 0xc0, 0x00, // OO----------.... - 0xc3, 0xc0, // OO----OOOO--.... - 0xc0, 0x40, // OO-------O--.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0x40, // -OO------O--.... - 0x30, 0xc0, // --OO----OO--.... - 0x1f, 0x80, // ---OOOOOO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 72, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xC0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x7f, 0xc0, // -OOOOOOOOO-..... - 0x7f, 0xc0, // -OOOOOOOOO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 73, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 74, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0xc0, 0x00, // OO--............ - 0xc0, 0x00, // OO--............ - 0x00, 0x00, // ----............ - - // ASCII: 75, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x60, 0x80, // -OO-----O-...... - 0x61, 0x80, // -OO----OO-...... - 0x63, 0x00, // -OO---OO--...... - 0x66, 0x00, // -OO--OO---...... - 0x6c, 0x00, // -OO-OO----...... - 0x78, 0x00, // -OOOO-----...... - 0x78, 0x00, // -OOOO-----...... - 0x6c, 0x00, // -OO-OO----...... - 0x66, 0x00, // -OO--OO---...... - 0x63, 0x00, // -OO---OO--...... - 0x61, 0x80, // -OO----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 76, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x7f, 0x00, // -OOOOOOO........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 77, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x70, 0x70, // -OOO-----OOO-... - 0x70, 0x70, // -OOO-----OOO-... - 0x78, 0x70, // -OOOO----OOO-... - 0x68, 0xf0, // -OO-O---OOOO-... - 0x68, 0xb0, // -OO-O---O-OO-... - 0x6c, 0xb0, // -OO-OO--O-OO-... - 0x65, 0xb0, // -OO--O-OO-OO-... - 0x65, 0x30, // -OO--O-O--OO-... - 0x67, 0x30, // -OO--OOO--OO-... - 0x63, 0x30, // -OO---OO--OO-... - 0x60, 0x30, // -OO-------OO-... - 0x60, 0x30, // -OO-------OO-... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 78, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x70, 0x40, // -OOO-----O-..... - 0x70, 0xc0, // -OOO----OO-..... - 0x78, 0xc0, // -OOOO---OO-..... - 0x68, 0xc0, // -OO-O---OO-..... - 0x6c, 0xc0, // -OO-OO--OO-..... - 0x64, 0xc0, // -OO--O--OO-..... - 0x66, 0xc0, // -OO--OO-OO-..... - 0x66, 0xc0, // -OO--OO-OO-..... - 0x63, 0xc0, // -OO---OOOO-..... - 0x63, 0xc0, // -OO---OOOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 79, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 80, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x63, 0x00, // -OO---OO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7c, 0x00, // -OOOOO---....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 81, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x03, 0x00, // ------OO----.... - 0x01, 0x80, // -------OO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 82, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x3e, 0x00, // --OOOOO---...... - 0x7f, 0x00, // -OOOOOOO--...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x61, 0x80, // -OO----OO-...... - 0x63, 0x00, // -OO---OO--...... - 0x7e, 0x00, // -OOOOOO---...... - 0x63, 0x00, // -OO---OO--...... - 0x61, 0x00, // -OO----O--...... - 0x61, 0x80, // -OO----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x60, 0xc0, // -OO-----OO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 83, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x77, 0x00, // -OOO-OOO-....... - 0x60, 0x00, // -OO------....... - 0xc0, 0x00, // OO-------....... - 0xc0, 0x00, // OO-------....... - 0x60, 0x00, // -OO------....... - 0x3c, 0x00, // --OOOO---....... - 0x0e, 0x00, // ----OOO--....... - 0x03, 0x00, // ------OO-....... - 0x01, 0x00, // -------O-....... - 0x01, 0x00, // -------O-....... - 0x43, 0x00, // -O----OO-....... - 0x3e, 0x00, // --OOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 84, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xff, 0x80, // OOOOOOOOO....... - 0xff, 0x80, // OOOOOOOOO....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 85, char width: 11 - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x30, 0x80, // --OO----O--..... - 0x3f, 0x80, // --OOOOOOO--..... - 0x0e, 0x00, // ----OOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 86, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x80, 0x40, // O--------O...... - 0xc0, 0xc0, // OO------OO...... - 0x40, 0xc0, // -O------OO...... - 0x60, 0x80, // -OO-----O-...... - 0x21, 0x80, // --O----OO-...... - 0x31, 0x80, // --OO---OO-...... - 0x31, 0x00, // --OO---O--...... - 0x13, 0x00, // ---O--OO--...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x0e, 0x00, // ----OOO---...... - 0x0c, 0x00, // ----OO----...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 87, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x41, 0x04, // -O-----O-----O-. - 0x43, 0x84, // -O----OOO----O-. - 0x63, 0x84, // -OO---OOO----O-. - 0x62, 0x8c, // -OO---O-O---OO-. - 0x62, 0x8c, // -OO---O-O---OO-. - 0x26, 0xc8, // --O--OO-OO--O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x34, 0x58, // --OO-O---O-OO--. - 0x34, 0x58, // --OO-O---O-OO--. - 0x1c, 0x70, // ---OOO---OOO---. - 0x1c, 0x70, // ---OOO---OOO---. - 0x18, 0x30, // ---OO-----OO---. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 88, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x60, 0x80, // -OO-----O-...... - 0x21, 0x80, // --O----OO-...... - 0x31, 0x00, // --OO---O--...... - 0x1b, 0x00, // ---OO-OO--...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x0c, 0x00, // ----OO----...... - 0x1e, 0x00, // ---OOOO---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x21, 0x80, // --O----OO-...... - 0x60, 0x80, // -OO-----O-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 89, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xc0, 0x80, // OO------O....... - 0x41, 0x80, // -O-----OO....... - 0x63, 0x00, // -OO---OO-....... - 0x32, 0x00, // --OO--O--....... - 0x16, 0x00, // ---O-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 90, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0xff, 0x80, // OOOOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x03, 0x00, // ------OO--...... - 0x03, 0x00, // ------OO--...... - 0x06, 0x00, // -----OO---...... - 0x0c, 0x00, // ----OO----...... - 0x08, 0x00, // ----O-----...... - 0x18, 0x00, // ---OO-----...... - 0x30, 0x00, // --OO------...... - 0x60, 0x00, // -OO-------...... - 0x40, 0x00, // -O--------...... - 0xff, 0x80, // OOOOOOOOO-...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 91, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xf0, 0x00, // -OOOO-.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0xf0, 0x00, // -OOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 92, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x80, 0x00, // O----........... - 0xc0, 0x00, // OO---........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0x40, 0x00, // -O---........... - 0x60, 0x00, // -OO--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x30, 0x00, // --OO-........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x10, 0x00, // ---O-........... - 0x18, 0x00, // ---OO........... - 0x08, 0x00, // ----O........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 93, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0xf8, 0x00, // OOOOO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0xf8, 0x00, // OOOOO-.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 94, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x0f, 0x00, // ----OOOO-----... - 0x19, 0x80, // ---OO--OO----... - 0x30, 0xc0, // --OO----OO---... - 0x20, 0x40, // --O------O---... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 95, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x7f, 0x00, // -OOOOOOO........ - 0x00, 0x00, // -------......... - - // ASCII: 96, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x20, 0x00, // --O----......... - 0x20, 0x00, // --O----......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 97, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 98, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x71, 0x00, // -OOO---O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x73, 0x00, // -OOO--OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 99, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x1e, 0x00, // ---OOOO-........ - 0x60, 0x00, // -OO-----........ - 0x40, 0x00, // -O------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0x40, 0x00, // -O------........ - 0x60, 0x00, // -OO-----........ - 0x1e, 0x00, // ---OOOO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 100, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x67, 0x00, // -OO--OOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 101, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1e, 0x00, // ---OOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3e, 0x00, // --OOOOO--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 102, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x1c, 0x00, // ---OOO.......... - 0x30, 0x00, // --OO-........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0xf8, 0x00, // OOOOO........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x20, 0x00, // --O--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 103, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1f, 0x00, // ---OOOOO-....... - 0x63, 0x00, // -OO---OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x67, 0x00, // -OO--OOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x02, 0x00, // ------O--....... - 0x7c, 0x00, // -OOOOO---....... - 0x00, 0x00, // ---------....... - - // ASCII: 104, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7e, 0x00, // -OOOOOO--....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 105, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 106, char width: 5 - 0x00, 0x00, // -----............ - 0x00, 0x00, // -----............ - 0x00, 0x00, // -----............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x00, 0x00, // -----............ - 0x00, 0x00, // -----............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x30, 0x00, // --OO-............ - 0x60, 0x00, // -OO--............ - 0xc0, 0x00, // OO--............ - 0x00, 0x00, // -----............ - - // ASCII: 107, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x63, 0x00, // -OO---OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x6c, 0x00, // -OO-OO---....... - 0x78, 0x00, // -OOOO----....... - 0x78, 0x00, // -OOOO----....... - 0x6c, 0x00, // -OO-OO---....... - 0x64, 0x00, // -OO--O---....... - 0x62, 0x00, // -OO---O--....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 108, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 109, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x5b, 0x38, // -O-OOO---OOO---. - 0x73, 0x88, // -OOO--OOO---O--. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x61, 0x0c, // -OO----O----OO-. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 110, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x5f, 0x00, // -O-OOOOO-....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 111, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3c, 0x00, // --OOOO---....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 112, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x71, 0x00, // -OOO---O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x73, 0x00, // -OOO--OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - - // ASCII: 113, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1f, 0x00, // ---OOOOO-....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x67, 0x00, // -OO--OOO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x03, 0x00, // ------OO-....... - 0x00, 0x00, // ---------....... - - // ASCII: 114, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x6c, 0x00, // -OO-OO.......... - 0x70, 0x00, // -OOO--.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 115, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x7c, 0x00, // -OOOOO--........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0x60, 0x00, // -OO-----........ - 0x3c, 0x00, // --OOOO--........ - 0x06, 0x00, // -----OO-........ - 0x06, 0x00, // -----OO-........ - 0x86, 0x00, // O----OO-........ - 0x7c, 0x00, // -OOOOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 116, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0xfc, 0x00, // OOOOOO.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // -OO---.......... - 0x3c, 0x00, // --OOOO.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 117, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 118, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x14, 0x00, // ---O-O---....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 119, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x86, 0x20, // O----OO---O-.... - 0x86, 0x20, // O----OO---O-.... - 0x4e, 0x60, // OO--OOO--OO-.... - 0x4a, 0x60, // OO--O-O--OO-.... - 0x6b, 0x40, // -OO-O-OO-O--.... - 0x69, 0x40, // -OO-O--O-O--.... - 0x39, 0xc0, // --OOO--OOO--.... - 0x31, 0xc0, // --OO---OOO--.... - 0x31, 0x80, // --OO---OO---.... - 0x11, 0x00, // ---O---O----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 120, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x36, 0x00, // --OO-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x36, 0x00, // --OO-OO--....... - 0x22, 0x00, // --O---O--....... - 0x63, 0x00, // -OO---OO-....... - 0x80, 0x10, // O-------O....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 121, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x14, 0x00, // ---O-O---....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x10, 0x00, // ---O-----....... - 0x70, 0x00, // -OOO-----....... - 0x00, 0x00, // ---------....... - - // ASCII: 122, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0xfe, 0x00, // OOOOOOO-........ - 0x06, 0x00, // -----OO-........ - 0x0c, 0x00, // ----OO--........ - 0x08, 0x00, // ----O---........ - 0x18, 0x00, // ---OO---........ - 0x30, 0x00, // --OO----........ - 0x60, 0x00, // -OO-----........ - 0xc0, 0x00, // OO------........ - 0x80, 0x00, // O-------........ - 0xfe, 0x00, // OOOOOOO-........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 123, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x06, 0x00, // -----OO--....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x30, 0x00, // --OO-----....... - 0x38, 0x00, // --OOO----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x0e, 0x00, // ----OOO--....... - 0x06, 0x00, // -----OO--....... - 0x00, 0x00, // ---------....... - - // ASCII: 124, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - - // ASCII: 125, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x70, 0x00, // -OOO-----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x0e, 0x00, // ----OOO--....... - 0x0e, 0x00, // ----OOO--....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x38, 0x00, // --OOO----....... - 0x30, 0x00, // --OO-----....... - 0x00, 0x00, // ---------....... - - // ASCII: 126, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x18, 0x00, // ---OO--------... - 0x67, 0x40, // -OO--OOO--O--... - 0x43, 0xc0, // -O----OOOO---... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 160, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 161, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 162, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x1f, 0x00, // ---OOOOO-....... - 0x34, 0x00, // --OO-O---....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x24, 0x00, // --O--O---....... - 0x35, 0x00, // --OO-O-O-....... - 0x1f, 0x00, // ---OOOOO-....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - - // ASCII: 163, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x1f, 0x00, // ---OOOOO-....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x7e, 0x00, // -OOOOOO--....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0x30, 0x00, // --OO-----....... - 0xff, 0x00, // OOOOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 164, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xc1, 0x00, // OO-----O-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x22, 0x00, // --O---O--....... - 0x42, 0x00, // -O----O--....... - 0x43, 0x00, // -O----OO-....... - 0x62, 0x00, // -OO---O--....... - 0x7e, 0x00, // -OOOOOO--....... - 0xdf, 0x00, // OO-OOOOO-....... - 0x01, 0x00, // -------O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 165, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0xc1, 0x00, // OO-----O-....... - 0x43, 0x00, // -O----OO-....... - 0x62, 0x00, // -OO---O--....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0xff, 0x00, // OOOOOOOO-....... - 0x1c, 0x00, // ---OOO---....... - 0x18, 0x00, // ---OO----....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 166, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - - // ASCII: 167, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x7c, 0x00, // -OOOOO-......... - 0x40, 0x00, // -O-----......... - 0x40, 0x00, // -O-----......... - 0x70, 0x00, // -OOO---......... - 0x58, 0x00, // -O-OO--......... - 0x8c, 0x00, // O---OO-......... - 0xc4, 0x00, // OO---O-......... - 0x64, 0x00, // -OO--O-......... - 0x3c, 0x00, // --OOOO-......... - 0x18, 0x00, // ---OO--......... - 0x0c, 0x00, // ----OO-......... - 0x0c, 0x00, // ----OO-......... - 0x7c, 0x00, // -OOOOO-......... - 0x30, 0x00, // --OO---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 168, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x68, 0x00, // -OO-O--......... - 0x68, 0x00, // -OO-O--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 169, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x03, 0x80, // ------OOO------. - 0x0c, 0x60, // ----OO---OO----. - 0x10, 0x10, // ---O-------O---. - 0x17, 0xc8, // ---O-OOOOO--O--. - 0x24, 0x08, // --O--O------O--. - 0x2c, 0x08, // --O-OO------O--. - 0x2c, 0x08, // --O-OO------O--. - 0x2c, 0x08, // --O-OO------O--. - 0x24, 0x08, // --O--O------O--. - 0x13, 0xd0, // ---O--OOOO-O---. - 0x18, 0x10, // ---OO------O---. - 0x06, 0x60, // -----OO--OO----. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 170, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x58, 0x00, // -O-OO--......... - 0x0c, 0x00, // ----OO-......... - 0x7c, 0x00, // -OOOOO-......... - 0xcc, 0x00, // OO--OO-......... - 0xcc, 0x00, // OO--OO-......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 171, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x19, 0x00, // ---OO--O-....... - 0x32, 0x00, // --OO--O--....... - 0x64, 0x00, // -OO--O---....... - 0x64, 0x00, // -OO--O---....... - 0x36, 0x00, // --OO-OO--....... - 0x19, 0x00, // ---OO--O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 172, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xc0, // -OOOOOOOOO---... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x60, // ---------OO--... - 0x00, 0x60, // ---------OO--... - 0x00, 0x60, // ---------OO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 173, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0xf0, 0x00, // OOOO-........... - 0x70, 0x00, // -OOO-........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 174, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x03, 0x80, // ------OOO------. - 0x0c, 0x60, // ----OO---OO----. - 0x10, 0x10, // ---O-------O---. - 0x17, 0xc8, // ---O-OOOOO--O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x27, 0x88, // --O--OOOO---O--. - 0x26, 0x88, // --O--OO-O---O--. - 0x26, 0x48, // --O--OO--O--O--. - 0x14, 0x50, // ---O-O---O-O---. - 0x18, 0x10, // ---OO------O---. - 0x06, 0x60, // -----OO--OO----. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 175, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x78, 0x00, // -OOOO--......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 176, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x10, 0x00, // ---O---......... - 0x3c, 0x00, // --OOOO-......... - 0x64, 0x00, // -OO--O-......... - 0x64, 0x00, // -OO--O-......... - 0x2c, 0x00, // --O-OO-......... - 0x18, 0x00, // ---OO--......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 177, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x04, 0x00, // -----O-------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 178, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x90, 0x00, // O--O--.......... - 0x18, 0x00, // ---OO-.......... - 0x10, 0x00, // ---O--.......... - 0x30, 0x00, // --OO--.......... - 0x60, 0x00, // -OO---.......... - 0xe0, 0x00, // OOO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 179, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x18, 0x00, // ---OO-.......... - 0x18, 0x00, // ---OO-.......... - 0x30, 0x00, // --OO--.......... - 0x18, 0x00, // ---OO-.......... - 0x08, 0x00, // ----O-.......... - 0x18, 0x00, // ---OO-.......... - 0x60, 0x00, // -OO---.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 180, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x10, 0x00, // ---O---......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 181, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x6c, 0x80, // -OO-OO--O....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - - // ASCII: 182, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1f, 0x00, // ---OOOOO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x7d, 0x00, // -OOOOO-O-....... - 0x7d, 0x00, // -OOOOO-O-....... - 0x7d, 0x00, // -OOOOO-O-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x0d, 0x00, // ----OO-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x05, 0x00, // -----O-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 183, char width: 5 - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x60, 0x00, // -OO--........... - 0x60, 0x00, // -OO--........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - 0x00, 0x00, // -----........... - - // ASCII: 184, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x08, 0x00, // ----O--......... - 0x08, 0x00, // ----O--......... - 0x38, 0x00, // --OOO--......... - 0x00, 0x00, // -------......... - - // ASCII: 185, char width: 6 - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x60, 0x00, // -OO---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x20, 0x00, // --O---.......... - 0x30, 0x00, // --OO--.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - 0x00, 0x00, // ------.......... - - // ASCII: 186, char width: 7 - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x30, 0x00, // --OO---......... - 0x68, 0x00, // -OO-O--......... - 0xc4, 0x00, // OO---O-......... - 0x84, 0x00, // O----O-......... - 0x84, 0x00, // O----O-......... - 0xcc, 0x00, // OO--OO-......... - 0x78, 0x00, // -OOOO--......... - 0x00, 0x00, // -------......... - 0x7c, 0x00, // -OOOOO-......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - 0x00, 0x00, // -------......... - - // ASCII: 187, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x64, 0x00, // -OO--O---....... - 0x36, 0x00, // --OO-OO--....... - 0x1b, 0x00, // ---OO-OO-....... - 0x1b, 0x00, // ---OO-OO-....... - 0x36, 0x00, // --OO-OO--....... - 0x64, 0x00, // -OO--O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 188, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x60, 0x40, // -OO------O-----. - 0x20, 0xc0, // --O-----OO-----. - 0x20, 0x80, // --O-----O------. - 0x21, 0x80, // --O----OO------. - 0x21, 0x00, // --O----O-------. - 0x33, 0x18, // --OO--OO---OO--. - 0x02, 0x38, // ------O---OOO--. - 0x04, 0x28, // -----O----O-O--. - 0x04, 0x48, // -----O---O--O--. - 0x08, 0xd8, // ----O---OO-OO--. - 0x08, 0x18, // ----O------OO--. - 0x10, 0x08, // ---O--------O--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 189, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x60, 0x40, // -OO------O-----. - 0x20, 0xc0, // --O-----OO-----. - 0x20, 0x80, // --O-----O------. - 0x21, 0x80, // --O----OO------. - 0x21, 0x00, // --O----O-------. - 0x33, 0x70, // --OO--OO-OOO---. - 0x02, 0x08, // ------O-----O--. - 0x04, 0x08, // -----O------O--. - 0x04, 0x10, // -----O-----O---. - 0x08, 0x30, // ----O-----OO---. - 0x08, 0x60, // ----O----OO----. - 0x10, 0x78, // ---O-----OOOO--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 190, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x60, 0x00, // -OO------------. - 0x18, 0x40, // ---OO----O-----. - 0x18, 0xc0, // ---OO---OO-----. - 0x30, 0x80, // --OO----O------. - 0x19, 0x80, // ---OO--OO------. - 0x09, 0x00, // ----O--O-------. - 0x1b, 0x18, // ---OO-OO---OO--. - 0x62, 0x38, // -OO---O---OOO--. - 0x04, 0x28, // -----O----O-O--. - 0x04, 0x48, // -----O---O--O--. - 0x08, 0xd8, // ----O---OO-OO--. - 0x08, 0x18, // ----O------OO--. - 0x10, 0x08, // ---O--------O--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 191, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x08, 0x00, // ----O---........ - 0x08, 0x00, // ----O---........ - 0x00, 0x00, // --------........ - 0x08, 0x00, // ----O---........ - 0x08, 0x00, // ----O---........ - 0x08, 0x00, // ----O---........ - 0x18, 0x00, // ---OO---........ - 0x30, 0x00, // --OO----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x60, 0x00, // -OO-----........ - 0x7e, 0x00, // -OOOOOO-........ - 0x1c, 0x00, // ---OOO--........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - - // ASCII: 192, char width: 10 - 0x08, 0x00, // ----O-----...... - 0x0c, 0x00, // ----OO----...... - 0x04, 0x00, // -----O----...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 193, char width: 10 - 0x02, 0x00, // ------O---...... - 0x04, 0x00, // -----O----...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 194, char width: 10 - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x10, 0x00, // ---O------...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 195, char width: 10 - 0x08, 0x00, // ----O-----...... - 0x1e, 0x00, // ---OOOO---...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 196, char width: 10 - 0x12, 0x00, // ---O--O---...... - 0x12, 0x00, // ---O--O---...... - 0x00, 0x00, // ----------...... - 0x0c, 0x00, // ----OO----...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x33, 0x00, // --OO--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x21, 0x80, // --O----OO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0x80, // -OO-----O-...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0xc0, // OO------OO...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 197, char width: 10 - 0x0c, 0x00, // ----OO----...... - 0x1a, 0x00, // ---OO-O---...... - 0x12, 0x00, // ---O--O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x0e, 0x00, // ----OOO---...... - 0x0e, 0x00, // ----OOO---...... - 0x1a, 0x00, // ---OO-O---...... - 0x1a, 0x00, // ---OO-O---...... - 0x13, 0x00, // ---O--OO--...... - 0x31, 0x00, // --OO---O--...... - 0x31, 0x00, // --OO---O--...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x7f, 0x80, // -OOOOOOOO-...... - 0x60, 0xc0, // -OO-----OO...... - 0x40, 0xc0, // -O------OO...... - 0xc0, 0x40, // OO-------O...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - - // ASCII: 198, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x07, 0xfc, // -----OOOOOOOOO-. - 0x0f, 0xf8, // ----OOOOOOOOO--. - 0x09, 0x00, // ----O--O-------. - 0x19, 0x00, // ---OO--O-------. - 0x19, 0x00, // ---OO--O-------. - 0x11, 0xf8, // ---O---OOOOOO--. - 0x31, 0xf8, // --OO---OOOOOO--. - 0x31, 0x00, // --OO---O-------. - 0x3f, 0x00, // --OOOOOO-------. - 0x63, 0x00, // -OO---OO-------. - 0x41, 0x00, // -O-----O-------. - 0xc1, 0xfc, // OO-----OOOOOOO-. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 199, char width: 10 - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x00, 0x00, // ----------...... - 0x06, 0x00, // -----OO---...... - 0x3f, 0x80, // --OOOOOOO-...... - 0x70, 0x80, // -OOO----O-...... - 0x60, 0x00, // -OO-------...... - 0x40, 0x00, // -O--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0xc0, 0x00, // OO--------...... - 0x40, 0x00, // -O--------...... - 0x60, 0x00, // -OO-------...... - 0x30, 0x80, // --OO----O-...... - 0x1f, 0x80, // ---OOOOOO-...... - 0x02, 0x00, // ------O---...... - 0x02, 0x00, // ------O---...... - 0x0e, 0x00, // ----OOO---...... - 0x00, 0x00, // ----------...... - - // ASCII: 200, char width: 9 - 0x08, 0x00, // ----O----....... - 0x0c, 0x00, // ----OO---....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 201, char width: 9 - 0x02, 0x00, // ------O--....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 202, char width: 9 - 0x0c, 0x00, // ----OO---....... - 0x0e, 0x00, // ----OOO--....... - 0x10, 0x00, // ---O-----....... - 0x00, 0x00, // ---------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 203, char width: 9 - 0x12, 0x00, // ---O--O--....... - 0x12, 0x00, // ---O--O--....... - 0x00, 0x00, // ---------....... - 0x3f, 0x00, // --OOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x80, // -OOOOOOOO....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 204, char width: 4 - 0x40, 0x00, // -O--............ - 0x60, 0x00, // -OO-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 205, char width: 4 - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 206, char width: 4 - 0x20, 0x00, // --O-............ - 0x50, 0x00, // -O-O............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 207, char width: 4 - 0xd8, 0x00, // OO-OO........... - 0x58, 0x00, // -O-OO........... - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 208, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x3f, 0x00, // --OOOOOO----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x20, 0xc0, // --O-----OO--.... - 0x20, 0x60, // --O------OO-.... - 0x20, 0x60, // --O------OO-.... - 0x70, 0x60, // -OOO-----OO-.... - 0xf8, 0x60, // OOOOO----OO-.... - 0x20, 0x60, // --O------OO-.... - 0x20, 0x60, // --O------OO-.... - 0x20, 0x40, // --O------O--.... - 0x20, 0xc0, // --O-----OO--.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 209, char width: 11 - 0x08, 0x00, // ----O------..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x70, 0xc0, // -OOO----OO-..... - 0x70, 0xc0, // -OOO----OO-..... - 0x78, 0xc0, // -OOOO---OO-..... - 0x68, 0xc0, // -OO-O---OO-..... - 0x6c, 0xc0, // -OO-OO--OO-..... - 0x64, 0xc0, // -OO--O--OO-..... - 0x66, 0xc0, // -OO--OO-OO-..... - 0x62, 0xc0, // -OO---O-OO-..... - 0x63, 0xc0, // -OO---OOOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x61, 0xc0, // -OO----OOO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 210, char width: 12 - 0x08, 0x00, // ----O-------.... - 0x04, 0x00, // -----O------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 211, char width: 12 - 0x02, 0x00, // ------O-----.... - 0x06, 0x00, // -----OO-----.... - 0x04, 0x00, // -----O------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 212, char width: 12 - 0x04, 0x00, // -----O------.... - 0x0a, 0x00, // ----O-O-----.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 213, char width: 12 - 0x08, 0x00, // ----O-------.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x31, 0x80, // --OO---OO---.... - 0x1f, 0x00, // ---OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 214, char width: 12 - 0x1b, 0x00, // ---OO-OO----.... - 0x1b, 0x00, // ---OO-OO----.... - 0x00, 0x00, // ------------.... - 0x1f, 0x00, // ---OOOOO----.... - 0x31, 0x80, // --OO---OO---.... - 0x60, 0xc0, // -OO-----OO--.... - 0x40, 0x40, // -O-------O--.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0xc0, 0x60, // OO-------OO-.... - 0x40, 0x40, // -O-------O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x3f, 0x80, // --OOOOOOO---.... - 0x0e, 0x00, // ----OOO-----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 215, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x30, 0x60, // --OO-----OO--... - 0x18, 0xc0, // ---OO---OO---... - 0x0d, 0x80, // ----OO-OO----... - 0x07, 0x00, // -----OOO-----... - 0x07, 0x00, // -----OOO-----... - 0x0f, 0x00, // ----OOOO-----... - 0x18, 0x80, // ---OO---O----... - 0x30, 0xc0, // --OO----OO---... - 0x00, 0x40, // ---------O---... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 216, char width: 12 - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x0e, 0x00, // ----OOO-----.... - 0x3f, 0xc0, // --OOOOOOOO--.... - 0x71, 0xc0, // -OOO---OOO--.... - 0x61, 0xc0, // -OO----OOO--.... - 0x41, 0x40, // -O-----O-O--.... - 0xc2, 0x60, // OO----O--OO-.... - 0xc4, 0x60, // OO---O---OO-.... - 0xcc, 0x60, // OO--OO---OO-.... - 0xc8, 0x60, // OO--O----OO-.... - 0x70, 0x40, // -OOO-----O--.... - 0x60, 0xc0, // -OO-----OO--.... - 0x71, 0x80, // -OOO---OO---.... - 0x5f, 0x00, // -O-OOOOO----.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - 0x00, 0x00, // ------------.... - - // ASCII: 217, char width: 11 - 0x08, 0x00, // ----O------..... - 0x04, 0x00, // -----O-----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x20, 0xc0, // --O-----OO-..... - 0x31, 0x80, // --OO---OO--..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 218, char width: 11 - 0x02, 0x00, // ------O----..... - 0x06, 0x00, // -----OO----..... - 0x04, 0x00, // -----O-----..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x20, 0xc0, // --O-----OO-..... - 0x31, 0x80, // --OO---OO--..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 219, char width: 11 - 0x04, 0x00, // -----O-----..... - 0x0a, 0x00, // ----O-O----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x20, 0xc0, // --O-----OO-..... - 0x31, 0x80, // --OO---OO--..... - 0x1f, 0x00, // ---OOOOO---..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 220, char width: 11 - 0x1b, 0x00, // ---OO-OO---..... - 0x1b, 0x00, // ---OO-OO---..... - 0x00, 0x00, // -----------..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x60, 0xc0, // -OO-----OO-..... - 0x30, 0x80, // --OO----O--..... - 0x3f, 0x80, // --OOOOOOO--..... - 0x0e, 0x00, // ----OOO----..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - 0x00, 0x00, // -----------..... - - // ASCII: 221, char width: 9 - 0x04, 0x00, // -----O---....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x41, 0x80, // -O-----OO....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x36, 0x00, // --OO-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 222, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x60, 0x00, // -OO------....... - 0x7c, 0x00, // -OOOOO---....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x00, // -OO----O-....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 223, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x1c, 0x00, // ---OOO---....... - 0x36, 0x00, // --OO-OO--....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x64, 0x00, // -OO--O---....... - 0x6c, 0x00, // -OO-OO---....... - 0x6c, 0x00, // -OO-OO---....... - 0x66, 0x00, // -OO--OO--....... - 0x63, 0x00, // -OO---OO-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x6f, 0x00, // -OO-OOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 224, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x20, 0x00, // --O------....... - 0x10, 0x00, // ---O-----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 225, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x0c, 0x00, // ----OO---....... - 0x18, 0x00, // ---OO----....... - 0x10, 0x00, // ---O-----....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 226, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x10, 0x00, // ---O-----....... - 0x18, 0x00, // ---OO----....... - 0x2c, 0x00, // --O-OO---....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 227, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x7c, 0x00, // -OOOOO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x46, 0x00, // -O---OO--....... - 0x02, 0x00, // ------O--....... - 0x02, 0x00, // ------O--....... - 0x7e, 0x00, // -OOOOOO--....... - 0x42, 0x00, // -O----O--....... - 0xc2, 0x00, // OO----O--....... - 0xc6, 0x00, // OO---OO--....... - 0x7e, 0x00, // -OOOOOO--....... - 0x38, 0x00, // --OOO----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 228, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x24, 0x00, // --O--O---....... - 0x24, 0x00, // --O--O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 229, char width: 9 - 0x00, 0x00, // ---------....... - 0x18, 0x00, // ---OO----....... - 0x2c, 0x00, // --O-OO---....... - 0x24, 0x00, // --O--O---....... - 0x2c, 0x00, // --O-OO---....... - 0x18, 0x00, // ---OO----....... - 0x00, 0x00, // ---------....... - 0x7c, 0x00, // -OOOOO---....... - 0x06, 0x00, // -----OO--....... - 0x02, 0x00, // ------O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0xc2, 0x00, // OO----O--....... - 0xc2, 0x00, // OO----O--....... - 0x46, 0x00, // -O---OO--....... - 0x7a, 0x00, // -OOOO-O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 230, char width: 15 - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x7f, 0xf8, // -OOOOOOOOOOOO--. - 0x07, 0x08, // -----OOO----O--. - 0x03, 0x0c, // ------OO----OO-. - 0x3f, 0x0c, // --OOOOOO----OO-. - 0x63, 0xfc, // -OO---OOOOOOOO-. - 0xc2, 0x00, // OO----O--------. - 0xc3, 0x00, // OO----OO-------. - 0x47, 0x80, // -O---OOOO------. - 0x7c, 0xf8, // -OOOOO--OOOOO--. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - 0x00, 0x00, // ---------------. - - // ASCII: 231, char width: 8 - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x00, 0x00, // --------........ - 0x3e, 0x00, // --OOOOO-........ - 0x60, 0x00, // -OO-----........ - 0x40, 0x00, // -O------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0xc0, 0x00, // OO------........ - 0x40, 0x00, // -O------........ - 0x60, 0x00, // -OO-----........ - 0x3e, 0x00, // --OOOOO-........ - 0x08, 0x00, // ----O---........ - 0x04, 0x00, // -----O--........ - 0x1c, 0x00, // ---OOO--........ - 0x00, 0x00, // --------........ - - // ASCII: 232, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x10, 0x00, // ---O-----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 233, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 234, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x1c, 0x00, // ---OOO---....... - 0x34, 0x00, // --OO-O---....... - 0x20, 0x00, // --O------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 235, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x34, 0x00, // --OO-O---....... - 0x34, 0x00, // --OO-O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x63, 0x00, // -OO---OO-....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xff, 0x00, // OOOOOOOO-....... - 0xc0, 0x00, // OO-------....... - 0x40, 0x00, // -O-------....... - 0x61, 0x00, // -OO----O-....... - 0x3f, 0x00, // --OOOOOO-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 236, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x40, 0x00, // -O--............ - 0x40, 0x00, // -O--............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 237, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x10, 0x00, // ---O............ - 0x10, 0x00, // ---O............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 238, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x30, 0x00, // --OO............ - 0x58, 0x00, // -O-OO........... - 0x08, 0x00, // ----O........... - 0x00, 0x00, // ----............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x20, 0x00, // --O-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 239, char width: 4 - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0xd0, 0x00, // OO-O............ - 0xd0, 0x00, // OO-O............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x60, 0x00, // -OO-............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - 0x00, 0x00, // ----............ - - // ASCII: 240, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x30, 0x00, // --OO-----....... - 0x1c, 0x00, // ---OOO---....... - 0x78, 0x00, // -OOOO----....... - 0x0c, 0x00, // ----OO---....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 241, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x10, 0x00, // ---O-----....... - 0x3e, 0x00, // --OOOOO--....... - 0x04, 0x00, // -----O---....... - 0x00, 0x00, // ---------....... - 0x6e, 0x00, // -OO-OOO--....... - 0x73, 0x00, // -OOO--OO-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 242, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x20, 0x00, // --O------....... - 0x10, 0x00, // ---O-----....... - 0x18, 0x00, // ---OO----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 243, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 244, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x1c, 0x00, // ---OOO---....... - 0x34, 0x00, // --OO-O---....... - 0x20, 0x00, // --O------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 245, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x12, 0x00, // ---O--O--....... - 0x3e, 0x00, // --OOOOO--....... - 0x24, 0x00, // --O--O---....... - 0x00, 0x00, // ---------....... - 0x3c, 0x00, // --OOOO---....... - 0x66, 0x00, // -OO--OO--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x1c, 0x00, // ---OOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 246, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x34, 0x00, // --OO-O---....... - 0x34, 0x00, // --OO-O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3e, 0x00, // --OOOOO--....... - 0x62, 0x00, // -OO---O--....... - 0x43, 0x00, // -O----OO-....... - 0xc3, 0x00, // OO----OO-....... - 0xc1, 0x00, // OO-----O-....... - 0xc3, 0x00, // OO----OO-....... - 0x43, 0x00, // -O----OO-....... - 0x66, 0x00, // -OO--OO--....... - 0x3c, 0x00, // --OOOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 247, char width: 13 - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x7f, 0xc0, // -OOOOOOOOO---... - 0x7f, 0xe0, // -OOOOOOOOOO--... - 0x00, 0x00, // -------------... - 0x06, 0x00, // -----OO------... - 0x06, 0x00, // -----OO------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - 0x00, 0x00, // -------------... - - // ASCII: 248, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x3d, 0x00, // --OOOO-O-....... - 0x66, 0x00, // -OO--OO--....... - 0x47, 0x00, // -O---OOO-....... - 0xc7, 0x00, // OO---OOO-....... - 0xcb, 0x00, // OO--O-OO-....... - 0xd3, 0x00, // OO-O--OO-....... - 0xf3, 0x00, // OOOO--OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x9c, 0x00, // O--OOO---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 249, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x10, 0x00, // ---O-----....... - 0x10, 0x00, // ---O-----....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 250, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x02, 0x00, // ------O--....... - 0x06, 0x00, // -----OO--....... - 0x0c, 0x00, // ----OO---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 251, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x08, 0x00, // ----O----....... - 0x0c, 0x00, // ----OO---....... - 0x16, 0x00, // ---O-OO--....... - 0x02, 0x00, // ------O--....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 252, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x12, 0x00, // ---O--O--....... - 0x12, 0x00, // ---O--O--....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x61, 0x00, // -OO----O-....... - 0x23, 0x00, // --O---OO-....... - 0x3d, 0x00, // --OOOO-O-....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - - // ASCII: 253, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x04, 0x00, // -----O---....... - 0x04, 0x00, // -----O---....... - 0x08, 0x00, // ----O----....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x16, 0x00, // ---O-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x70, 0x00, // -OOO-----....... - 0x20, 0x00, // --O------....... - - // ASCII: 254, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x7f, 0x00, // -OOOOOOO-....... - 0x71, 0x00, // -OOO---O-....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x61, 0x80, // -OO----OO....... - 0x73, 0x00, // -OOO--OO-....... - 0x7e, 0x00, // -OOOOOO--....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x60, 0x00, // -OO------....... - 0x00, 0x00, // ---------....... - - // ASCII: 255, char width: 9 - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x34, 0x00, // --OO-O---....... - 0x34, 0x00, // --OO-O---....... - 0x00, 0x00, // ---------....... - 0x00, 0x00, // ---------....... - 0x41, 0x00, // -O-----O-....... - 0x63, 0x00, // -OO---OO-....... - 0x63, 0x00, // -OO---OO-....... - 0x22, 0x00, // --O---O--....... - 0x36, 0x00, // --OO-OO--....... - 0x16, 0x00, // ---O-OO--....... - 0x1c, 0x00, // ---OOO---....... - 0x1c, 0x00, // ---OOO---....... - 0x08, 0x00, // ----O----....... - 0x08, 0x00, // ----O----....... - 0x18, 0x00, // ---OO----....... - 0x70, 0x00, // -OOO-----....... - 0x20, 0x00, // --O------....... -}; - -static const uint8_t dejavu_20_widths[224] = -{ - 5, 6, 7, 13, 9, 14, 12, 4, - 6, 6, 7, 13, 5, 5, 5, 5, - 9, 9, 9, 9, 9, 9, 9, 9, - 9, 9, 5, 5, 13, 13, 13, 8, - 15, 10, 10, 10, 12, 9, 9, 12, - 11, 4, 4, 10, 8, 13, 11, 12, - 9, 12, 10, 9, 9, 11, 10, 15, - 10, 9, 10, 6, 5, 6, 13, 7, - 7, 9, 9, 8, 9, 9, 5, 9, - 9, 4, 5, 9, 4, 15, 9, 9, - 9, 9, 6, 8, 6, 9, 9, 12, - 9, 9, 8, 9, 5, 9, 13, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 6, 9, 9, 9, 9, 5, 7, - 7, 15, 7, 9, 13, 5, 15, 7, - 7, 13, 6, 6, 7, 9, 9, 5, - 7, 6, 7, 9, 15, 15, 15, 8, - 10, 10, 10, 10, 10, 10, 15, 10, - 9, 9, 9, 9, 4, 4, 4, 4, - 12, 11, 12, 12, 12, 12, 12, 13, - 12, 11, 11, 11, 11, 9, 9, 9, - 9, 9, 9, 9, 9, 9, 15, 8, - 9, 9, 9, 9, 4, 4, 4, 4, - 9, 9, 9, 9, 9, 9, 9, 13, - 9, 9, 9, 9, 9, 9, 9, 9, -}; - -static const font_t dejavu_20_dsc = -{ - 224, // Letter count - 32, // First ascii code - 2, // Letters width (bytes) - 20, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_20_widths, - dejavu_20_bitmaps -}; - -const font_t * dejavu_20_get_dsc(void) -{ - return &dejavu_20_dsc; -} - - -#endif diff --git a/lv_misc/fonts/dejavu_20.h b/lv_misc/fonts/dejavu_20.h deleted file mode 100644 index 3b10471e2..000000000 --- a/lv_misc/fonts/dejavu_20.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_20_H -#define DEJAVU_20_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "misc_conf.h" -#if USE_FONT_DEJAVU_20 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_20_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_30.c b/lv_misc/fonts/dejavu_30.c deleted file mode 100644 index 690df514a..000000000 --- a/lv_misc/fonts/dejavu_30.c +++ /dev/null @@ -1,7260 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_30 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_30_bitmaps[26880] = -{ - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 33, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 34, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x31, 0x80, 0x00, 0x00, // --OO---OO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 35, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x61, 0x80, 0x00, // ---------OO----OO-----.......... - 0x00, 0x61, 0x80, 0x00, // ---------OO----OO-----.......... - 0x00, 0x61, 0x80, 0x00, // ---------OO----OO-----.......... - 0x00, 0xe3, 0x00, 0x00, // --------OOO---OO------.......... - 0x00, 0xc3, 0x00, 0x00, // --------OO----OO------.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x01, 0xc6, 0x00, 0x00, // -------OOO---OO-------.......... - 0x01, 0x86, 0x00, 0x00, // -------OO----OO-------.......... - 0x01, 0x86, 0x00, 0x00, // -------OO----OO-------.......... - 0x01, 0x8e, 0x00, 0x00, // -------OO---OOO-------.......... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO---.......... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO---.......... - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO--------.......... - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO--------.......... - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---------.......... - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---------.......... - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 36, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO------............... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO----............... - 0x1d, 0x18, 0x00, 0x00, // ---OOO-O---OO----............... - 0x39, 0x00, 0x00, 0x00, // --OOO--O---------............... - 0x39, 0x00, 0x00, 0x00, // --OOO--O---------............... - 0x39, 0x00, 0x00, 0x00, // --OOO--O---------............... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO---------............... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO------............... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO-----............... - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO----............... - 0x01, 0x3c, 0x00, 0x00, // -------O--OOOO---............... - 0x01, 0x1c, 0x00, 0x00, // -------O---OOO---............... - 0x01, 0x1c, 0x00, 0x00, // -------O---OOO---............... - 0x01, 0x1c, 0x00, 0x00, // -------O---OOO---............... - 0x31, 0x38, 0x00, 0x00, // --OO---O--OOO----............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x01, 0x00, 0x00, 0x00, // -------O---------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 37, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x1f, 0x00, 0xe0, 0x00, // ---OOOOO--------OOO------....... - 0x3f, 0x80, 0xc0, 0x00, // --OOOOOOO-------OO-------....... - 0x71, 0xc1, 0x80, 0x00, // -OOO---OOO-----OO--------....... - 0x60, 0xc3, 0x80, 0x00, // -OO-----OO----OOO--------....... - 0x60, 0xc3, 0x00, 0x00, // -OO-----OO----OO---------....... - 0x60, 0xc7, 0x00, 0x00, // -OO-----OO---OOO---------....... - 0x60, 0xc6, 0x00, 0x00, // -OO-----OO---OO----------....... - 0x71, 0xcc, 0x00, 0x00, // -OOO---OOO--OO-----------....... - 0x3f, 0x9c, 0x00, 0x00, // --OOOOOOO--OOO-----------....... - 0x1f, 0x18, 0xf8, 0x00, // ---OOOOO---OO---OOOOO----....... - 0x00, 0x39, 0xfc, 0x00, // ----------OOO--OOOOOOO---....... - 0x00, 0x33, 0x8e, 0x00, // ----------OO--OOO---OOO--....... - 0x00, 0x63, 0x06, 0x00, // ---------OO---OO-----OO--....... - 0x00, 0xe3, 0x06, 0x00, // --------OOO---OO-----OO--....... - 0x00, 0xc3, 0x06, 0x00, // --------OO----OO-----OO--....... - 0x01, 0xc3, 0x06, 0x00, // -------OOO----OO-----OO--....... - 0x01, 0x83, 0x8e, 0x00, // -------OO-----OOO---OOO--....... - 0x03, 0x01, 0xfc, 0x00, // ------OO-------OOOOOOO---....... - 0x07, 0x00, 0xf8, 0x00, // -----OOO--------OOOOO----....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 38, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---------............ - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO--------............ - 0x1e, 0x10, 0x00, 0x00, // ---OOOO----O--------............ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------............ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------............ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------............ - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-------------............ - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO------------............ - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------............ - 0x3f, 0x81, 0xc0, 0x00, // --OOOOOOO------OOO--............ - 0x33, 0xc1, 0xc0, 0x00, // --OO--OOOO-----OOO--............ - 0x71, 0xe1, 0x80, 0x00, // -OOO---OOOO----OO---............ - 0x70, 0xf3, 0x80, 0x00, // -OOO----OOOO--OOO---............ - 0x70, 0x7f, 0x00, 0x00, // -OOO-----OOOOOOO----............ - 0x70, 0x3e, 0x00, 0x00, // -OOO------OOOOO-----............ - 0x78, 0x1e, 0x00, 0x00, // -OOOO------OOOO-----............ - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO----............ - 0x1f, 0xf7, 0x80, 0x00, // ---OOOOOOOOO-OOOO---............ - 0x07, 0xc3, 0xc0, 0x00, // -----OOOOO----OOOO--............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 39, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 40, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 41, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 42, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x62, 0x30, 0x00, 0x00, // -OO---O---OO-................... - 0x72, 0x70, 0x00, 0x00, // -OOO--O--OOO-................... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO---................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-----................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-----................... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO---................... - 0x72, 0x70, 0x00, 0x00, // -OOO--O--OOO-................... - 0x62, 0x30, 0x00, 0x00, // -OO---O---OO-................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x02, 0x00, 0x00, 0x00, // ------O------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 43, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 44, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x30, 0x00, 0x00, 0x00, // --OO----........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 45, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 46, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 47, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x01, 0x80, 0x00, 0x00, // -------OO....................... - 0x03, 0x80, 0x00, 0x00, // ------OOO....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0xc0, 0x00, 0x00, 0x00, // OO-------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 48, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 49, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-------............... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 50, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO-----............... - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO----............... - 0x20, 0x3c, 0x00, 0x00, // --O-------OOOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO----............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x07, 0x80, 0x00, 0x00, // -----OOOO--------............... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO---------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO----------............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 51, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x10, 0x70, 0x00, 0x00, // ---O-----OOO-----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO------............... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO------............... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO----............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x20, 0x78, 0x00, 0x00, // --O------OOOO----............... - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO-----............... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 52, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x03, 0x70, 0x00, 0x00, // ------OO-OOO-----............... - 0x06, 0x70, 0x00, 0x00, // -----OO--OOO-----............... - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO-----............... - 0x0c, 0x70, 0x00, 0x00, // ----OO---OOO-----............... - 0x18, 0x70, 0x00, 0x00, // ---OO----OOO-----............... - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO-----............... - 0x30, 0x70, 0x00, 0x00, // --OO-----OOO-----............... - 0x60, 0x70, 0x00, 0x00, // -OO------OOO-----............... - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO--............... - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO--............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 53, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO----............... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO----............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO------............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x10, 0x78, 0x00, 0x00, // ---O-----OOOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x20, 0x78, 0x00, 0x00, // --O------OOOO----............... - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO-----............... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 54, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---............... - 0x0f, 0x04, 0x00, 0x00, // ----OOOO-----O---............... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x18, 0x0e, 0x00, 0x00, // ---OO-------OOO--............... - 0x1c, 0x1e, 0x00, 0x00, // ---OOO-----OOOO--............... - 0x0e, 0x3c, 0x00, 0x00, // ----OOO---OOOO---............... - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO----............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 55, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0x70, 0x00, 0x00, // ---------OOO-----............... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-----............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x07, 0x80, 0x00, 0x00, // -----OOOO--------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 56, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO---............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO---............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 57, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO-----............... - 0x1e, 0x38, 0x00, 0x00, // ---OOOO---OOO----............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0c, 0x00, 0x00, // --OOO-------OO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x1e, 0x3e, 0x00, 0x00, // ---OOOO---OOOOO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x07, 0xce, 0x00, 0x00, // -----OOOOO--OOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x10, 0x78, 0x00, 0x00, // ---O-----OOOO----............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 58, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 59, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 60, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x20, 0x00, // ------------------O---.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO---------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO---------.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x00, 0x20, 0x00, // ------------------O---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 61, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 62, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x10, 0x00, 0x00, 0x00, // ---O------------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO----------.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO---.......... - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO----.......... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO-------.......... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO---------.......... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO------------.......... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------------.......... - 0x10, 0x00, 0x00, 0x00, // ---O------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 63, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x30, 0xf0, 0x00, 0x00, // --OO----OOOO--.................. - 0x20, 0x70, 0x00, 0x00, // --O------OOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x60, 0x00, 0x00, // ---------OO---.................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO---.................. - 0x01, 0x80, 0x00, 0x00, // -------OO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 64, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOO------...... - 0x03, 0xe0, 0x78, 0x00, // ------OOOOO------OOOO-----...... - 0x07, 0x80, 0x1c, 0x00, // -----OOOO----------OOO----...... - 0x0e, 0x00, 0x06, 0x00, // ----OOO--------------OO---...... - 0x0c, 0x00, 0x07, 0x00, // ----OO---------------OOO--...... - 0x18, 0x1e, 0x63, 0x00, // ---OO------OOOO--OO---OO--...... - 0x18, 0x7f, 0xe1, 0x80, // ---OO----OOOOOOOOOO----OO-...... - 0x38, 0x71, 0xe1, 0x80, // --OOO----OOO---OOOO----OO-...... - 0x30, 0xe0, 0xe1, 0x80, // --OO----OOO-----OOO----OO-...... - 0x30, 0xc0, 0x61, 0x80, // --OO----OO-------OO----OO-...... - 0x30, 0xc0, 0x61, 0x80, // --OO----OO-------OO----OO-...... - 0x30, 0xc0, 0x63, 0x80, // --OO----OO-------OO---OOO-...... - 0x30, 0xe0, 0xe3, 0x00, // --OO----OOO-----OOO---OO--...... - 0x38, 0x71, 0xee, 0x00, // --OOO----OOO---OOOO-OOO---...... - 0x18, 0x7f, 0xfc, 0x00, // ---OO----OOOOOOOOOOOOO----...... - 0x18, 0x1e, 0x70, 0x00, // ---OO------OOOO--OOO------...... - 0x0c, 0x00, 0x00, 0x00, // ----OO--------------------...... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-------------------...... - 0x07, 0x00, 0x18, 0x00, // -----OOO-----------OO-----...... - 0x03, 0xe0, 0x70, 0x00, // ------OOOOO------OOO------...... - 0x00, 0xff, 0xe0, 0x00, // --------OOOOOOOOOOO-------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 65, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 66, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-------.............. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO-----.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x38, 0x0c, 0x00, 0x00, // --OOO-------OO----.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO-----.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 67, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 68, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--------............ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO------............ - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO----............ - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO---............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO---............ - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO---............ - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO----............ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO------............ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 69, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 70, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO--................. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO--................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO---................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO---................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 71, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO------............ - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO----............ - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO---............ - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO---............ - 0x38, 0x00, 0x00, 0x00, // --OOO---------------............ - 0x38, 0x00, 0x00, 0x00, // --OOO---------------............ - 0x70, 0x00, 0x00, 0x00, // -OOO----------------............ - 0x70, 0x00, 0x00, 0x00, // -OOO----------------............ - 0x70, 0x00, 0x00, 0x00, // -OOO----------------............ - 0x70, 0x1f, 0xc0, 0x00, // -OOO-------OOOOOOO--............ - 0x70, 0x1f, 0xc0, 0x00, // -OOO-------OOOOOOO--............ - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO--............ - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x0f, 0x03, 0xc0, 0x00, // ----OOOO------OOOO--............ - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO---............ - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO-----............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 72, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO----............ - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO----............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 73, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 74, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x70, 0x00, 0x00, 0x00, // -OOO----........................ - 0xf0, 0x00, 0x00, 0x00, // OOOO----........................ - 0xc0, 0x00, 0x00, 0x00, // OO------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 75, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO-............... - 0x38, 0x1e, 0x00, 0x00, // --OOO------OOOO--............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO----............... - 0x38, 0xf0, 0x00, 0x00, // --OOO---OOOO-----............... - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO------............... - 0x3b, 0xc0, 0x00, 0x00, // --OOO-OOOO-------............... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO--------............... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO---------............... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO---------............... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO--------............... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-------............... - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO------............... - 0x38, 0xf0, 0x00, 0x00, // --OOO---OOOO-----............... - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO----............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x38, 0x1e, 0x00, 0x00, // --OOO------OOOO--............... - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO-............... - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 76, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO.................. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 77, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x3f, 0x07, 0xe0, 0x00, // --OOOOOO-----OOOOOO---.......... - 0x3f, 0x07, 0xe0, 0x00, // --OOOOOO-----OOOOOO---.......... - 0x3f, 0x07, 0xe0, 0x00, // --OOOOOO-----OOOOOO---.......... - 0x3f, 0x8f, 0xe0, 0x00, // --OOOOOOO---OOOOOOO---.......... - 0x3b, 0x8e, 0xe0, 0x00, // --OOO-OOO---OOO-OOO---.......... - 0x3b, 0x8e, 0xe0, 0x00, // --OOO-OOO---OOO-OOO---.......... - 0x3b, 0xde, 0xe0, 0x00, // --OOO-OOOO-OOOO-OOO---.......... - 0x39, 0xdc, 0xe0, 0x00, // --OOO--OOO-OOO--OOO---.......... - 0x39, 0xfc, 0xe0, 0x00, // --OOO--OOOOOOO--OOO---.......... - 0x39, 0xfc, 0xe0, 0x00, // --OOO--OOOOOOO--OOO---.......... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO---.......... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO---.......... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO---.......... - 0x38, 0x70, 0xe0, 0x00, // --OOO----OOO----OOO---.......... - 0x38, 0x70, 0xe0, 0x00, // --OOO----OOO----OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 78, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x87, 0x00, 0x00, // --OOOOOOO----OOO---............. - 0x3b, 0x87, 0x00, 0x00, // --OOO-OOO----OOO---............. - 0x3b, 0xc7, 0x00, 0x00, // --OOO-OOOO---OOO---............. - 0x39, 0xc7, 0x00, 0x00, // --OOO--OOO---OOO---............. - 0x39, 0xe7, 0x00, 0x00, // --OOO--OOOO--OOO---............. - 0x38, 0xe7, 0x00, 0x00, // --OOO---OOO--OOO---............. - 0x38, 0xf7, 0x00, 0x00, // --OOO---OOOO-OOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 79, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 80, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 81, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO------............ - 0x00, 0x0e, 0x00, 0x00, // ------------OOO-----............ - 0x00, 0x07, 0x00, 0x00, // -------------OOO----............ - 0x00, 0x03, 0x80, 0x00, // --------------OOO---............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 82, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-------.............. - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO-----.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO------.............. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-------.............. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO------.............. - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO-----.............. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO----.............. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO----.............. - 0x38, 0x1e, 0x00, 0x00, // --OOO------OOOO---.............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 83, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO---............... - 0x1e, 0x1c, 0x00, 0x00, // ---OOOO----OOO---............... - 0x3c, 0x04, 0x00, 0x00, // --OOOO-------O---............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----------............... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO--------............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x00, 0x0e, 0x00, 0x00, // ------------OOO--............... - 0x20, 0x1e, 0x00, 0x00, // --O--------OOOO--............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 84, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOO............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 85, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 86, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO---.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 87, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x70, 0x1e, 0x03, 0x80, // -OOO-------OOOO-------OOO-...... - 0x70, 0x1e, 0x07, 0x80, // -OOO-------OOOO------OOOO-...... - 0x38, 0x1e, 0x07, 0x00, // --OOO------OOOO------OOO--...... - 0x38, 0x1e, 0x07, 0x00, // --OOO------OOOO------OOO--...... - 0x38, 0x3f, 0x07, 0x00, // --OOO-----OOOOOO-----OOO--...... - 0x3c, 0x33, 0x0f, 0x00, // --OOOO----OO--OO----OOOO--...... - 0x1c, 0x33, 0x0e, 0x00, // ---OOO----OO--OO----OOO---...... - 0x1c, 0x33, 0x0e, 0x00, // ---OOO----OO--OO----OOO---...... - 0x1c, 0x73, 0x8e, 0x00, // ---OOO---OOO--OOO---OOO---...... - 0x1e, 0x61, 0x9e, 0x00, // ---OOOO--OO----OO--OOOO---...... - 0x0e, 0x61, 0x9c, 0x00, // ----OOO--OO----OO--OOO----...... - 0x0e, 0x61, 0x9c, 0x00, // ----OOO--OO----OO--OOO----...... - 0x0e, 0xe1, 0xdc, 0x00, // ----OOO-OOO----OOO-OOO----...... - 0x0f, 0xc0, 0xfc, 0x00, // ----OOOOOO------OOOOOO----...... - 0x07, 0xc0, 0xf8, 0x00, // -----OOOOO------OOOOO-----...... - 0x07, 0xc0, 0xf8, 0x00, // -----OOOOO------OOOOO-----...... - 0x07, 0xc0, 0xf8, 0x00, // -----OOOOO------OOOOO-----...... - 0x07, 0x80, 0x78, 0x00, // -----OOOO--------OOOO-----...... - 0x03, 0x80, 0x70, 0x00, // ------OOO--------OOO------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 88, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x3c, 0x07, 0x80, 0x00, // --OOOO-------OOOO-.............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO--.............. - 0x1e, 0x0e, 0x00, 0x00, // ---OOOO-----OOO---.............. - 0x0f, 0x1e, 0x00, 0x00, // ----OOOO---OOOO---.............. - 0x07, 0x3c, 0x00, 0x00, // -----OOO--OOOO----.............. - 0x07, 0xb8, 0x00, 0x00, // -----OOOO-OOO-----.............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-----.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO------.............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-----.............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO-----.............. - 0x07, 0x3c, 0x00, 0x00, // -----OOO--OOOO----.............. - 0x0f, 0x1c, 0x00, 0x00, // ----OOOO---OOO----.............. - 0x1e, 0x1e, 0x00, 0x00, // ---OOOO----OOOO---.............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO--.............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO--.............. - 0x78, 0x07, 0x80, 0x00, // -OOOO--------OOOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 89, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0xf0, 0x07, 0x80, 0x00, // OOOO---------OOOO............... - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO-................ - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO--................ - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO---................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 90, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO--.............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO---.............. - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO----.............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO-----.............. - 0x00, 0x78, 0x00, 0x00, // ---------OOOO-----.............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO--------.............. - 0x07, 0x80, 0x00, 0x00, // -----OOOO---------.............. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----------.............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----------.............. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-----------.............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO------------.............. - 0x78, 0x00, 0x00, 0x00, // -OOOO-------------.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x7f, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOO--.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 91, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 92, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xc0, 0x00, 0x00, 0x00, // OO-------....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0x60, 0x00, 0x00, 0x00, // -OO------....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x03, 0x80, 0x00, 0x00, // ------OOO....................... - 0x01, 0x80, 0x00, 0x00, // -------OO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 93, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 94, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO---------.......... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO--------.......... - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO-------.......... - 0x03, 0x87, 0x00, 0x00, // ------OOO----OOO------.......... - 0x07, 0x03, 0x80, 0x00, // -----OOO------OOO-----.......... - 0x0e, 0x01, 0xc0, 0x00, // ----OOO--------OOO----.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 95, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO................... - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO................... - - // ASCII: 96, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x38, 0x00, 0x00, 0x00, // --OOO--------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x0c, 0x00, 0x00, 0x00, // ----OO-------................... - 0x06, 0x00, 0x00, 0x00, // -----OO------................... - 0x03, 0x00, 0x00, 0x00, // ------OO-----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 97, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 98, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 99, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 100, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 101, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 102, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO...................... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO...................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO...................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 103, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO---............... - 0x10, 0x78, 0x00, 0x00, // ---O-----OOOO----............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 104, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO---................ - 0x3e, 0x38, 0x00, 0x00, // --OOOOO---OOO---................ - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 105, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 106, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x78, 0x00, 0x00, 0x00, // -OOOO--......................... - 0xf0, 0x00, 0x00, 0x00, // OOOO---......................... - 0xe0, 0x00, 0x00, 0x00, // OOO----......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 107, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO-................. - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO--................. - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO---................. - 0x3b, 0xe0, 0x00, 0x00, // --OOO-OOOOO----................. - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-----................. - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO------................. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------................. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------................. - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO------................. - 0x3b, 0xc0, 0x00, 0x00, // --OOO-OOOO-----................. - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO----................. - 0x38, 0xf0, 0x00, 0x00, // --OOO---OOOO---................. - 0x38, 0x7c, 0x00, 0x00, // --OOO----OOOOO-................. - 0x38, 0x3e, 0x00, 0x00, // --OOO-----OOOOO................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 108, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 109, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x39, 0xe0, 0xf8, 0x00, // --OOO--OOOO-----OOOOO----....... - 0x3b, 0xf9, 0xfc, 0x00, // --OOO-OOOOOOO--OOOOOOO---....... - 0x3e, 0x3b, 0x1c, 0x00, // --OOOOO---OOO-OO---OOO---....... - 0x3c, 0x1e, 0x0e, 0x00, // --OOOO-----OOOO-----OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x38, 0x1c, 0x0e, 0x00, // --OOO------OOO------OOO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 110, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO---................ - 0x3e, 0x38, 0x00, 0x00, // --OOOOO---OOO---................ - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 111, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 112, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 113, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO---............... - 0x3c, 0x7c, 0x00, 0x00, // --OOOO---OOOOO---............... - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO---............... - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 114, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO-..................... - 0x3b, 0xc0, 0x00, 0x00, // --OOO-OOOO-..................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO----..................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x38, 0x00, 0x00, 0x00, // --OOO------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 115, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----.................. - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO---.................. - 0x78, 0x20, 0x00, 0x00, // -OOOO-----O---.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x7e, 0x00, 0x00, 0x00, // -OOOOOO-------.................. - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO----.................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO---.................. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x60, 0xf0, 0x00, 0x00, // -OO-----OOOO--.................. - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO---.................. - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 116, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0xff, 0xc0, 0x00, 0x00, // OOOOOOOOOO...................... - 0xff, 0xc0, 0x00, 0x00, // OOOOOOOOOO...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO----...................... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO...................... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 117, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 118, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x0e, 0x00, 0x00, // -OOO--------OOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 119, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x70, 0x70, 0x70, 0x00, // -OOO-----OOO-----OOO-........... - 0x78, 0x70, 0xf0, 0x00, // -OOOO----OOO----OOOO-........... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO--........... - 0x38, 0xf8, 0xe0, 0x00, // --OOO---OOOOO---OOO--........... - 0x38, 0xd8, 0xe0, 0x00, // --OOO---OO-OO---OOO--........... - 0x3c, 0xd9, 0xe0, 0x00, // --OOOO--OO-OO--OOOO--........... - 0x1d, 0x8d, 0xc0, 0x00, // ---OOO-OO---OO-OOO---........... - 0x1d, 0x8d, 0xc0, 0x00, // ---OOO-OO---OO-OOO---........... - 0x1f, 0x8f, 0xc0, 0x00, // ---OOOOOO---OOOOOO---........... - 0x1f, 0x8f, 0xc0, 0x00, // ---OOOOOO---OOOOOO---........... - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO----........... - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO----........... - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 120, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x78, 0x1e, 0x00, 0x00, // -OOOO------OOOO................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x78, 0x1e, 0x00, 0x00, // -OOOO------OOOO................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 121, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x1e, 0x00, 0x00, // -OOO-------OOOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------................. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO--------................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 122, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO--.................. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO---.................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO----.................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO----.................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO-----.................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO------.................. - 0x0e, 0x00, 0x00, 0x00, // ----OOO-------.................. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-------.................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO--------.................. - 0x78, 0x00, 0x00, 0x00, // -OOOO---------.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 123, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x03, 0x80, 0x00, 0x00, // ------OOO--------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 124, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - - // ASCII: 125, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO--------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO---............... - 0x00, 0xe0, 0x00, 0x00, // --------OOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-------............... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO--------............... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO---------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 126, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x07, 0xc0, 0x20, 0x00, // -----OOOOO--------O---.......... - 0x0f, 0xf0, 0xe0, 0x00, // ----OOOOOOOO----OOO---.......... - 0x18, 0x7f, 0xc0, 0x00, // ---OO----OOOOOOOOO----.......... - 0x10, 0x0f, 0x80, 0x00, // ---O--------OOOOO-----.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 160, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 161, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 162, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x1e, 0x88, 0x00, 0x00, // ---OOOO-O---O----............... - 0x1c, 0x80, 0x00, 0x00, // ---OOO--O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x38, 0x80, 0x00, 0x00, // --OOO---O--------............... - 0x1c, 0x80, 0x00, 0x00, // ---OOO--O--------............... - 0x1e, 0x98, 0x00, 0x00, // ---OOOO-O--OO----............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 163, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO---............... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO--............... - 0x03, 0x82, 0x00, 0x00, // ------OOO-----O--............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO----............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x07, 0x00, 0x00, 0x00, // -----OOO---------............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 164, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x20, 0x02, 0x00, 0x00, // --O-----------O--............... - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO-............... - 0x3b, 0xee, 0x00, 0x00, // --OOO-OOOOO-OOO--............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x18, 0x0c, 0x00, 0x00, // ---OO-------OO---............... - 0x18, 0x0c, 0x00, 0x00, // ---OO-------OO---............... - 0x18, 0x0c, 0x00, 0x00, // ---OO-------OO---............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x3b, 0xee, 0x00, 0x00, // --OOO-OOOOO-OOO--............... - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO-............... - 0x20, 0x02, 0x00, 0x00, // --O-----------O--............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 165, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO-............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO--............... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO---............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO----............... - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO-----............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO--............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 166, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 167, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO--................... - 0x38, 0x20, 0x00, 0x00, // --OOO-----O--................... - 0x30, 0x00, 0x00, 0x00, // --OO---------................... - 0x30, 0x00, 0x00, 0x00, // --OO---------................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------................... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----................... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO----................... - 0x61, 0xe0, 0x00, 0x00, // -OO----OOOO--................... - 0x60, 0x70, 0x00, 0x00, // -OO------OOO-................... - 0x60, 0x30, 0x00, 0x00, // -OO-------OO-................... - 0x78, 0x30, 0x00, 0x00, // -OOOO-----OO-................... - 0x3c, 0x70, 0x00, 0x00, // --OOOO---OOO-................... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO--................... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO--................... - 0x00, 0x60, 0x00, 0x00, // ---------OO--................... - 0x00, 0x60, 0x00, 0x00, // ---------OO--................... - 0x20, 0xe0, 0x00, 0x00, // --O-----OOO--................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO---................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 168, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO--................... - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO--................... - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO--................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 169, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x03, 0x0f, 0x98, 0x00, // ------OO----OOOOO--OO-----...... - 0x06, 0x30, 0x4c, 0x00, // -----OO---OO-----O--OO----...... - 0x04, 0x60, 0x04, 0x00, // -----O---OO----------O----...... - 0x0c, 0x60, 0x06, 0x00, // ----OO---OO----------OO---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x08, 0xc0, 0x02, 0x00, // ----O---OO------------O---...... - 0x0c, 0x60, 0x06, 0x00, // ----OO---OO----------OO---...... - 0x04, 0x60, 0x04, 0x00, // -----O---OO----------O----...... - 0x06, 0x30, 0x4c, 0x00, // -----OO---OO-----O--OO----...... - 0x03, 0x0f, 0x98, 0x00, // ------OO----OOOOO--OO-----...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 170, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x20, 0xc0, 0x00, 0x00, // --O-----OO--.................... - 0x00, 0x60, 0x00, 0x00, // ---------OO-.................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO-.................... - 0x30, 0x60, 0x00, 0x00, // --OO-----OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0xe0, 0x00, 0x00, // -OO-----OOO-.................... - 0x31, 0xe0, 0x00, 0x00, // --OO---OOOO-.................... - 0x1f, 0x60, 0x00, 0x00, // ---OOOOO-OO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 171, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO--................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 172, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x60, 0x00, // -----------------OO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 173, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x7f, 0x00, 0x00, 0x00, // -OOOOOOO-....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 174, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x03, 0x7f, 0x18, 0x00, // ------OO-OOOOOOO---OO-----...... - 0x06, 0x61, 0xcc, 0x00, // -----OO--OO----OOO--OO----...... - 0x04, 0x60, 0xc4, 0x00, // -----O---OO-----OO---O----...... - 0x0c, 0x60, 0xc6, 0x00, // ----OO---OO-----OO---OO---...... - 0x08, 0x61, 0xc2, 0x00, // ----O----OO----OOO----O---...... - 0x08, 0x7f, 0x02, 0x00, // ----O----OOOOOOO------O---...... - 0x08, 0x67, 0x02, 0x00, // ----O----OO--OOO------O---...... - 0x08, 0x63, 0x82, 0x00, // ----O----OO---OOO-----O---...... - 0x08, 0x61, 0x82, 0x00, // ----O----OO----OO-----O---...... - 0x0c, 0x61, 0xc6, 0x00, // ----OO---OO----OOO---OO---...... - 0x04, 0x60, 0xc4, 0x00, // -----O---OO-----OO---O----...... - 0x06, 0x60, 0xcc, 0x00, // -----OO--OO-----OO--OO----...... - 0x03, 0x60, 0xf8, 0x00, // ------OO-OO-----OOOOO-----...... - 0x01, 0x80, 0x30, 0x00, // -------OO---------OO------...... - 0x00, 0xe0, 0xe0, 0x00, // --------OOO-----OOO-------...... - 0x00, 0x3f, 0x80, 0x00, // ----------OOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 175, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO--................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO--................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 176, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO----................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO---................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO---................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO---................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO---................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO----................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 177, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x1f, 0xff, 0xe0, 0x00, // ---OOOOOOOOOOOOOOOO---.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 178, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO---...................... - 0x43, 0x00, 0x00, 0x00, // -O----OO--...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x7f, 0x80, 0x00, 0x00, // -OOOOOOOO-...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 179, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO---...................... - 0x43, 0x80, 0x00, 0x00, // -O----OOO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x43, 0x00, 0x00, 0x00, // -O----OO--...................... - 0x3e, 0x00, 0x00, 0x00, // --OOOOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 180, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO--................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO---................... - 0x01, 0x80, 0x00, 0x00, // -------OO----................... - 0x03, 0x00, 0x00, 0x00, // ------OO-----................... - 0x06, 0x00, 0x00, 0x00, // -----OO------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 181, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO---............... - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO---............... - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO-............... - 0x3b, 0xcf, 0x00, 0x00, // --OOO-OOOO--OOOO-............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 182, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---............... - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO---............... - 0x1f, 0xcc, 0x00, 0x00, // ---OOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x3f, 0xcc, 0x00, 0x00, // --OOOOOOOO--OO---............... - 0x1f, 0xcc, 0x00, 0x00, // ---OOOOOOO--OO---............... - 0x0f, 0xcc, 0x00, 0x00, // ----OOOOOO--OO---............... - 0x07, 0xcc, 0x00, 0x00, // -----OOOOO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0xcc, 0x00, 0x00, // --------OO--OO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 183, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO--........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 184, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x03, 0x00, 0x00, 0x00, // ------OO-----................... - 0x01, 0x80, 0x00, 0x00, // -------OO----................... - 0x01, 0x80, 0x00, 0x00, // -------OO----................... - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 185, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---...................... - 0x36, 0x00, 0x00, 0x00, // --OO-OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 186, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----.................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO--.................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO--.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x60, 0x60, 0x00, 0x00, // -OO------OO-.................... - 0x30, 0xc0, 0x00, 0x00, // --OO----OO--.................... - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO--.................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO--.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 187, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x30, 0xc0, 0x00, 0x00, // --OO----OO------................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO--................ - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO---................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x38, 0xe0, 0x00, 0x00, // --OOO---OOO-----................ - 0x30, 0xc0, 0x00, 0x00, // --OO----OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 188, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO------....... - 0x36, 0x00, 0xc0, 0x00, // --OO-OO---------OO-------....... - 0x06, 0x01, 0xc0, 0x00, // -----OO--------OOO-------....... - 0x06, 0x03, 0x80, 0x00, // -----OO-------OOO--------....... - 0x06, 0x03, 0x00, 0x00, // -----OO-------OO---------....... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO---------....... - 0x06, 0x06, 0x00, 0x00, // -----OO------OO----------....... - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----------....... - 0x06, 0x1c, 0x06, 0x00, // -----OO----OOO-------OO--....... - 0x06, 0x18, 0x0e, 0x00, // -----OO----OO-------OOO--....... - 0x3f, 0xf8, 0x1e, 0x00, // --OOOOOOOOOOO------OOOO--....... - 0x00, 0x30, 0x36, 0x00, // ----------OO------OO-OO--....... - 0x00, 0x60, 0x66, 0x00, // ---------OO------OO--OO--....... - 0x00, 0xe0, 0x46, 0x00, // --------OOO------O---OO--....... - 0x00, 0xc0, 0xc6, 0x00, // --------OO------OO---OO--....... - 0x01, 0xc0, 0xff, 0x80, // -------OOO------OOOOOOOOO....... - 0x03, 0x80, 0x06, 0x00, // ------OOO------------OO--....... - 0x03, 0x00, 0x06, 0x00, // ------OO-------------OO--....... - 0x07, 0x00, 0x06, 0x00, // -----OOO-------------OO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 189, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO------....... - 0x36, 0x00, 0xc0, 0x00, // --OO-OO---------OO-------....... - 0x06, 0x01, 0xc0, 0x00, // -----OO--------OOO-------....... - 0x06, 0x03, 0x80, 0x00, // -----OO-------OOO--------....... - 0x06, 0x03, 0x00, 0x00, // -----OO-------OO---------....... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO---------....... - 0x06, 0x06, 0x00, 0x00, // -----OO------OO----------....... - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----------....... - 0x06, 0x1c, 0x7c, 0x00, // -----OO----OOO---OOOOO---....... - 0x06, 0x18, 0x86, 0x00, // -----OO----OO---O----OO--....... - 0x3f, 0xf8, 0x03, 0x00, // --OOOOOOOOOOO---------OO-....... - 0x00, 0x30, 0x03, 0x00, // ----------OO----------OO-....... - 0x00, 0x60, 0x07, 0x00, // ---------OO----------OOO-....... - 0x00, 0xe0, 0x06, 0x00, // --------OOO----------OO--....... - 0x00, 0xc0, 0x0c, 0x00, // --------OO----------OO---....... - 0x01, 0xc0, 0x1c, 0x00, // -------OOO---------OOO---....... - 0x03, 0x80, 0x38, 0x00, // ------OOO---------OOO----....... - 0x03, 0x00, 0x60, 0x00, // ------OO---------OO------....... - 0x07, 0x00, 0xff, 0x00, // -----OOO--------OOOOOOOO-....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 190, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x3e, 0x00, 0xe0, 0x00, // --OOOOO---------OOO------....... - 0x43, 0x80, 0xc0, 0x00, // -O----OOO-------OO-------....... - 0x01, 0x81, 0xc0, 0x00, // -------OO------OOO-------....... - 0x03, 0x83, 0x80, 0x00, // ------OOO-----OOO--------....... - 0x1e, 0x03, 0x00, 0x00, // ---OOOO-------OO---------....... - 0x03, 0x07, 0x00, 0x00, // ------OO-----OOO---------....... - 0x01, 0x86, 0x00, 0x00, // -------OO----OO----------....... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-----------....... - 0x01, 0x9c, 0x06, 0x00, // -------OO--OOO-------OO--....... - 0x43, 0x18, 0x0e, 0x00, // -O----OO---OO-------OOO--....... - 0x3e, 0x38, 0x1e, 0x00, // --OOOOO---OOO------OOOO--....... - 0x00, 0x30, 0x36, 0x00, // ----------OO------OO-OO--....... - 0x00, 0x60, 0x66, 0x00, // ---------OO------OO--OO--....... - 0x00, 0xe0, 0x46, 0x00, // --------OOO------O---OO--....... - 0x00, 0xc0, 0xc6, 0x00, // --------OO------OO---OO--....... - 0x01, 0xc0, 0xff, 0x80, // -------OOO------OOOOOOOOO....... - 0x03, 0x80, 0x06, 0x00, // ------OOO------------OO--....... - 0x03, 0x00, 0x06, 0x00, // ------OO-------------OO--....... - 0x07, 0x00, 0x06, 0x00, // -----OOO-------------OO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 191, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x03, 0x80, 0x00, 0x00, // ------OOO-----.................. - 0x07, 0x00, 0x00, 0x00, // -----OOO------.................. - 0x06, 0x00, 0x00, 0x00, // -----OO-------.................. - 0x0c, 0x00, 0x00, 0x00, // ----OO--------.................. - 0x18, 0x00, 0x00, 0x00, // ---OO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x38, 0x10, 0x00, 0x00, // --OOO------O--.................. - 0x3c, 0x30, 0x00, 0x00, // --OOOO----OO--.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 192, char width: 18 - 0x07, 0x00, 0x00, 0x00, // -----OOO----------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x01, 0x80, 0x00, 0x00, // -------OO---------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 193, char width: 18 - 0x00, 0x60, 0x00, 0x00, // ---------OO-------.............. - 0x00, 0xc0, 0x00, 0x00, // --------OO--------.............. - 0x01, 0x80, 0x00, 0x00, // -------OO---------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 194, char width: 18 - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x60, 0x00, 0x00, // ------OO-OO-------.............. - 0x06, 0x30, 0x00, 0x00, // -----OO---OO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 195, char width: 18 - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x06, 0xe0, 0x00, 0x00, // -----OO-OOO-------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 196, char width: 18 - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 197, char width: 18 - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x06, 0x70, 0x00, 0x00, // -----OO--OOO------.............. - 0x06, 0x30, 0x00, 0x00, // -----OO---OO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-------.............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO------.............. - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO------.............. - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO----.............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO---.............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO---.............. - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0x70, 0x07, 0x00, 0x00, // -OOO---------OOO--.............. - 0xe0, 0x03, 0x80, 0x00, // OOO-----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 198, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO--....... - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO--....... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-----------....... - 0x03, 0xdc, 0x00, 0x00, // ------OOOO-OOO-----------....... - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----------....... - 0x07, 0x9c, 0x00, 0x00, // -----OOOO--OOO-----------....... - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----------....... - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----------....... - 0x0f, 0x1f, 0xfc, 0x00, // ----OOOO---OOOOOOOOOOO---....... - 0x0e, 0x1f, 0xfc, 0x00, // ----OOO----OOOOOOOOOOO---....... - 0x1e, 0x1c, 0x00, 0x00, // ---OOOO----OOO-----------....... - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO-----------....... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----------....... - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----------....... - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-----------....... - 0x78, 0x1c, 0x00, 0x00, // -OOOO------OOO-----------....... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO-----------....... - 0x70, 0x1f, 0xfe, 0x00, // -OOO-------OOOOOOOOOOOO--....... - 0xe0, 0x1f, 0xfe, 0x00, // OOO--------OOOOOOOOOOOO--....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 199, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x70, 0x00, 0x00, 0x00, // -OOO--------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x38, 0x00, 0x00, 0x00, // --OOO-------------.............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO--.............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO--.............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO---.............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-----.............. - 0x00, 0x30, 0x00, 0x00, // ----------OO------.............. - 0x00, 0x18, 0x00, 0x00, // -----------OO-----.............. - 0x00, 0x18, 0x00, 0x00, // -----------OO-----.............. - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO-----.............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 200, char width: 16 - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 201, char width: 16 - 0x00, 0x60, 0x00, 0x00, // ---------OO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 202, char width: 16 - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-----................ - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----................ - 0x06, 0x18, 0x00, 0x00, // -----OO----OO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 203, char width: 16 - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 204, char width: 8 - 0xe0, 0x00, 0x00, 0x00, // OOO-----........................ - 0x70, 0x00, 0x00, 0x00, // -OOO----........................ - 0x30, 0x00, 0x00, 0x00, // --OO----........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 205, char width: 8 - 0x0c, 0x00, 0x00, 0x00, // ----OO--........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x30, 0x00, 0x00, 0x00, // --OO----........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 206, char width: 8 - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x6c, 0x00, 0x00, 0x00, // -OO-OO--........................ - 0xc7, 0x00, 0x00, 0x00, // OO---OOO........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 207, char width: 8 - 0xee, 0x00, 0x00, 0x00, // OOO-OOO-........................ - 0xee, 0x00, 0x00, 0x00, // OOO-OOO-........................ - 0xee, 0x00, 0x00, 0x00, // OOO-OOO-........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x38, 0x00, 0x00, 0x00, // --OOO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 208, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-------............ - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO-----............ - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO---............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0xff, 0xc0, 0xe0, 0x00, // OOOOOOOOOO------OOO-............ - 0xff, 0xc0, 0xe0, 0x00, // OOOOOOOOOO------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO-............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO--............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO---............ - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO-----............ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 209, char width: 19 - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x06, 0x70, 0x00, 0x00, // -----OO--OOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x07, 0x00, 0x00, // --OOOOOO-----OOO---............. - 0x3f, 0x87, 0x00, 0x00, // --OOOOOOO----OOO---............. - 0x3b, 0x87, 0x00, 0x00, // --OOO-OOO----OOO---............. - 0x3b, 0xc7, 0x00, 0x00, // --OOO-OOOO---OOO---............. - 0x39, 0xc7, 0x00, 0x00, // --OOO--OOO---OOO---............. - 0x39, 0xe7, 0x00, 0x00, // --OOO--OOOO--OOO---............. - 0x38, 0xe7, 0x00, 0x00, // --OOO---OOO--OOO---............. - 0x38, 0xf7, 0x00, 0x00, // --OOO---OOOO-OOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x7f, 0x00, 0x00, // --OOO----OOOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x3f, 0x00, 0x00, // --OOO-----OOOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 210, char width: 20 - 0x01, 0xc0, 0x00, 0x00, // -------OOO----------............ - 0x00, 0xe0, 0x00, 0x00, // --------OOO---------............ - 0x00, 0x60, 0x00, 0x00, // ---------OO---------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 211, char width: 20 - 0x00, 0x18, 0x00, 0x00, // -----------OO-------............ - 0x00, 0x30, 0x00, 0x00, // ----------OO--------............ - 0x00, 0x60, 0x00, 0x00, // ---------OO---------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 212, char width: 20 - 0x00, 0xf0, 0x00, 0x00, // --------OOOO--------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 213, char width: 20 - 0x01, 0xcc, 0x00, 0x00, // -------OOO--OO------............ - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO------............ - 0x03, 0x38, 0x00, 0x00, // ------OO--OOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 214, char width: 20 - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO------............ - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO------............ - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x70, 0x00, 0xe0, 0x00, // -OOO------------OOO-............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO----............ - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO-----............ - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 215, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x04, 0x00, 0x40, 0x00, // -----O-----------O----.......... - 0x0e, 0x00, 0xe0, 0x00, // ----OOO---------OOO---.......... - 0x07, 0x01, 0xc0, 0x00, // -----OOO-------OOO----.......... - 0x03, 0x83, 0x80, 0x00, // ------OOO-----OOO-----.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x00, 0xee, 0x00, 0x00, // --------OOO-OOO-------.......... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO--------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO--------.......... - 0x00, 0xee, 0x00, 0x00, // --------OOO-OOO-------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x03, 0x83, 0x80, 0x00, // ------OOO-----OOO-----.......... - 0x07, 0x01, 0xc0, 0x00, // -----OOO-------OOO----.......... - 0x0e, 0x00, 0xe0, 0x00, // ----OOO---------OOO---.......... - 0x04, 0x00, 0x40, 0x00, // -----O-----------O----.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 216, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x01, 0xf8, 0x60, 0x00, // -------OOOOOO----OO-............ - 0x07, 0xfe, 0xc0, 0x00, // -----OOOOOOOOOO-OO--............ - 0x1f, 0x0f, 0x80, 0x00, // ---OOOOO----OOOOO---............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x38, 0x07, 0xc0, 0x00, // --OOO--------OOOOO--............ - 0x38, 0x0f, 0xc0, 0x00, // --OOO-------OOOOOO--............ - 0x70, 0x1c, 0xe0, 0x00, // -OOO-------OOO--OOO-............ - 0x70, 0x18, 0xe0, 0x00, // -OOO-------OO---OOO-............ - 0x70, 0x30, 0xe0, 0x00, // -OOO------OO----OOO-............ - 0x70, 0x60, 0xe0, 0x00, // -OOO-----OO-----OOO-............ - 0x70, 0xc0, 0xe0, 0x00, // -OOO----OO------OOO-............ - 0x71, 0x80, 0xe0, 0x00, // -OOO---OO-------OOO-............ - 0x73, 0x80, 0xe0, 0x00, // -OOO--OOO-------OOO-............ - 0x3f, 0x01, 0xc0, 0x00, // --OOOOOO-------OOO--............ - 0x3e, 0x01, 0xc0, 0x00, // --OOOOO--------OOO--............ - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO---............ - 0x1f, 0x0f, 0x80, 0x00, // ---OOOOO----OOOOO---............ - 0x37, 0xfe, 0x00, 0x00, // --OO-OOOOOOOOOO-----............ - 0x61, 0xf8, 0x00, 0x00, // -OO----OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 217, char width: 19 - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 218, char width: 19 - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 219, char width: 19 - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x03, 0x0c, 0x00, 0x00, // ------OO----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 220, char width: 19 - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 221, char width: 16 - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0xf0, 0x07, 0x80, 0x00, // OOOO---------OOOO............... - 0x78, 0x0f, 0x00, 0x00, // -OOOO-------OOOO................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x3c, 0x1e, 0x00, 0x00, // --OOOO-----OOOO-................ - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO--................ - 0x0f, 0x78, 0x00, 0x00, // ----OOOO-OOOO---................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 222, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 223, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0xf8, 0x00, 0x00, // --OOO---OOOOO---................ - 0x39, 0xe0, 0x00, 0x00, // --OOO--OOOO-----................ - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO------................ - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO------................ - 0x39, 0xc0, 0x00, 0x00, // --OOO--OOO------................ - 0x38, 0xc0, 0x00, 0x00, // --OOO---OO------................ - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO----................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO-................ - 0x3a, 0x1e, 0x00, 0x00, // --OOO-O----OOOO-................ - 0x3b, 0xfc, 0x00, 0x00, // --OOO-OOOOOOOO--................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 224, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x06, 0x00, 0x00, 0x00, // -----OO---------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 225, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 226, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x07, 0x80, 0x00, 0x00, // -----OOOO-------................ - 0x07, 0x80, 0x00, 0x00, // -----OOOO-------................ - 0x0c, 0xc0, 0x00, 0x00, // ----OO--OO------................ - 0x18, 0x60, 0x00, 0x00, // ---OO----OO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 227, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x60, 0x00, 0x00, // ----OOO--OO-----................ - 0x1e, 0x60, 0x00, 0x00, // ---OOOO--OO-----................ - 0x19, 0xe0, 0x00, 0x00, // ---OO--OOOO-----................ - 0x19, 0xc0, 0x00, 0x00, // ---OO--OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 228, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO-----................ - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO-----................ - 0x1c, 0xe0, 0x00, 0x00, // ---OOO--OOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 229, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x0c, 0xe0, 0x00, 0x00, // ----OO--OOO-----................ - 0x0c, 0x60, 0x00, 0x00, // ----OO---OO-----................ - 0x0c, 0xe0, 0x00, 0x00, // ----OO--OOO-----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-----................ - 0x20, 0xf0, 0x00, 0x00, // --O-----OOOO----................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x78, 0x38, 0x00, 0x00, // -OOOO-----OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO---................ - 0x70, 0x78, 0x00, 0x00, // -OOO-----OOOO---................ - 0x78, 0xf8, 0x00, 0x00, // -OOOO---OOOOO---................ - 0x3f, 0xb8, 0x00, 0x00, // --OOOOOOO-OOO---................ - 0x1f, 0x38, 0x00, 0x00, // ---OOOOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 230, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xc3, 0xf0, 0x00, // ---OOOOOOO----OOOOOO------...... - 0x3f, 0xff, 0xf8, 0x00, // --OOOOOOOOOOOOOOOOOOO-----...... - 0x20, 0xfe, 0x3c, 0x00, // --O-----OOOOOOO---OOOO----...... - 0x00, 0x3c, 0x1c, 0x00, // ----------OOOO-----OOO----...... - 0x00, 0x38, 0x0e, 0x00, // ----------OOO-------OOO---...... - 0x0f, 0xf8, 0x0e, 0x00, // ----OOOOOOOOO-------OOO---...... - 0x3f, 0xff, 0xfe, 0x00, // --OOOOOOOOOOOOOOOOOOOOO---...... - 0x78, 0x3f, 0xfe, 0x00, // -OOOO-----OOOOOOOOOOOOO---...... - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO-------------...... - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO-------------...... - 0x70, 0x7c, 0x00, 0x00, // -OOO-----OOOOO------------...... - 0x78, 0xfe, 0x04, 0x00, // -OOOO---OOOOOOO------O----...... - 0x3f, 0xcf, 0xfc, 0x00, // --OOOOOOOO--OOOOOOOOOO----...... - 0x1f, 0x03, 0xf0, 0x00, // ---OOOOO------OOOOOO------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 231, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x70, 0x00, 0x00, 0x00, // -OOO----------.................. - 0x38, 0x00, 0x00, 0x00, // --OOO---------.................. - 0x3c, 0x10, 0x00, 0x00, // --OOOO-----O--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO---.................. - 0x00, 0xc0, 0x00, 0x00, // --------OO----.................. - 0x00, 0x60, 0x00, 0x00, // ---------OO---.................. - 0x00, 0x60, 0x00, 0x00, // ---------OO---.................. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO---.................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 232, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 233, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0x60, 0x00, 0x00, // ---------OO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 234, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x06, 0xc0, 0x00, 0x00, // -----OO-OO------................ - 0x0c, 0x60, 0x00, 0x00, // ----OO---OO-----................ - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 235, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x7f, 0xfc, 0x00, 0x00, // -OOOOOOOOOOOOO--................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x08, 0x00, 0x00, // --OOOO------O---................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 236, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0xc0, 0x00, 0x00, 0x00, // OO-----......................... - 0xe0, 0x00, 0x00, 0x00, // OOO----......................... - 0x60, 0x00, 0x00, 0x00, // -OO----......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x18, 0x00, 0x00, 0x00, // ---OO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 237, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x07, 0x00, 0x00, 0x00, // -----OOO........................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO......................... - 0x0c, 0x00, 0x00, 0x00, // ----OO-......................... - 0x18, 0x00, 0x00, 0x00, // ---OO--......................... - 0x30, 0x00, 0x00, 0x00, // --OO---......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 238, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x7c, 0x00, 0x00, 0x00, // -OOOOO-......................... - 0x6c, 0x00, 0x00, 0x00, // -OO-OO-......................... - 0xc6, 0x00, 0x00, 0x00, // OO---OO......................... - 0x83, 0x00, 0x00, 0x00, // O-----OO........................ - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 239, char width: 7 - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0xee, 0x00, 0x00, 0x00, // OOO-OOO......................... - 0xee, 0x00, 0x00, 0x00, // OOO-OOO......................... - 0xee, 0x00, 0x00, 0x00, // OOO-OOO......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x38, 0x00, 0x00, 0x00, // --OOO--......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - 0x00, 0x00, 0x00, 0x00, // -------......................... - - // ASCII: 240, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x07, 0x70, 0x00, 0x00, // -----OOO-OOO----................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-------................ - 0x19, 0xc0, 0x00, 0x00, // ---OO--OOO------................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x38, 0x00, 0x00, // --OOOO----OOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 241, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0x30, 0x00, 0x00, // -----OOO--OO----................ - 0x0f, 0x30, 0x00, 0x00, // ----OOOO--OO----................ - 0x0c, 0xf0, 0x00, 0x00, // ----OO--OOOO----................ - 0x0c, 0xe0, 0x00, 0x00, // ----OO--OOO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO----................ - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO---................ - 0x3e, 0x38, 0x00, 0x00, // --OOOOO---OOO---................ - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 242, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x06, 0x00, 0x00, 0x00, // -----OO---------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 243, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 244, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x06, 0xc0, 0x00, 0x00, // -----OO-OO------................ - 0x04, 0x40, 0x00, 0x00, // -----O---O------................ - 0x0c, 0x60, 0x00, 0x00, // ----OO---OO-----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 245, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x06, 0x60, 0x00, 0x00, // -----OO--OO-----................ - 0x0f, 0x60, 0x00, 0x00, // ----OOOO-OO-----................ - 0x0d, 0xe0, 0x00, 0x00, // ----OO-OOOO-----................ - 0x0c, 0xc0, 0x00, 0x00, // ----OO--OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 246, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO--................ - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO----................ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 247, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO--.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 248, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x04, 0x00, 0x00, // -------------O--................ - 0x07, 0xcc, 0x00, 0x00, // -----OOOOO--OO--................ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x38, 0x78, 0x00, 0x00, // --OOO----OOOO---................ - 0x70, 0x7c, 0x00, 0x00, // -OOO-----OOOOO--................ - 0x70, 0xdc, 0x00, 0x00, // -OOO----OO-OOO--................ - 0x71, 0x9c, 0x00, 0x00, // -OOO---OO--OOO--................ - 0x73, 0x1c, 0x00, 0x00, // -OOO--OO---OOO--................ - 0x76, 0x1c, 0x00, 0x00, // -OOO-OO----OOO--................ - 0x7c, 0x1c, 0x00, 0x00, // -OOOOO-----OOO--................ - 0x3c, 0x38, 0x00, 0x00, // --OOOO----OOO---................ - 0x3c, 0x78, 0x00, 0x00, // --OOOO---OOOO---................ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO----................ - 0x67, 0xc0, 0x00, 0x00, // -OO--OOOOO------................ - 0x40, 0x00, 0x00, 0x00, // -O--------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 249, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x03, 0x00, 0x00, 0x00, // ------OO--------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 250, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0x60, 0x00, 0x00, // ---------OO-----................ - 0x00, 0xc0, 0x00, 0x00, // --------OO------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 251, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x01, 0x80, 0x00, 0x00, // -------OO-------................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x06, 0x60, 0x00, 0x00, // -----OO--OO-----................ - 0x0c, 0x30, 0x00, 0x00, // ----OO----OO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 252, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO----................ - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO----................ - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO--................ - 0x1f, 0xdc, 0x00, 0x00, // ---OOOOOOO-OOO--................ - 0x0f, 0x9c, 0x00, 0x00, // ----OOOOO--OOO--................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 253, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO---................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO----................. - 0x00, 0xc0, 0x00, 0x00, // --------OO-----................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x03, 0x00, 0x00, 0x00, // ------OO-------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x1e, 0x00, 0x00, // -OOO-------OOOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------................. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO--------................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 254, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO--............... - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO---............... - 0x3e, 0x3c, 0x00, 0x00, // --OOOOO---OOOO---............... - 0x3b, 0xf8, 0x00, 0x00, // --OOO-OOOOOOO----............... - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO-----............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 255, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x0e, 0xe0, 0x00, 0x00, // ----OOO-OOO----................. - 0x0e, 0xe0, 0x00, 0x00, // ----OOO-OOO----................. - 0x0e, 0xe0, 0x00, 0x00, // ----OOO-OOO----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x70, 0x1e, 0x00, 0x00, // -OOO-------OOOO................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x38, 0x1c, 0x00, 0x00, // --OOO------OOO-................. - 0x3c, 0x3c, 0x00, 0x00, // --OOOO----OOOO-................. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO--................. - 0x1e, 0x78, 0x00, 0x00, // ---OOOO--OOOO--................. - 0x0e, 0x70, 0x00, 0x00, // ----OOO--OOO---................. - 0x0e, 0xf0, 0x00, 0x00, // ----OOO-OOOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0x80, 0x00, 0x00, // -----OOOO------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------................. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO--------................. - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. -}; - -static const uint8_t dejavu_30_widths[224] = -{ - 8, 10, 12, 22, 17, 25, 20, 7, - 10, 10, 13, 22, 8, 9, 8, 9, - 17, 17, 17, 17, 17, 17, 17, 17, - 17, 17, 9, 9, 22, 22, 22, 14, - 26, 18, 18, 18, 20, 16, 15, 20, - 20, 8, 8, 17, 14, 22, 19, 20, - 16, 20, 18, 17, 16, 19, 18, 26, - 18, 16, 18, 10, 9, 10, 22, 13, - 13, 16, 17, 14, 17, 16, 9, 17, - 16, 7, 7, 15, 7, 25, 16, 16, - 17, 17, 11, 14, 10, 16, 15, 21, - 15, 15, 14, 17, 9, 17, 22, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 8, 8, 8, - 8, 10, 17, 17, 17, 17, 9, 13, - 13, 26, 12, 16, 22, 9, 26, 13, - 13, 22, 10, 10, 13, 17, 17, 8, - 13, 10, 12, 16, 25, 25, 25, 14, - 18, 18, 18, 18, 18, 18, 25, 18, - 16, 16, 16, 16, 8, 8, 8, 8, - 20, 19, 20, 20, 20, 20, 20, 22, - 20, 19, 19, 19, 19, 16, 16, 16, - 16, 16, 16, 16, 16, 16, 26, 14, - 16, 16, 16, 16, 7, 7, 7, 7, - 16, 16, 16, 16, 16, 16, 16, 22, - 16, 16, 16, 16, 16, 15, 17, 15, -}; - -static const font_t dejavu_30_dsc = -{ - 224, // Letter count - 32, // First ascii code - 4, // Letters width (bytes) - 30, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_30_widths, - dejavu_30_bitmaps -}; - -const font_t * dejavu_30_get_dsc(void) -{ - return &dejavu_30_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_30.h b/lv_misc/fonts/dejavu_30.h deleted file mode 100644 index 36e6d5b25..000000000 --- a/lv_misc/fonts/dejavu_30.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_30_H -#define DEJAVU_30_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_30 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_30_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_40.c b/lv_misc/fonts/dejavu_40.c deleted file mode 100644 index 1a34d8296..000000000 --- a/lv_misc/fonts/dejavu_40.c +++ /dev/null @@ -1,9500 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_40 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_40_bitmaps[35840] = -{ - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 33, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 34, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO---.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 35, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x18, 0x30, 0x00, // -----------OO-----OO------...... - 0x00, 0x18, 0x70, 0x00, // -----------OO----OOO------...... - 0x00, 0x38, 0x70, 0x00, // ----------OOO----OOO------...... - 0x00, 0x38, 0x60, 0x00, // ----------OOO----OO-------...... - 0x00, 0x30, 0x60, 0x00, // ----------OO-----OO-------...... - 0x00, 0x30, 0xe0, 0x00, // ----------OO----OOO-------...... - 0x0f, 0xff, 0xfe, 0x00, // ----OOOOOOOOOOOOOOOOOOO---...... - 0x0f, 0xff, 0xfe, 0x00, // ----OOOOOOOOOOOOOOOOOOO---...... - 0x0f, 0xff, 0xfe, 0x00, // ----OOOOOOOOOOOOOOOOOOO---...... - 0x00, 0x60, 0xc0, 0x00, // ---------OO-----OO--------...... - 0x00, 0x61, 0xc0, 0x00, // ---------OO----OOO--------...... - 0x00, 0xe1, 0xc0, 0x00, // --------OOO----OOO--------...... - 0x00, 0xe1, 0x80, 0x00, // --------OOO----OO---------...... - 0x00, 0xc1, 0x80, 0x00, // --------OO-----OO---------...... - 0x00, 0xc3, 0x80, 0x00, // --------OO----OOO---------...... - 0x3f, 0xff, 0xfc, 0x00, // --OOOOOOOOOOOOOOOOOOOO----...... - 0x3f, 0xff, 0xfc, 0x00, // --OOOOOOOOOOOOOOOOOOOO----...... - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO----------...... - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO----------...... - 0x01, 0x87, 0x00, 0x00, // -------OO----OOO----------...... - 0x03, 0x86, 0x00, 0x00, // ------OOO----OO-----------...... - 0x03, 0x86, 0x00, 0x00, // ------OOO----OO-----------...... - 0x03, 0x06, 0x00, 0x00, // ------OO-----OO-----------...... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 36, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO-----............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0x5f, 0x00, 0x00, // ----OOOO-O-OOOOO---............. - 0x1c, 0x41, 0x00, 0x00, // ---OOO---O-----O---............. - 0x1c, 0x40, 0x00, 0x00, // ---OOO---O---------............. - 0x18, 0x40, 0x00, 0x00, // ---OO----O---------............. - 0x18, 0x40, 0x00, 0x00, // ---OO----O---------............. - 0x1c, 0x40, 0x00, 0x00, // ---OOO---O---------............. - 0x1e, 0x40, 0x00, 0x00, // ---OOOO--O---------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO----............. - 0x00, 0x5f, 0x00, 0x00, // ---------O-OOOOO---............. - 0x00, 0x47, 0x80, 0x00, // ---------O---OOOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x00, 0x43, 0x80, 0x00, // ---------O----OOO--............. - 0x10, 0x47, 0x00, 0x00, // ---O-----O---OOO---............. - 0x1e, 0x5f, 0x00, 0x00, // ---OOOO--O-OOOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 37, char width: 29 - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x0f, 0x80, 0x0c, 0x00, // ----OOOOO-----------OO-------... - 0x1f, 0xe0, 0x1c, 0x00, // ---OOOOOOOO--------OOO-------... - 0x38, 0xe0, 0x18, 0x00, // --OOO---OOO--------OO--------... - 0x38, 0x70, 0x38, 0x00, // --OOO----OOO------OOO--------... - 0x30, 0x70, 0x30, 0x00, // --OO-----OOO------OO---------... - 0x30, 0x30, 0x70, 0x00, // --OO------OO-----OOO---------... - 0x30, 0x30, 0x60, 0x00, // --OO------OO-----OO----------... - 0x30, 0x30, 0xe0, 0x00, // --OO------OO----OOO----------... - 0x30, 0x70, 0xc0, 0x00, // --OO-----OOO----OO-----------... - 0x38, 0x71, 0x80, 0x00, // --OOO----OOO---OO------------... - 0x38, 0xe3, 0x80, 0x00, // --OOO---OOO---OOO------------... - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO-------------... - 0x0f, 0xc7, 0x0f, 0x00, // ----OOOOOO---OOO----OOOO-----... - 0x00, 0x06, 0x1f, 0xc0, // -------------OO----OOOOOOO---... - 0x00, 0x0e, 0x38, 0xc0, // ------------OOO---OOO---OO---... - 0x00, 0x0c, 0x30, 0xe0, // ------------OO----OO----OOO--... - 0x00, 0x1c, 0x70, 0x60, // -----------OOO---OOO-----OO--... - 0x00, 0x18, 0x70, 0x60, // -----------OO----OOO-----OO--... - 0x00, 0x38, 0x60, 0x60, // ----------OOO----OO------OO--... - 0x00, 0x30, 0x60, 0x60, // ----------OO-----OO------OO--... - 0x00, 0x60, 0x70, 0x60, // ---------OO------OOO-----OO--... - 0x00, 0x60, 0x70, 0x60, // ---------OO------OOO-----OO--... - 0x00, 0xc0, 0x30, 0xe0, // --------OO--------OO----OOO--... - 0x01, 0xc0, 0x3f, 0xc0, // -------OOO--------OOOOOOOO---... - 0x01, 0x80, 0x1f, 0x80, // -------OO----------OOOOOO----... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - 0x00, 0x00, 0x00, 0x00, // -----------------------------... - - // ASCII: 38, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO----------........ - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO--------........ - 0x07, 0xdf, 0x00, 0x00, // -----OOOOO-OOOOO--------........ - 0x07, 0x01, 0x00, 0x00, // -----OOO-------O--------........ - 0x07, 0x00, 0x00, 0x00, // -----OOO----------------........ - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----------------........ - 0x06, 0x00, 0x00, 0x00, // -----OO-----------------........ - 0x07, 0x00, 0x00, 0x00, // -----OOO----------------........ - 0x07, 0x00, 0x00, 0x00, // -----OOO----------------........ - 0x03, 0x80, 0x00, 0x00, // ------OOO---------------........ - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO--------------........ - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO-------------........ - 0x1e, 0xf0, 0x1c, 0x00, // ---OOOO-OOOO-------OOO--........ - 0x1c, 0x78, 0x1c, 0x00, // ---OOO---OOOO------OOO--........ - 0x38, 0x3c, 0x18, 0x00, // --OOO-----OOOO-----OO---........ - 0x38, 0x1e, 0x38, 0x00, // --OOO------OOOO---OOO---........ - 0x38, 0x0e, 0x38, 0x00, // --OOO-------OOO---OOO---........ - 0x38, 0x07, 0x30, 0x00, // --OOO--------OOO--OO----........ - 0x38, 0x07, 0xf0, 0x00, // --OOO--------OOOOOOO----........ - 0x38, 0x03, 0xe0, 0x00, // --OOO---------OOOOO-----........ - 0x3c, 0x01, 0xe0, 0x00, // --OOOO---------OOOO-----........ - 0x1e, 0x03, 0xf0, 0x00, // ---OOOO-------OOOOOO----........ - 0x0f, 0x8f, 0xf8, 0x00, // ----OOOOO---OOOOOOOOO---........ - 0x0f, 0xff, 0x3c, 0x00, // ----OOOOOOOOOOOO--OOOO--........ - 0x03, 0xfc, 0x1c, 0x00, // ------OOOOOOOO-----OOO--........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 39, char width: 8 - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x18, 0x00, 0x00, 0x00, // ---OO---........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - 0x00, 0x00, 0x00, 0x00, // --------........................ - - // ASCII: 40, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 41, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x03, 0x80, 0x00, 0x00, // ------OOO---.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x0c, 0x00, 0x00, 0x00, // ----OO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 42, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x61, 0x8c, 0x00, 0x00, // -OO----OO---OO-................. - 0x79, 0x9c, 0x00, 0x00, // -OOOO--OO--OOO-................. - 0x1d, 0xf0, 0x00, 0x00, // ---OOO-OOOOO---................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO----................. - 0x1d, 0xf0, 0x00, 0x00, // ---OOO-OOOOO---................. - 0x79, 0x9c, 0x00, 0x00, // -OOOO--OO--OOO-................. - 0x61, 0x8c, 0x00, 0x00, // -OO----OO---OO-................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 43, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 44, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 45, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 46, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 47, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0xc0, 0x00, 0x00, // --------OO...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x60, 0x00, 0x00, 0x00, // -OO-------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 48, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xbe, 0x00, 0x00, // ----OOOOO-OOOOO----............. - 0x0e, 0x0f, 0x00, 0x00, // ----OOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x0e, 0x0f, 0x00, 0x00, // ----OOO-----OOOO---............. - 0x0f, 0x1e, 0x00, 0x00, // ----OOOO---OOOO----............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 49, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-------............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-------............. - 0x1f, 0x70, 0x00, 0x00, // ---OOOOO-OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 50, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO----............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x20, 0x07, 0x00, 0x00, // --O----------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x78, 0x00, 0x00, // ---------OOOO------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---------............. - 0x07, 0x80, 0x00, 0x00, // -----OOOO----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 51, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x10, 0x0f, 0x00, 0x00, // ---O--------OOOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO----............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x00, 0x1f, 0x00, 0x00, // -----------OOOOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x20, 0x0f, 0x00, 0x00, // --O---------OOOO---............. - 0x3e, 0x3f, 0x00, 0x00, // --OOOOO---OOOOOO---............. - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO----............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 52, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO----............. - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO----............. - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO----............. - 0x00, 0x6e, 0x00, 0x00, // ---------OO-OOO----............. - 0x00, 0xee, 0x00, 0x00, // --------OOO-OOO----............. - 0x00, 0xce, 0x00, 0x00, // --------OO--OOO----............. - 0x01, 0xce, 0x00, 0x00, // -------OOO--OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x06, 0x0e, 0x00, 0x00, // -----OO-----OOO----............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO----............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO----............. - 0x38, 0x0e, 0x00, 0x00, // --OOO-------OOO----............. - 0x30, 0x0e, 0x00, 0x00, // --OO--------OOO----............. - 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOO-............. - 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOO-............. - 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOO-............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 53, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0x7e, 0x00, 0x00, // ---OOOOO-OOOOOO----............. - 0x10, 0x0f, 0x00, 0x00, // ---O--------OOOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x20, 0x0f, 0x00, 0x00, // --O---------OOOO---............. - 0x3e, 0x7e, 0x00, 0x00, // --OOOOO--OOOOOO----............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 54, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xfe, 0x00, 0x00, // --------OOOOOOO----............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0x01, 0x00, 0x00, // ----OOOO-------O---............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------............. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x39, 0xfc, 0x00, 0x00, // --OOO--OOOOOOO-----............. - 0x3b, 0xfe, 0x00, 0x00, // --OOO-OOOOOOOOO----............. - 0x3f, 0x9f, 0x00, 0x00, // --OOOOOOO--OOOOO---............. - 0x3e, 0x07, 0x80, 0x00, // --OOOOO------OOOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x3c, 0x03, 0xc0, 0x00, // --OOOO--------OOOO-............. - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO--............. - 0x0f, 0x0f, 0x00, 0x00, // ----OOOO----OOOO---............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 55, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x0e, 0x00, 0x00, // ------------OOO----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 56, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x0f, 0xbf, 0x00, 0x00, // ----OOOOO-OOOOOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x0f, 0xbe, 0x00, 0x00, // ----OOOOO-OOOOO----............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0x1f, 0x00, 0x00, // ----OOOO---OOOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x03, 0x80, 0x00, // --OOOO--------OOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 57, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xbe, 0x00, 0x00, // ----OOOOO-OOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x3c, 0x07, 0x80, 0x00, // --OOOO-------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x00, 0xc3, 0x80, 0x00, // --------OO----OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO----............. - 0x1e, 0x7c, 0x00, 0x00, // ---OOOO--OOOOO-----............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO------............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 58, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 59, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 60, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x1c, 0x00, // -------------------OOO----...... - 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO----...... - 0x00, 0x03, 0xfc, 0x00, // --------------OOOOOOOO----...... - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO-------...... - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO---------...... - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO------------...... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO--------------...... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------------...... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO-------------------...... - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------------...... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO--------------...... - 0x00, 0xfe, 0x00, 0x00, // --------OOOOOOO-----------...... - 0x00, 0x3f, 0xc0, 0x00, // ----------OOOOOOOO--------...... - 0x00, 0x07, 0xf0, 0x00, // -------------OOOOOOO------...... - 0x00, 0x01, 0xfc, 0x00, // ---------------OOOOOOO----...... - 0x00, 0x00, 0x3c, 0x00, // ------------------OOOO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 61, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 62, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x10, 0x00, 0x00, 0x00, // ---O----------------------...... - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------------...... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------------...... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO---------------...... - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO------------...... - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO----------...... - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-------...... - 0x00, 0x03, 0xf8, 0x00, // --------------OOOOOOO-----...... - 0x00, 0x00, 0xfc, 0x00, // ----------------OOOOOO----...... - 0x00, 0x00, 0x3c, 0x00, // ------------------OOOO----...... - 0x00, 0x00, 0xfc, 0x00, // ----------------OOOOOO----...... - 0x00, 0x07, 0xf0, 0x00, // -------------OOOOOOO------...... - 0x00, 0x1f, 0xc0, 0x00, // -----------OOOOOOO--------...... - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO----------...... - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-------------...... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---------------...... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO------------------...... - 0x1c, 0x00, 0x00, 0x00, // ---OOO--------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 63, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO-----................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3e, 0xf8, 0x00, 0x00, // --OOOOO-OOOOO---................ - 0x30, 0x3c, 0x00, 0x00, // --OO------OOOO--................ - 0x20, 0x1c, 0x00, 0x00, // --O--------OOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x78, 0x00, 0x00, // ---------OOOO---................ - 0x00, 0xf0, 0x00, 0x00, // --------OOOO----................ - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-----................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 64, char width: 31 - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x3f, 0xfc, 0x00, // ----------OOOOOOOOOOOO---------. - 0x00, 0xfe, 0xfe, 0x00, // --------OOOOOOO-OOOOOOO--------. - 0x01, 0xe0, 0x0f, 0x00, // -------OOOO---------OOOO-------. - 0x03, 0x80, 0x03, 0x80, // ------OOO-------------OOO------. - 0x07, 0x00, 0x01, 0xc0, // -----OOO---------------OOO-----. - 0x0e, 0x00, 0x00, 0xe0, // ----OOO-----------------OOO----. - 0x0c, 0x00, 0x00, 0x60, // ----OO-------------------OO----. - 0x1c, 0x0f, 0xcc, 0x70, // ---OOO------OOOOOO--OO---OOO---. - 0x18, 0x1f, 0xec, 0x30, // ---OO------OOOOOOOO-OO----OO---. - 0x18, 0x3c, 0x7c, 0x30, // ---OO-----OOOO---OOOOO----OO---. - 0x38, 0x30, 0x3c, 0x30, // --OOO-----OO------OOOO----OO---. - 0x30, 0x70, 0x1c, 0x30, // --OO-----OOO-------OOO----OO---. - 0x30, 0x70, 0x1c, 0x30, // --OO-----OOO-------OOO----OO---. - 0x30, 0x60, 0x1c, 0x30, // --OO-----OO--------OOO----OO---. - 0x30, 0x60, 0x1c, 0x30, // --OO-----OO--------OOO----OO---. - 0x30, 0x60, 0x1c, 0x30, // --OO-----OO--------OOO----OO---. - 0x30, 0x70, 0x1c, 0x70, // --OO-----OOO-------OOO---OOO---. - 0x38, 0x30, 0x3c, 0x60, // --OOO-----OO------OOOO---OO----. - 0x18, 0x38, 0x3d, 0xe0, // ---OO-----OOO-----OOOO-OOOO----. - 0x18, 0x1f, 0xef, 0xc0, // ---OO------OOOOOOOO-OOOOOO-----. - 0x1c, 0x0f, 0xcf, 0x00, // ---OOO------OOOOOO--OOOO-------. - 0x0c, 0x02, 0x08, 0x00, // ----OO--------O-----O----------. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------------------. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------------------. - 0x03, 0x80, 0x02, 0x00, // ------OOO-------------O--------. - 0x01, 0xe0, 0x0f, 0x00, // -------OOOO---------OOOO-------. - 0x00, 0xfe, 0xfe, 0x00, // --------OOOOOOO-OOOOOOO--------. - 0x00, 0x3f, 0xf8, 0x00, // ----------OOOOOOOOOOO----------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - - // ASCII: 65, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 66, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO--------........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO--........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO---........... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO----........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 67, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOO--........... - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO-........... - 0x0f, 0x80, 0x70, 0x00, // ----OOOOO--------OOO-........... - 0x0f, 0x00, 0x30, 0x00, // ----OOOO----------OO-........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x0e, 0x00, 0x10, 0x00, // ----OOO------------O-........... - 0x0f, 0x00, 0x70, 0x00, // ----OOOO---------OOO-........... - 0x07, 0xe1, 0xf0, 0x00, // -----OOOOOO----OOOOO-........... - 0x03, 0xff, 0xe0, 0x00, // ------OOOOOOOOOOOOO--........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 68, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-----------........ - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--------........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1c, 0x07, 0xe0, 0x00, // ---OOO-------OOOOOO-----........ - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO----........ - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO----........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO----........ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO----........ - 0x1c, 0x03, 0xe0, 0x00, // ---OOO--------OOOOO-----........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------........ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 69, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 70, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 71, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO-------........ - 0x01, 0xff, 0xf0, 0x00, // -------OOOOOOOOOOOOO----........ - 0x07, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOO---........ - 0x0f, 0x80, 0x78, 0x00, // ----OOOOO--------OOOO---........ - 0x0e, 0x00, 0x18, 0x00, // ----OOO------------OO---........ - 0x1e, 0x00, 0x08, 0x00, // ---OOOO-------------O---........ - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------------........ - 0x3c, 0x00, 0x00, 0x00, // --OOOO------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x00, 0x00, 0x00, // --OOO-------------------........ - 0x38, 0x07, 0xf8, 0x00, // --OOO--------OOOOOOOO---........ - 0x38, 0x07, 0xf8, 0x00, // --OOO--------OOOOOOOO---........ - 0x38, 0x07, 0xf8, 0x00, // --OOO--------OOOOOOOO---........ - 0x38, 0x00, 0x38, 0x00, // --OOO-------------OOO---........ - 0x38, 0x00, 0x38, 0x00, // --OOO-------------OOO---........ - 0x3c, 0x00, 0x38, 0x00, // --OOOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x38, 0x00, // ---OOOO-----------OOO---........ - 0x0f, 0x00, 0x38, 0x00, // ----OOOO----------OOO---........ - 0x07, 0xe1, 0xf8, 0x00, // -----OOOOOO----OOOOOO---........ - 0x03, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOO----........ - 0x00, 0xff, 0xc0, 0x00, // --------OOOOOOOOOO------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 72, char width: 23 - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO---......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO---......... - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO---......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - - // ASCII: 73, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 74, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---....................... - 0x78, 0x00, 0x00, 0x00, // -OOOO----....................... - 0xf8, 0x00, 0x00, 0x00, // OOOOO----....................... - 0xf0, 0x00, 0x00, 0x00, // OOOO-----....................... - 0xc0, 0x00, 0x00, 0x00, // OO-------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 75, char width: 20 - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO............ - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO-............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO---............ - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO----............ - 0x1c, 0x1e, 0x00, 0x00, // ---OOO-----OOOO-----............ - 0x1c, 0x3c, 0x00, 0x00, // ---OOO----OOOO------............ - 0x1c, 0x78, 0x00, 0x00, // ---OOO---OOOO-------............ - 0x1c, 0xf0, 0x00, 0x00, // ---OOO--OOOO--------............ - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO---------............ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------............ - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO-----------............ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------............ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------............ - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO---------............ - 0x1c, 0xf0, 0x00, 0x00, // ---OOO--OOOO--------............ - 0x1c, 0x78, 0x00, 0x00, // ---OOO---OOOO-------............ - 0x1c, 0x3c, 0x00, 0x00, // ---OOO----OOOO------............ - 0x1c, 0x1e, 0x00, 0x00, // ---OOO-----OOOO-----............ - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO----............ - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO---............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x03, 0xc0, 0x00, // ---OOO--------OOOO--............ - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO-............ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - 0x00, 0x00, 0x00, 0x00, // --------------------............ - - // ASCII: 76, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO............... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO............... - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 77, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0x00, 0x1e, 0x00, // ---OOOOO-----------OOOO---...... - 0x1f, 0x00, 0x3e, 0x00, // ---OOOOO----------OOOOO---...... - 0x1f, 0x00, 0x3e, 0x00, // ---OOOOO----------OOOOO---...... - 0x1f, 0x80, 0x3e, 0x00, // ---OOOOOO---------OOOOO---...... - 0x1f, 0x80, 0x7e, 0x00, // ---OOOOOO--------OOOOOO---...... - 0x1d, 0x80, 0x7e, 0x00, // ---OOO-OO--------OOOOOO---...... - 0x1d, 0xc0, 0x6e, 0x00, // ---OOO-OOO-------OO-OOO---...... - 0x1d, 0xc0, 0xee, 0x00, // ---OOO-OOO------OOO-OOO---...... - 0x1c, 0xc0, 0xee, 0x00, // ---OOO--OO------OOO-OOO---...... - 0x1c, 0xe0, 0xce, 0x00, // ---OOO--OOO-----OO--OOO---...... - 0x1c, 0xe1, 0xce, 0x00, // ---OOO--OOO----OOO--OOO---...... - 0x1c, 0x61, 0xce, 0x00, // ---OOO---OO----OOO--OOO---...... - 0x1c, 0x71, 0x8e, 0x00, // ---OOO---OOO---OO---OOO---...... - 0x1c, 0x73, 0x8e, 0x00, // ---OOO---OOO--OOO---OOO---...... - 0x1c, 0x33, 0x8e, 0x00, // ---OOO----OO--OOO---OOO---...... - 0x1c, 0x3b, 0x0e, 0x00, // ---OOO----OOO-OO----OOO---...... - 0x1c, 0x3f, 0x0e, 0x00, // ---OOO----OOOOOO----OOO---...... - 0x1c, 0x1f, 0x0e, 0x00, // ---OOO-----OOOOO----OOO---...... - 0x1c, 0x1e, 0x0e, 0x00, // ---OOO-----OOOO-----OOO---...... - 0x1c, 0x1e, 0x0e, 0x00, // ---OOO-----OOOO-----OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x1c, 0x00, 0x0e, 0x00, // ---OOO--------------OOO---...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 78, char width: 23 - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x1e, 0x00, 0x70, 0x00, // ---OOOO----------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xe0, 0x70, 0x00, // ---OOO-OOOO------OOO---......... - 0x1c, 0xe0, 0x70, 0x00, // ---OOO--OOO------OOO---......... - 0x1c, 0xf0, 0x70, 0x00, // ---OOO--OOOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO---......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - - // ASCII: 79, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 80, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO------.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO--.............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO-.............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--.............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO---.............. - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-----.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 81, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x0e, 0x00, 0x78, 0x00, // ----OOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------........ - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO------........ - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO-----........ - 0x00, 0x00, 0xf0, 0x00, // ----------------OOOO----........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 82, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---------........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO-----........... - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO----........... - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO-----........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-------........... - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO------........... - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO-----........... - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO-----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO--........... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO-........... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO-........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 83, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO----............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1c, 0x01, 0x00, 0x00, // ---OOO---------O---............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO------------............. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO---------............. - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO------............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO---............. - 0x00, 0x0f, 0x80, 0x00, // ------------OOOOO--............. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO--............. - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO-............. - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO-............. - 0x00, 0x01, 0xc0, 0x00, // ---------------OOO-............. - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO-............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x30, 0x07, 0x80, 0x00, // --OO---------OOOO--............. - 0x3e, 0x1f, 0x80, 0x00, // --OOOOO----OOOOOO--............. - 0x3f, 0xff, 0x00, 0x00, // --OOOOOOOOOOOOOO---............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 84, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 85, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 86, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0xe0, 0x00, 0x78, 0x00, // OOO--------------OOOO........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x78, 0x00, 0xf0, 0x00, // -OOOO-----------OOOO-........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x3c, 0x01, 0xe0, 0x00, // --OOOO---------OOOO--........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x1e, 0x03, 0xc0, 0x00, // ---OOOO-------OOOO---........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0f, 0x07, 0x00, 0x00, // ----OOOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x8e, 0x00, 0x00, // -----OOOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 87, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x70, 0x07, 0x80, 0x38, // -OOO---------OOOO---------OOO-.. - 0x70, 0x07, 0x80, 0x38, // -OOO---------OOOO---------OOO-.. - 0x38, 0x07, 0x80, 0x38, // --OOO--------OOOO---------OOO-.. - 0x38, 0x07, 0xc0, 0x78, // --OOO--------OOOOO-------OOOO-.. - 0x38, 0x0f, 0xc0, 0x70, // --OOO-------OOOOOO-------OOO--.. - 0x38, 0x0e, 0xc0, 0x70, // --OOO-------OOO-OO-------OOO--.. - 0x38, 0x0e, 0xc0, 0x70, // --OOO-------OOO-OO-------OOO--.. - 0x1c, 0x0c, 0xc0, 0x70, // ---OOO------OO--OO-------OOO--.. - 0x1c, 0x0c, 0xe0, 0xe0, // ---OOO------OO--OOO-----OOO---.. - 0x1c, 0x1c, 0xe0, 0xe0, // ---OOO-----OOO--OOO-----OOO---.. - 0x1c, 0x1c, 0x60, 0xe0, // ---OOO-----OOO---OO-----OOO---.. - 0x0e, 0x18, 0x60, 0xe0, // ----OOO----OO----OO-----OOO---.. - 0x0e, 0x18, 0x71, 0xc0, // ----OOO----OO----OOO---OOO----.. - 0x0e, 0x38, 0x71, 0xc0, // ----OOO---OOO----OOO---OOO----.. - 0x0e, 0x38, 0x31, 0xc0, // ----OOO---OOO-----OO---OOO----.. - 0x0e, 0x38, 0x31, 0xc0, // ----OOO---OOO-----OO---OOO----.. - 0x07, 0x30, 0x31, 0xc0, // -----OOO--OO------OO---OOO----.. - 0x07, 0x30, 0x3b, 0x80, // -----OOO--OO------OOO-OOO-----.. - 0x07, 0x70, 0x3b, 0x80, // -----OOO-OOO------OOO-OOO-----.. - 0x07, 0x70, 0x1b, 0x80, // -----OOO-OOO-------OO-OOO-----.. - 0x03, 0xe0, 0x1b, 0x80, // ------OOOOO--------OO-OOO-----.. - 0x03, 0xe0, 0x1f, 0x00, // ------OOOOO--------OOOOO------.. - 0x03, 0xe0, 0x1f, 0x00, // ------OOOOO--------OOOOO------.. - 0x03, 0xe0, 0x0f, 0x00, // ------OOOOO---------OOOO------.. - 0x03, 0xe0, 0x0f, 0x00, // ------OOOOO---------OOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 88, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x1c, 0x01, 0xe0, 0x00, // ---OOO---------OOOO--........... - 0x1e, 0x01, 0xc0, 0x00, // ---OOOO--------OOO---........... - 0x0e, 0x03, 0xc0, 0x00, // ----OOO-------OOOO---........... - 0x07, 0x03, 0x80, 0x00, // -----OOO------OOO----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x03, 0x8f, 0x00, 0x00, // ------OOO---OOOO-----........... - 0x03, 0xce, 0x00, 0x00, // ------OOOO--OOO------........... - 0x01, 0xde, 0x00, 0x00, // -------OOO-OOOO------........... - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO-------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x07, 0x8f, 0x00, 0x00, // -----OOOO---OOOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO---........... - 0x3c, 0x01, 0xe0, 0x00, // --OOOO---------OOOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x70, 0x00, 0xf0, 0x00, // -OOO------------OOOO-........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 89, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0xe0, 0x01, 0xe0, 0x00, // OOO------------OOOO............. - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO-............. - 0x78, 0x03, 0x80, 0x00, // -OOOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x0f, 0x1c, 0x00, 0x00, // ----OOOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0xb8, 0x00, 0x00, // ------OOO-OOO------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 90, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO--........... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO--........... - 0x3f, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOO--........... - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO--........... - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO---........... - 0x00, 0x03, 0x80, 0x00, // --------------OOO----........... - 0x00, 0x07, 0x80, 0x00, // -------------OOOO----........... - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO-----........... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO------........... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-------........... - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO-------........... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO--------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xe0, 0x00, 0x00, // --------OOO----------........... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO----------........... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO-----------........... - 0x03, 0x80, 0x00, 0x00, // ------OOO------------........... - 0x07, 0x80, 0x00, 0x00, // -----OOOO------------........... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-------------........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x7f, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOO-........... - 0x7f, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOO-........... - 0x7f, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOO-........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 91, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x18, 0x00, 0x00, 0x00, // ---OO-------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 92, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0xe0, 0x00, 0x00, 0x00, // OOO-------...................... - 0x60, 0x00, 0x00, 0x00, // -OO-------...................... - 0x60, 0x00, 0x00, 0x00, // -OO-------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x70, 0x00, 0x00, 0x00, // -OOO------...................... - 0x30, 0x00, 0x00, 0x00, // --OO------...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x38, 0x00, 0x00, 0x00, // --OOO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x18, 0x00, 0x00, 0x00, // ---OO-----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x06, 0x00, 0x00, 0x00, // -----OO---...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x07, 0x00, 0x00, 0x00, // -----OOO--...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x03, 0x00, 0x00, 0x00, // ------OO--...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x03, 0x80, 0x00, 0x00, // ------OOO-...................... - 0x01, 0x80, 0x00, 0x00, // -------OO-...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO...................... - 0x00, 0xc0, 0x00, 0x00, // --------OO...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 93, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 94, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO----------...... - 0x00, 0xf7, 0x80, 0x00, // --------OOOO-OOOO---------...... - 0x00, 0xe3, 0xc0, 0x00, // --------OOO---OOOO--------...... - 0x01, 0xc1, 0xe0, 0x00, // -------OOO-----OOOO-------...... - 0x03, 0x80, 0xf0, 0x00, // ------OOO-------OOOO------...... - 0x07, 0x00, 0x78, 0x00, // -----OOO---------OOOO-----...... - 0x0e, 0x00, 0x3c, 0x00, // ----OOO-----------OOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 95, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOO................ - 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOO................ - - // ASCII: 96, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------................. - 0x0e, 0x00, 0x00, 0x00, // ----OOO--------................. - 0x06, 0x00, 0x00, 0x00, // -----OO--------................. - 0x07, 0x00, 0x00, 0x00, // -----OOO-------................. - 0x03, 0x80, 0x00, 0x00, // ------OOO------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 97, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 98, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO------............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1e, 0x07, 0x80, 0x00, // ---OOOO------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1d, 0xfc, 0x00, 0x00, // ---OOO-OOOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 99, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x1e, 0x02, 0x00, 0x00, // ---OOOO-------O--............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x0f, 0x06, 0x00, 0x00, // ----OOOO-----OO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO---............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 100, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x1e, 0x0f, 0x80, 0x00, // ---OOOO-----OOOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 101, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 102, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO..................... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO..................... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO..................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO..................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO..................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 103, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1e, 0x0f, 0x80, 0x00, // ---OOOO-----OOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x00, 0x03, 0x00, 0x00, // --------------OO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x0f, 0x7e, 0x00, 0x00, // ----OOOO-OOOOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 104, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0xfc, 0x00, 0x00, // ---OOO--OOOOOO-----............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 105, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 106, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0xf8, 0x00, 0x00, 0x00, // OOOOO----....................... - 0xf0, 0x00, 0x00, 0x00, // OOOO-----....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 107, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO------------.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO-----.............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO------.............. - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO-------.............. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO--------.............. - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---------.............. - 0x1f, 0x80, 0x00, 0x00, // ---OOOOOO---------.............. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO--------.............. - 0x1d, 0xe0, 0x00, 0x00, // ---OOO-OOOO-------.............. - 0x1c, 0xf0, 0x00, 0x00, // ---OOO--OOOO------.............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO------.............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO-----.............. - 0x1c, 0x1c, 0x00, 0x00, // ---OOO-----OOO----.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO--.............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 108, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 109, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x1c, 0xf8, 0x1f, 0x00, // ---OOO--OOOOO------OOOOO------.. - 0x1d, 0xfe, 0x3f, 0x80, // ---OOO-OOOOOOOO---OOOOOOO-----.. - 0x1f, 0xfe, 0x7f, 0xc0, // ---OOOOOOOOOOOO--OOOOOOOOO----.. - 0x1e, 0x0f, 0xc1, 0xe0, // ---OOOO-----OOOOOO-----OOOO---.. - 0x1e, 0x07, 0xC0, 0xe0, // ---OOOO------OOOOO------OOO---.. - 0x1c, 0x07, 0xC0, 0xe0, // ---OOO-------OOOOO------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x1c, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------OOO---.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 110, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0xfc, 0x00, 0x00, // ---OOO--OOOOOO-----............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 111, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 112, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO------............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1e, 0x07, 0x80, 0x00, // ---OOOO------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1d, 0xfc, 0x00, 0x00, // ---OOO-OOOOOOO-----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 113, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xe3, 0x80, 0x00, // ------OOOOO---OOO--............. - 0x07, 0xfb, 0x80, 0x00, // -----OOOOOOOO-OOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x1e, 0x0f, 0x80, 0x00, // ---OOOO-----OOOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 114, char width: 13 - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO................... - 0x1d, 0xf8, 0x00, 0x00, // ---OOO-OOOOOO................... - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO................... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - 0x00, 0x00, 0x00, 0x00, // -------------................... - - // ASCII: 115, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO----................ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO--................ - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO--................ - 0x38, 0x04, 0x00, 0x00, // --OOO--------O--................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x30, 0x00, 0x00, 0x00, // --OO------------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x00, 0x00, 0x00, // --OOOO----------................ - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO------................ - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO---................ - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x00, 0x0c, 0x00, 0x00, // ------------OO--................ - 0x00, 0x0c, 0x00, 0x00, // ------------OO--................ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--................ - 0x38, 0x3c, 0x00, 0x00, // --OOO-----OOOO--................ - 0x3f, 0xf8, 0x00, 0x00, // --OOOOOOOOOOO---................ - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO----................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 116, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x7f, 0xe0, 0x00, 0x00, // -OOOOOOOOOO-.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO-.................... - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO-.................... - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 117, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 118, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO-.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x06, 0x00, 0x00, // ---OOO-------OO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0e, 0x0c, 0x00, 0x00, // ----OOO-----OO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x07, 0x18, 0x00, 0x00, // -----OOO---OO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 119, char width: 25 - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x70, 0x1c, 0x07, 0x00, // -OOO-------OOO-------OOO-....... - 0x30, 0x1c, 0x06, 0x00, // --OO-------OOO-------OO--....... - 0x38, 0x3e, 0x0e, 0x00, // --OOO-----OOOOO-----OOO--....... - 0x38, 0x3e, 0x0e, 0x00, // --OOO-----OOOOO-----OOO--....... - 0x38, 0x36, 0x0e, 0x00, // --OOO-----OO-OO-----OOO--....... - 0x38, 0x36, 0x0e, 0x00, // --OOO-----OO-OO-----OOO--....... - 0x18, 0x77, 0x0c, 0x00, // ---OO----OOO-OOO----OO---....... - 0x1c, 0x77, 0x1c, 0x00, // ---OOO---OOO-OOO---OOO---....... - 0x1c, 0x63, 0x1c, 0x00, // ---OOO---OO---OO---OOO---....... - 0x1c, 0x63, 0x1c, 0x00, // ---OOO---OO---OO---OOO---....... - 0x0c, 0xe3, 0x98, 0x00, // ----OO--OOO---OOO--OO----....... - 0x0e, 0xe3, 0xb8, 0x00, // ----OOO-OOO---OOO-OOO----....... - 0x0e, 0xc1, 0xb8, 0x00, // ----OOO-OO-----OO-OOO----....... - 0x0e, 0xc1, 0xb8, 0x00, // ----OOO-OO-----OO-OOO----....... - 0x06, 0xc1, 0xb0, 0x00, // -----OO-OO-----OO-OO-----....... - 0x07, 0xc1, 0xf0, 0x00, // -----OOOOO-----OOOOO-----....... - 0x07, 0xc0, 0xf0, 0x00, // -----OOOOO------OOOO-----....... - 0x07, 0x80, 0xf0, 0x00, // -----OOOO-------OOOO-----....... - 0x03, 0x80, 0xe0, 0x00, // ------OOO-------OOO------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - 0x00, 0x00, 0x00, 0x00, // -------------------------....... - - // ASCII: 120, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x78, 0x07, 0x80, 0x00, // -OOOO--------OOOO-.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0e, 0x1e, 0x00, 0x00, // ----OOO----OOOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO-----.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 121, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x00, 0x00, // --OOO---------OO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x06, 0x1c, 0x00, 0x00, // -----OO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO---------.............. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----------.............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO-----------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 122, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO-................ - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO-................ - 0x3f, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOO-................ - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-................ - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO--................ - 0x00, 0x38, 0x00, 0x00, // ----------OOO---................ - 0x00, 0x70, 0x00, 0x00, // ---------OOO----................ - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----................ - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-----................ - 0x03, 0xc0, 0x00, 0x00, // ------OOOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x0f, 0x00, 0x00, 0x00, // ----OOOO--------................ - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x70, 0x00, 0x00, 0x00, // -OOO------------................ - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO-................ - 0x7f, 0xfe, 0x00, 0x00, // -OOOOOOOOOOOOOO-................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 123, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x0f, 0x00, 0x00, // ------------OOOO---............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO---............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x03, 0xc0, 0x00, 0x00, // ------OOOO---------............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO---............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x03, 0x00, 0x00, // --------------OO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 124, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - - // ASCII: 125, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0f, 0x00, 0x00, 0x00, // ----OOOO-----------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO---............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO---------............. - 0x08, 0x00, 0x00, 0x00, // ----O--------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 126, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x03, 0xf0, 0x04, 0x00, // ------OOOOOO---------O----...... - 0x0f, 0xfc, 0x1c, 0x00, // ----OOOOOOOOOO-----OOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1c, 0x0f, 0xf8, 0x00, // ---OOO------OOOOOOOOO-----...... - 0x10, 0x01, 0xe0, 0x00, // ---O-----------OOOO-------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 160, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 161, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x06, 0x00, 0x00, 0x00, // -----OO-----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 162, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO-----............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0x31, 0x00, 0x00, // ----OOOO--OO---O---............. - 0x0e, 0x30, 0x00, 0x00, // ----OOO---OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO-------............. - 0x1e, 0x30, 0x00, 0x00, // ---OOOO---OO-------............. - 0x0e, 0x30, 0x00, 0x00, // ----OOO---OO-------............. - 0x07, 0xb3, 0x00, 0x00, // -----OOOO-OO--OO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO----............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 163, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x01, 0xf7, 0x00, 0x00, // -------OOOOO-OOO---............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x07, 0x80, 0x00, 0x00, // -----OOOO----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 164, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x10, 0x00, 0x80, 0x00, // ---O------------O--............. - 0x30, 0x01, 0xc0, 0x00, // --OO-----------OOO-............. - 0x38, 0xe3, 0xc0, 0x00, // --OOO---OOO---OOOO-............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x0f, 0x0e, 0x00, 0x00, // ----OOOO----OOO----............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0c, 0x07, 0x00, 0x00, // ----OO-------OOO---............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO---............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO---............. - 0x1c, 0x03, 0x00, 0x00, // ---OOO--------OO---............. - 0x0c, 0x07, 0x00, 0x00, // ----OO-------OOO---............. - 0x0e, 0x06, 0x00, 0x00, // ----OOO------OO----............. - 0x0f, 0x1e, 0x00, 0x00, // ----OOOO---OOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1d, 0xfb, 0x80, 0x00, // ---OOO-OOOOOO-OOO--............. - 0x38, 0x03, 0xc0, 0x00, // --OOO---------OOOO-............. - 0x30, 0x01, 0x80, 0x00, // --OO-----------OO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 165, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO-............. - 0x38, 0x01, 0xc0, 0x00, // --OOO----------OOO-............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x0e, 0x07, 0x00, 0x00, // ----OOO------OOO---............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0x9c, 0x00, 0x00, // ------OOO--OOO-----............. - 0x3f, 0xbf, 0x80, 0x00, // --OOOOOOO-OOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 166, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x0c, 0x00, 0x00, 0x00, // ----OO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 167, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO---................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x1c, 0x30, 0x00, 0x00, // ---OOO----OO---................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x38, 0x00, 0x00, 0x00, // --OOO----------................. - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------................. - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------................. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO------................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-----................. - 0x39, 0xf0, 0x00, 0x00, // --OOO--OOOOO---................. - 0x30, 0x78, 0x00, 0x00, // --OO-----OOOO--................. - 0x70, 0x38, 0x00, 0x00, // -OOO------OOO--................. - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO-................. - 0x30, 0x1c, 0x00, 0x00, // --OO-------OOO-................. - 0x3c, 0x1c, 0x00, 0x00, // --OOOO-----OOO-................. - 0x1e, 0x1c, 0x00, 0x00, // ---OOOO----OOO-................. - 0x0f, 0x38, 0x00, 0x00, // ----OOOO--OOO--................. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO---................. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO----................. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO---................. - 0x00, 0x78, 0x00, 0x00, // ---------OOOO--................. - 0x00, 0x38, 0x00, 0x00, // ----------OOO--................. - 0x00, 0x38, 0x00, 0x00, // ----------OOO--................. - 0x00, 0x38, 0x00, 0x00, // ----------OOO--................. - 0x18, 0x70, 0x00, 0x00, // ---OO----OOO---................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO-----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 168, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 169, char width: 31 - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--------------. - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-----------. - 0x00, 0x78, 0x3c, 0x00, // ---------OOOO-----OOOO---------. - 0x00, 0xe0, 0x0e, 0x00, // --------OOO---------OOO--------. - 0x01, 0x80, 0x07, 0x00, // -------OO------------OOO-------. - 0x03, 0x03, 0xc3, 0x00, // ------OO------OOOO----OO-------. - 0x03, 0x1f, 0xf1, 0x80, // ------OO---OOOOOOOOO---OO------. - 0x06, 0x3c, 0x30, 0x80, // -----OO---OOOO----OO----O------. - 0x06, 0x38, 0x00, 0xc0, // -----OO---OOO-----------OO-----. - 0x04, 0x70, 0x00, 0xc0, // -----O---OOO------------OO-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x60, 0x00, 0x40, // ----OO---OO--------------O-----. - 0x0c, 0x70, 0x00, 0x40, // ----OO---OOO-------------O-----. - 0x04, 0x70, 0x00, 0xc0, // -----O---OOO------------OO-----. - 0x06, 0x38, 0x10, 0xc0, // -----OO---OOO------O----OO-----. - 0x02, 0x1f, 0xf1, 0x80, // ------O----OOOOOOOOO---OO------. - 0x03, 0x0f, 0xe1, 0x80, // ------OO----OOOOOOO----OO------. - 0x01, 0x80, 0x03, 0x00, // -------OO-------------OO-------. - 0x00, 0xc0, 0x06, 0x00, // --------OO-----------OO--------. - 0x00, 0x70, 0x1c, 0x00, // ---------OOO-------OOO---------. - 0x00, 0x3f, 0xf8, 0x00, // ----------OOOOOOOOOOO----------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - - // ASCII: 170, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x1f, 0xc0, 0x00, 0x00, // ---OOOOOOO----.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO--.................. - 0x00, 0x30, 0x00, 0x00, // ----------OO--.................. - 0x00, 0x30, 0x00, 0x00, // ----------OO--.................. - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x38, 0x30, 0x00, 0x00, // --OOO-----OO--.................. - 0x30, 0x30, 0x00, 0x00, // --OO------OO--.................. - 0x30, 0x30, 0x00, 0x00, // --OO------OO--.................. - 0x30, 0x70, 0x00, 0x00, // --OO-----OOO--.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x1f, 0xb0, 0x00, 0x00, // ---OOOOOO-OO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 171, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x81, 0x00, 0x00, // --------O------O---............. - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO---............. - 0x03, 0x87, 0x00, 0x00, // ------OOO----OOO---............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO-----............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO------............. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO-------............. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO-------............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO------............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO-----............. - 0x07, 0x0e, 0x00, 0x00, // -----OOO----OOO----............. - 0x03, 0x87, 0x00, 0x00, // ------OOO----OOO---............. - 0x01, 0x83, 0x00, 0x00, // -------OO-----OO---............. - 0x00, 0x81, 0x00, 0x00, // --------O------O---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 172, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x0c, 0x00, // --------------------OO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 173, char width: 11 - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - 0x00, 0x00, 0x00, 0x00, // -----------..................... - - // ASCII: 174, char width: 31 - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x03, 0x80, 0x00, // --------------OOO--------------. - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-----------. - 0x00, 0x78, 0x3c, 0x00, // ---------OOOO-----OOOO---------. - 0x00, 0xe0, 0x0e, 0x00, // --------OOO---------OOO--------. - 0x01, 0x80, 0x07, 0x00, // -------OO------------OOO-------. - 0x03, 0x00, 0x03, 0x00, // ------OO--------------OO-------. - 0x03, 0x1f, 0xe1, 0x80, // ------OO---OOOOOOOO----OO------. - 0x06, 0x18, 0x70, 0x80, // -----OO----OO----OOO----O------. - 0x06, 0x18, 0x30, 0xc0, // -----OO----OO-----OO----OO-----. - 0x04, 0x18, 0x30, 0xc0, // -----O-----OO-----OO----OO-----. - 0x0c, 0x18, 0x30, 0x40, // ----OO-----OO-----OO-----O-----. - 0x0c, 0x18, 0x70, 0x40, // ----OO-----OO----OOO-----O-----. - 0x0c, 0x1f, 0xe0, 0x40, // ----OO-----OOOOOOOO------O-----. - 0x0c, 0x1b, 0xc0, 0x40, // ----OO-----OO-OOOO-------O-----. - 0x0c, 0x18, 0xe0, 0x40, // ----OO-----OO---OOO------O-----. - 0x0c, 0x18, 0x60, 0x40, // ----OO-----OO----OO------O-----. - 0x04, 0x18, 0x70, 0xc0, // -----O-----OO----OOO----OO-----. - 0x06, 0x18, 0x30, 0xc0, // -----OO----OO-----OO----OO-----. - 0x02, 0x18, 0x39, 0x80, // ------O----OO-----OOO--OO------. - 0x03, 0x00, 0x01, 0x80, // ------OO---------------OO------. - 0x01, 0x80, 0x03, 0x00, // -------OO-------------OO-------. - 0x00, 0xc0, 0x06, 0x00, // --------OO-----------OO--------. - 0x00, 0x70, 0x1c, 0x00, // ---------OOO-------OOO---------. - 0x00, 0x3f, 0xf8, 0x00, // ----------OOOOOOOOOOO----------. - 0x00, 0x0f, 0xe0, 0x00, // ------------OOOOOOO------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - 0x00, 0x00, 0x00, 0x00, // -------------------------------. - - // ASCII: 175, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 176, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x18, 0x30, 0x00, 0x00, // ---OO-----OO---................. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO---................. - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO----................. - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 177, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x0c, 0x00, 0x00, // ------------OO------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 178, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x41, 0xc0, 0x00, 0x00, // -O-----OOO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x01, 0xc0, 0x00, 0x00, // -------OOO--.................... - 0x01, 0x80, 0x00, 0x00, // -------OO---.................... - 0x03, 0x00, 0x00, 0x00, // ------OO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO-----.................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO------.................... - 0x38, 0x00, 0x00, 0x00, // --OOO-------.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 179, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO---.................... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO--.................... - 0x0f, 0x00, 0x00, 0x00, // ----OOOO----.................... - 0x03, 0xc0, 0x00, 0x00, // ------OOOO--.................... - 0x00, 0xc0, 0x00, 0x00, // --------OO--.................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO-.................... - 0x00, 0xe0, 0x00, 0x00, // --------OOO-.................... - 0x40, 0xc0, 0x00, 0x00, // -O------OO--.................... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO--.................... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO---.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 180, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x70, 0x00, 0x00, // ---------OOO---................. - 0x00, 0x60, 0x00, 0x00, // ---------OO----................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO----................. - 0x01, 0xc0, 0x00, 0x00, // -------OOO-----................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x03, 0x00, 0x00, 0x00, // ------OO-------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 181, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1f, 0x1f, 0xa0, 0x00, // ---OOOOO---OOOOOO-O............. - 0x1b, 0xff, 0xe0, 0x00, // ---OO-OOOOOOOOOOOOO............. - 0x19, 0xf9, 0xe0, 0x00, // ---OO--OOOOOO--OOOO............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x18, 0x00, 0x00, 0x00, // ---OO--------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 182, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO---............. - 0x07, 0xff, 0x00, 0x00, // -----OOOOOOOOOOO---............. - 0x0f, 0xe3, 0x00, 0x00, // ----OOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x3f, 0xe3, 0x00, 0x00, // --OOOOOOOOO---OO---............. - 0x3f, 0xe3, 0x00, 0x00, // --OOOOOOOOO---OO---............. - 0x3f, 0xe3, 0x00, 0x00, // --OOOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x1f, 0xe3, 0x00, 0x00, // ---OOOOOOOO---OO---............. - 0x0f, 0xe3, 0x00, 0x00, // ----OOOOOOO---OO---............. - 0x0f, 0xe3, 0x00, 0x00, // ----OOOOOOO---OO---............. - 0x03, 0xe3, 0x00, 0x00, // ------OOOOO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 183, char width: 10 - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO----...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - 0x00, 0x00, 0x00, 0x00, // ----------...................... - - // ASCII: 184, char width: 15 - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - 0x01, 0x80, 0x00, 0x00, // -------OO------................. - 0x00, 0xc0, 0x00, 0x00, // --------OO-----................. - 0x00, 0xc0, 0x00, 0x00, // --------OO-----................. - 0x00, 0xe0, 0x00, 0x00, // --------OOO----................. - 0x0d, 0xc0, 0x00, 0x00, // ----OO-OOO-----................. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO-----................. - 0x02, 0x00, 0x00, 0x00, // ------O--------................. - 0x00, 0x00, 0x00, 0x00, // ---------------................. - - // ASCII: 185, char width: 12 - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x1f, 0x00, 0x00, 0x00, // ---OOOOO----.................... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----.................... - 0x27, 0x00, 0x00, 0x00, // --O--OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x07, 0x00, 0x00, 0x00, // -----OOO----.................... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-.................... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO-.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - 0x00, 0x00, 0x00, 0x00, // ------------.................... - - // ASCII: 186, char width: 14 - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO----.................. - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO---.................. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO--.................. - 0x30, 0x30, 0x00, 0x00, // --OO------OO--.................. - 0x30, 0x38, 0x00, 0x00, // --OO------OOO-.................. - 0x70, 0x18, 0x00, 0x00, // -OOO-------OO-.................. - 0x70, 0x18, 0x00, 0x00, // -OOO-------OO-.................. - 0x70, 0x18, 0x00, 0x00, // -OOO-------OO-.................. - 0x30, 0x38, 0x00, 0x00, // --OO------OOO-.................. - 0x30, 0x38, 0x00, 0x00, // --OO------OOO-.................. - 0x38, 0x70, 0x00, 0x00, // --OOO----OOO--.................. - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO--.................. - 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO----.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x3f, 0xf0, 0x00, 0x00, // --OOOOOOOOOO--.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - 0x00, 0x00, 0x00, 0x00, // --------------.................. - - // ASCII: 187, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x10, 0x40, 0x00, 0x00, // ---O-----O---------............. - 0x18, 0x60, 0x00, 0x00, // ---OO----OO--------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0x8f, 0x00, 0x00, // ------OOO---OOOO---............. - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO---............. - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO---............. - 0x03, 0x8f, 0x00, 0x00, // ------OOO---OOOO---............. - 0x07, 0x1e, 0x00, 0x00, // -----OOO---OOOO----............. - 0x0e, 0x3c, 0x00, 0x00, // ----OOO---OOOO-----............. - 0x1c, 0x78, 0x00, 0x00, // ---OOO---OOOO------............. - 0x18, 0x70, 0x00, 0x00, // ---OO----OOO-------............. - 0x10, 0x60, 0x00, 0x00, // ---O-----OO--------............. - 0x00, 0x40, 0x00, 0x00, // ---------O---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 188, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x1f, 0x00, 0x0c, 0x00, // ---OOOOO------------OO--------.. - 0x3f, 0x00, 0x1c, 0x00, // --OOOOOO-----------OOO--------.. - 0x27, 0x00, 0x18, 0x00, // --O--OOO-----------OO---------.. - 0x07, 0x00, 0x38, 0x00, // -----OOO----------OOO---------.. - 0x07, 0x00, 0x30, 0x00, // -----OOO----------OO----------.. - 0x07, 0x00, 0x70, 0x00, // -----OOO---------OOO----------.. - 0x07, 0x00, 0x60, 0x00, // -----OOO---------OO-----------.. - 0x07, 0x00, 0xe0, 0x00, // -----OOO--------OOO-----------.. - 0x07, 0x00, 0xc0, 0x00, // -----OOO--------OO------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x03, 0x01, 0xc0, // -----OOO------OO-------OOO----.. - 0x3f, 0xe7, 0x01, 0xc0, // --OOOOOOOOO--OOO-------OOO----.. - 0x3f, 0xe6, 0x03, 0xc0, // --OOOOOOOOO--OO-------OOOO----.. - 0x00, 0x0e, 0x06, 0xc0, // ------------OOO------OO-OO----.. - 0x00, 0x0c, 0x06, 0xc0, // ------------OO-------OO-OO----.. - 0x00, 0x1c, 0x0c, 0xc0, // -----------OOO------OO--OO----.. - 0x00, 0x18, 0x18, 0xc0, // -----------OO------OO---OO----.. - 0x00, 0x38, 0x18, 0xc0, // ----------OOO------OO---OO----.. - 0x00, 0x30, 0x30, 0xc0, // ----------OO------OO----OO----.. - 0x00, 0x70, 0x3f, 0xf0, // ---------OOO------OOOOOOOOOO--.. - 0x00, 0x60, 0x3f, 0xf0, // ---------OO-------OOOOOOOOOO--.. - 0x00, 0xc0, 0x00, 0xc0, // --------OO--------------OO----.. - 0x01, 0xc0, 0x00, 0xc0, // -------OOO--------------OO----.. - 0x01, 0x80, 0x00, 0xc0, // -------OO---------------OO----.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 189, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x1f, 0x00, 0x0c, 0x00, // ---OOOOO------------OO--------.. - 0x3f, 0x00, 0x1c, 0x00, // --OOOOOO-----------OOO--------.. - 0x27, 0x00, 0x18, 0x00, // --O--OOO-----------OO---------.. - 0x07, 0x00, 0x38, 0x00, // -----OOO----------OOO---------.. - 0x07, 0x00, 0x30, 0x00, // -----OOO----------OO----------.. - 0x07, 0x00, 0x70, 0x00, // -----OOO---------OOO----------.. - 0x07, 0x00, 0x60, 0x00, // -----OOO---------OO-----------.. - 0x07, 0x00, 0xe0, 0x00, // -----OOO--------OOO-----------.. - 0x07, 0x00, 0xc0, 0x00, // -----OOO--------OO------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x01, 0x80, 0x00, // -----OOO-------OO-------------.. - 0x07, 0x03, 0x1f, 0x80, // -----OOO------OO---OOOOOO-----.. - 0x3f, 0xe7, 0x3f, 0xe0, // --OOOOOOOOO--OOO--OOOOOOOOO---.. - 0x3f, 0xe6, 0x20, 0xe0, // --OOOOOOOOO--OO---O-----OOO---.. - 0x00, 0x0e, 0x00, 0x60, // ------------OOO----------OO---.. - 0x00, 0x0c, 0x00, 0x60, // ------------OO-----------OO---.. - 0x00, 0x1c, 0x00, 0xe0, // -----------OOO----------OOO---.. - 0x00, 0x18, 0x00, 0xc0, // -----------OO-----------OO----.. - 0x00, 0x38, 0x01, 0x80, // ----------OOO----------OO-----.. - 0x00, 0x30, 0x03, 0x80, // ----------OO----------OOO-----.. - 0x00, 0x70, 0x07, 0x00, // ---------OOO---------OOO------.. - 0x00, 0x60, 0x0e, 0x00, // ---------OO---------OOO-------.. - 0x00, 0xc0, 0x1c, 0x00, // --------OO---------OOO--------.. - 0x01, 0xc0, 0x3f, 0xe0, // -------OOO--------OOOOOOOOO---.. - 0x01, 0x80, 0x3f, 0xe0, // -------OO---------OOOOOOOOO---.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 190, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0x80, 0x0c, 0x00, // --OOOOOOO-----------OO--------.. - 0x3f, 0xc0, 0x1c, 0x00, // --OOOOOOOO---------OOO--------.. - 0x00, 0xc0, 0x18, 0x00, // --------OO---------OO---------.. - 0x00, 0xc0, 0x38, 0x00, // --------OO--------OOO---------.. - 0x00, 0xc0, 0x30, 0x00, // --------OO--------OO----------.. - 0x03, 0xc0, 0x70, 0x00, // ------OOOO-------OOO----------.. - 0x0f, 0x00, 0x60, 0x00, // ----OOOO---------OO-----------.. - 0x03, 0xc0, 0xe0, 0x00, // ------OOOO------OOO-----------.. - 0x00, 0xc0, 0xc0, 0x00, // --------OO------OO------------.. - 0x00, 0xe1, 0x80, 0x00, // --------OOO----OO-------------.. - 0x00, 0xe1, 0x80, 0x00, // --------OOO----OO-------------.. - 0x40, 0xc3, 0x01, 0xc0, // -O------OO----OO-------OOO----.. - 0x7f, 0xc7, 0x01, 0xc0, // -OOOOOOOOO---OOO-------OOO----.. - 0x3f, 0x86, 0x03, 0xc0, // --OOOOOOO----OO-------OOOO----.. - 0x00, 0x0e, 0x06, 0xc0, // ------------OOO------OO-OO----.. - 0x00, 0x0c, 0x06, 0xc0, // ------------OO-------OO-OO----.. - 0x00, 0x1c, 0x0c, 0xc0, // -----------OOO------OO--OO----.. - 0x00, 0x18, 0x18, 0xc0, // -----------OO------OO---OO----.. - 0x00, 0x38, 0x18, 0xc0, // ----------OOO------OO---OO----.. - 0x00, 0x30, 0x30, 0xc0, // ----------OO------OO----OO----.. - 0x00, 0x70, 0x3f, 0xf0, // ---------OOO------OOOOOOOOOO--.. - 0x00, 0x60, 0x3f, 0xf0, // ---------OO-------OOOOOOOOOO--.. - 0x00, 0xc0, 0x00, 0xc0, // --------OO--------------OO----.. - 0x01, 0xc0, 0x00, 0xc0, // -------OOO--------------OO----.. - 0x01, 0x80, 0x00, 0xc0, // -------OO---------------OO----.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 191, char width: 16 - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x01, 0xc0, 0x00, 0x00, // -------OOO------................ - 0x03, 0x80, 0x00, 0x00, // ------OOO-------................ - 0x07, 0x00, 0x00, 0x00, // -----OOO--------................ - 0x0e, 0x00, 0x00, 0x00, // ----OOO---------................ - 0x1e, 0x00, 0x00, 0x00, // ---OOOO---------................ - 0x1c, 0x00, 0x00, 0x00, // ---OOO----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x38, 0x00, 0x00, 0x00, // --OOO-----------................ - 0x3c, 0x04, 0x00, 0x00, // --OOOO-------O--................ - 0x1e, 0x3c, 0x00, 0x00, // ---OOOO---OOOO--................ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO--................ - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO---................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - 0x00, 0x00, 0x00, 0x00, // ----------------................ - - // ASCII: 192, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-----------........... - 0x00, 0xe0, 0x00, 0x00, // --------OOO----------........... - 0x00, 0x60, 0x00, 0x00, // ---------OO----------........... - 0x00, 0x30, 0x00, 0x00, // ----------OO---------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 193, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x18, 0x00, 0x00, // -----------OO--------........... - 0x00, 0x38, 0x00, 0x00, // ----------OOO--------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0x60, 0x00, 0x00, // ---------OO----------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 194, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0xf0, 0x00, 0x00, // --------OOOO---------........... - 0x00, 0xd8, 0x00, 0x00, // --------OO-OO--------........... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 195, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x01, 0xc6, 0x00, 0x00, // -------OOO---OO------........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x06, 0x3e, 0x00, 0x00, // -----OO---OOOOO------........... - 0x06, 0x08, 0x00, 0x00, // -----OO-----O--------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 196, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x70, 0x00, 0x00, // ---------OOO---------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x06, 0x07, 0x00, 0x00, // -----OO------OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 197, char width: 21 - 0x00, 0x20, 0x00, 0x00, // ----------O----------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-------........... - 0x03, 0x06, 0x00, 0x00, // ------OO-----OO------........... - 0x03, 0x06, 0x00, 0x00, // ------OO-----OO------........... - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x00, 0xf8, 0x00, 0x00, // --------OOOOO--------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0xdc, 0x00, 0x00, // -------OOO-OOO-------........... - 0x01, 0x9c, 0x00, 0x00, // -------OO--OOO-------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO------........... - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO------........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x07, 0x07, 0x00, 0x00, // -----OOO-----OOO-----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x0e, 0x03, 0x80, 0x00, // ----OOO-------OOO----........... - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO----........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO---........... - 0x3f, 0xff, 0xc0, 0x00, // --OOOOOOOOOOOOOOOO---........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x38, 0x00, 0xe0, 0x00, // --OOO-----------OOO--........... - 0x78, 0x00, 0xe0, 0x00, // -OOOO-----------OOO--........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0x70, 0x00, 0x70, 0x00, // -OOO-------------OOO-........... - 0xf0, 0x00, 0x78, 0x00, // OOOO-------------OOOO........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 198, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x7f, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOO--.. - 0x00, 0x7f, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOO--.. - 0x00, 0x7f, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOO--.. - 0x00, 0xe7, 0x80, 0x00, // --------OOO--OOOO-------------.. - 0x00, 0xe7, 0x80, 0x00, // --------OOO--OOOO-------------.. - 0x01, 0xe7, 0x80, 0x00, // -------OOOO--OOOO-------------.. - 0x01, 0xc7, 0x80, 0x00, // -------OOO---OOOO-------------.. - 0x01, 0xc7, 0x80, 0x00, // -------OOO---OOOO-------------.. - 0x03, 0x87, 0x80, 0x00, // ------OOO----OOOO-------------.. - 0x03, 0x87, 0x80, 0x00, // ------OOO----OOOO-------------.. - 0x03, 0x87, 0xff, 0xe0, // ------OOO----OOOOOOOOOOOOOO---.. - 0x07, 0x07, 0xff, 0xe0, // -----OOO-----OOOOOOOOOOOOOO---.. - 0x07, 0x07, 0xff, 0xe0, // -----OOO-----OOOOOOOOOOOOOO---.. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO-------------.. - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO-------------.. - 0x0e, 0x07, 0x80, 0x00, // ----OOO------OOOO-------------.. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------------.. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------------.. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------------.. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO-------------.. - 0x38, 0x07, 0x80, 0x00, // --OOO--------OOOO-------------.. - 0x78, 0x07, 0x80, 0x00, // -OOOO--------OOOO-------------.. - 0x70, 0x07, 0xff, 0xf0, // -OOO---------OOOOOOOOOOOOOOO--.. - 0x70, 0x07, 0xff, 0xf0, // -OOO---------OOOOOOOOOOOOOOO--.. - 0xe0, 0x07, 0xff, 0xf0, // OOO----------OOOOOOOOOOOOOOO--.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 199, char width: 21 - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOO--........... - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO-........... - 0x0f, 0x80, 0x70, 0x00, // ----OOOOO--------OOO-........... - 0x0f, 0x00, 0x30, 0x00, // ----OOOO----------OO-........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x38, 0x00, 0x00, 0x00, // --OOO----------------........... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---------------........... - 0x0e, 0x00, 0x10, 0x00, // ----OOO------------O-........... - 0x0f, 0x00, 0x70, 0x00, // ----OOOO---------OOO-........... - 0x07, 0xe1, 0xf0, 0x00, // -----OOOOOO----OOOOO-........... - 0x03, 0xff, 0xe0, 0x00, // ------OOOOOOOOOOOOO--........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x0c, 0x00, 0x00, // ------------OO-------........... - 0x00, 0x06, 0x00, 0x00, // -------------OO------........... - 0x00, 0x06, 0x00, 0x00, // -------------OO------........... - 0x00, 0x07, 0x00, 0x00, // -------------OOO-----........... - 0x00, 0x6e, 0x00, 0x00, // ---------OO-OOO------........... - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO------........... - 0x00, 0x10, 0x00, 0x00, // -----------O---------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 200, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 201, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 202, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x00, 0xd8, 0x00, 0x00, // --------OO-OO------............. - 0x01, 0x8c, 0x00, 0x00, // -------OO---OO-----............. - 0x03, 0x0e, 0x00, 0x00, // ------OO----OOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 203, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x03, 0x8e, 0x00, 0x00, // ------OOO---OOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 204, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 205, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x06, 0x00, 0x00, 0x00, // -----OO--....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 206, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x3c, 0x00, 0x00, 0x00, // --OOOO---....................... - 0x36, 0x00, 0x00, 0x00, // --OO-OO--....................... - 0x63, 0x00, 0x00, 0x00, // -OO---OO-....................... - 0xc3, 0x80, 0x00, 0x00, // OO----OOO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 207, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 208, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x1f, 0xf8, 0x00, 0x00, // ---OOOOOOOOOO-----------........ - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO--------........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1c, 0x03, 0xe0, 0x00, // ---OOO--------OOOOO-----........ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO----........ - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO----........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0xff, 0xe0, 0x1c, 0x00, // OOOOOOOOOOO--------OOO--........ - 0xff, 0xe0, 0x1c, 0x00, // OOOOOOOOOOO--------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x1c, 0x00, // ---OOO-------------OOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x3c, 0x00, // ---OOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x78, 0x00, // ---OOO-----------OOOO---........ - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO----........ - 0x1c, 0x03, 0xe0, 0x00, // ---OOO--------OOOOO-----........ - 0x1f, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOO------........ - 0x1f, 0xff, 0x80, 0x00, // ---OOOOOOOOOOOOOO-------........ - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 209, char width: 23 - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0xe3, 0x00, 0x00, // --------OOO---OO-------......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-------......... - 0x03, 0x1f, 0x00, 0x00, // ------OO---OOOOO-------......... - 0x03, 0x04, 0x00, 0x00, // ------OO-----O---------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x1e, 0x00, 0x70, 0x00, // ---OOOO----------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x00, 0x70, 0x00, // ---OOOOO---------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1f, 0x80, 0x70, 0x00, // ---OOOOOO--------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xc0, 0x70, 0x00, // ---OOO-OOO-------OOO---......... - 0x1d, 0xe0, 0x70, 0x00, // ---OOO-OOOO------OOO---......... - 0x1c, 0xe0, 0x70, 0x00, // ---OOO--OOO------OOO---......... - 0x1c, 0xf0, 0x70, 0x00, // ---OOO--OOOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x70, 0x70, 0x00, // ---OOO---OOO-----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x38, 0x70, 0x00, // ---OOO----OOO----OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x1c, 0x70, 0x00, // ---OOO-----OOO---OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x0e, 0x70, 0x00, // ---OOO------OOO--OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x07, 0x70, 0x00, // ---OOO-------OOO-OOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x03, 0xf0, 0x00, // ---OOO--------OOOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x01, 0xf0, 0x00, // ---OOO---------OOOOO---......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO---......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - 0x00, 0x00, 0x00, 0x00, // -----------------------......... - - // ASCII: 210, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x70, 0x00, 0x00, // ---------OOO------------........ - 0x00, 0x38, 0x00, 0x00, // ----------OOO-----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x0c, 0x00, 0x00, // ------------OO----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 211, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x06, 0x00, 0x00, // -------------OO---------........ - 0x00, 0x0e, 0x00, 0x00, // ------------OOO---------........ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 212, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO----------........ - 0x00, 0x36, 0x00, 0x00, // ----------OO-OO---------........ - 0x00, 0x63, 0x00, 0x00, // ---------OO---OO--------........ - 0x00, 0xc3, 0x80, 0x00, // --------OO----OOO-------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 213, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x71, 0x80, 0x00, // ---------OOO---OO-------........ - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO-------........ - 0x01, 0x8f, 0x80, 0x00, // -------OO---OOOOO-------........ - 0x01, 0x82, 0x00, 0x00, // -------OO-----O---------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 214, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0xe3, 0x80, 0x00, // --------OOO---OOO-------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0x80, 0xf0, 0x00, // ----OOOOO-------OOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x38, 0x00, 0x1c, 0x00, // --OOO--------------OOO--........ - 0x3c, 0x00, 0x3c, 0x00, // --OOOO------------OOOO--........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1c, 0x00, 0x38, 0x00, // ---OOO------------OOO---........ - 0x1e, 0x00, 0x78, 0x00, // ---OOOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x07, 0xc3, 0xe0, 0x00, // -----OOOOO----OOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 215, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x06, 0x00, 0x10, 0x00, // -----OO------------O------...... - 0x0f, 0x00, 0x38, 0x00, // ----OOOO----------OOO-----...... - 0x07, 0x00, 0x78, 0x00, // -----OOO---------OOOO-----...... - 0x03, 0x80, 0xf0, 0x00, // ------OOO-------OOOO------...... - 0x01, 0xc1, 0xe0, 0x00, // -------OOO-----OOOO-------...... - 0x00, 0xe3, 0xc0, 0x00, // --------OOO---OOOO--------...... - 0x00, 0xf3, 0x80, 0x00, // --------OOOO--OOO---------...... - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO----------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO----------...... - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO---------...... - 0x00, 0xf3, 0x80, 0x00, // --------OOOO--OOO---------...... - 0x01, 0xe1, 0xc0, 0x00, // -------OOOO----OOO--------...... - 0x03, 0xc0, 0xe0, 0x00, // ------OOOO------OOO-------...... - 0x07, 0x80, 0x70, 0x00, // -----OOOO--------OOO------...... - 0x07, 0x00, 0x78, 0x00, // -----OOO---------OOOO-----...... - 0x06, 0x00, 0x38, 0x00, // -----OO-----------OOO-----...... - 0x00, 0x00, 0x10, 0x00, // -------------------O------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 216, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x0c, 0x00, // --------OOOOOOOO----OO--........ - 0x03, 0xff, 0xdc, 0x00, // ------OOOOOOOOOOOO-OOO--........ - 0x07, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOO---........ - 0x0f, 0x81, 0xf0, 0x00, // ----OOOOO------OOOOO----........ - 0x0e, 0x00, 0x70, 0x00, // ----OOO----------OOO----........ - 0x1e, 0x00, 0xf8, 0x00, // ---OOOO---------OOOOO---........ - 0x1c, 0x01, 0xf8, 0x00, // ---OOO---------OOOOOO---........ - 0x3c, 0x01, 0xbc, 0x00, // --OOOO---------OO-OOOO--........ - 0x38, 0x03, 0x9c, 0x00, // --OOO---------OOO--OOO--........ - 0x38, 0x07, 0x1c, 0x00, // --OOO--------OOO---OOO--........ - 0x38, 0x0e, 0x1c, 0x00, // --OOO-------OOO----OOO--........ - 0x38, 0x0c, 0x1c, 0x00, // --OOO-------OO-----OOO--........ - 0x38, 0x18, 0x1c, 0x00, // --OOO------OO------OOO--........ - 0x38, 0x38, 0x1c, 0x00, // --OOO-----OOO------OOO--........ - 0x38, 0x70, 0x1c, 0x00, // --OOO----OOO-------OOO--........ - 0x38, 0x60, 0x1c, 0x00, // --OOO----OO--------OOO--........ - 0x38, 0xc0, 0x1c, 0x00, // --OOO---OO---------OOO--........ - 0x3d, 0xc0, 0x3c, 0x00, // --OOOO-OOO--------OOOO--........ - 0x1f, 0x80, 0x38, 0x00, // ---OOOOOO---------OOO---........ - 0x1f, 0x00, 0x38, 0x00, // ---OOOOO----------OOO---........ - 0x0e, 0x00, 0x78, 0x00, // ----OOO----------OOOO---........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x1f, 0xc3, 0xe0, 0x00, // ---OOOOOOO----OOOOO-----........ - 0x3b, 0xff, 0xc0, 0x00, // --OOO-OOOOOOOOOOOO------........ - 0x30, 0xff, 0x00, 0x00, // --OO----OOOOOOOO--------........ - 0x30, 0x00, 0x00, 0x00, // --OO--------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 217, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0xe0, 0x00, 0x00, // --------OOO-----------.......... - 0x00, 0x70, 0x00, 0x00, // ---------OOO----------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x18, 0x00, 0x00, // -----------OO---------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 218, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x0c, 0x00, 0x00, // ------------OO--------.......... - 0x00, 0x1c, 0x00, 0x00, // -----------OOO--------.......... - 0x00, 0x38, 0x00, 0x00, // ----------OOO---------.......... - 0x00, 0x30, 0x00, 0x00, // ----------OO----------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 219, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x78, 0x00, 0x00, // ---------OOOO---------.......... - 0x00, 0x6c, 0x00, 0x00, // ---------OO-OO--------.......... - 0x00, 0xc6, 0x00, 0x00, // --------OO---OO-------.......... - 0x01, 0x87, 0x00, 0x00, // -------OO----OOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 220, char width: 22 - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x01, 0xc7, 0x00, 0x00, // -------OOO---OOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0x70, 0x00, // ---OOO-----------OOO--.......... - 0x1c, 0x00, 0xf0, 0x00, // ---OOO----------OOOO--.......... - 0x1c, 0x00, 0xe0, 0x00, // ---OOO----------OOO---.......... - 0x1e, 0x00, 0xe0, 0x00, // ---OOOO---------OOO---.......... - 0x0e, 0x01, 0xe0, 0x00, // ----OOO--------OOOO---.......... - 0x0f, 0xc7, 0xc0, 0x00, // ----OOOOOO---OOOOO----.......... - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO-----.......... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - 0x00, 0x00, 0x00, 0x00, // ----------------------.......... - - // ASCII: 221, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0xe0, 0x01, 0xe0, 0x00, // OOO------------OOOO............. - 0x70, 0x01, 0xc0, 0x00, // -OOO-----------OOO-............. - 0x78, 0x03, 0x80, 0x00, // -OOOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x0e, 0x0e, 0x00, 0x00, // ----OOO-----OOO----............. - 0x0f, 0x1c, 0x00, 0x00, // ----OOOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x03, 0xb8, 0x00, 0x00, // ------OOO-OOO------............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 222, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 223, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0e, 0x00, 0x00, // ---OOOO-----OOO----............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1c, 0x38, 0x00, 0x00, // ---OOO----OOO------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x1c, 0x60, 0x00, 0x00, // ---OOO---OO--------............. - 0x1c, 0x60, 0x00, 0x00, // ---OOO---OO--------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-------............. - 0x1c, 0x7c, 0x00, 0x00, // ---OOO---OOOOO-----............. - 0x1c, 0x3e, 0x00, 0x00, // ---OOO----OOOOO----............. - 0x1c, 0x1f, 0x00, 0x00, // ---OOO-----OOOOO---............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1d, 0x83, 0x80, 0x00, // ---OOO-OO-----OOO--............. - 0x1d, 0xff, 0x80, 0x00, // ---OOO-OOOOOOOOOO--............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 224, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0e, 0x00, 0x00, 0x00, // ----OOO------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x00, 0x00, 0x00, // ------OO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 225, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x30, 0x00, 0x00, // ----------OO-------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 226, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO--------............. - 0x03, 0x60, 0x00, 0x00, // ------OO-OO--------............. - 0x07, 0x30, 0x00, 0x00, // -----OOO--OO-------............. - 0x06, 0x38, 0x00, 0x00, // -----OO---OOO------............. - 0x0c, 0x18, 0x00, 0x00, // ----OO-----OO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 227, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x8c, 0x00, 0x00, // -----OOOO---OO-----............. - 0x0f, 0xd8, 0x00, 0x00, // ----OOOOOO-OO------............. - 0x0c, 0xf8, 0x00, 0x00, // ----OO--OOOOO------............. - 0x0c, 0x70, 0x00, 0x00, // ----OO---OOO-------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 228, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 229, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0x30, 0x00, 0x00, // -----OOO--OO-------............. - 0x06, 0x18, 0x00, 0x00, // -----OO----OO------............. - 0x04, 0x18, 0x00, 0x00, // -----O-----OO------............. - 0x04, 0x18, 0x00, 0x00, // -----O-----OO------............. - 0x06, 0x30, 0x00, 0x00, // -----OO---OO-------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO-----............. - 0x10, 0x0e, 0x00, 0x00, // ---O--------OOO----............. - 0x00, 0x06, 0x00, 0x00, // -------------OO----............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x00, 0x07, 0x00, 0x00, // -------------OOO---............. - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO---............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x38, 0x0f, 0x00, 0x00, // --OOO-------OOOO---............. - 0x3c, 0x3f, 0x00, 0x00, // --OOOO----OOOOOO---............. - 0x1f, 0xf7, 0x00, 0x00, // ---OOOOOOOOO-OOO---............. - 0x0f, 0xe7, 0x00, 0x00, // ----OOOOOOO--OOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 230, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x07, 0xf0, 0x3f, 0x00, // -----OOOOOOO------OOOOOO------.. - 0x1f, 0xfc, 0xff, 0xc0, // ---OOOOOOOOOOO--OOOOOOOOOO----.. - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x10, 0x0f, 0xc0, 0xe0, // ---O--------OOOOOO------OOO---.. - 0x00, 0x07, 0x80, 0x70, // -------------OOOO--------OOO--.. - 0x00, 0x07, 0x00, 0x70, // -------------OOO---------OOO--.. - 0x00, 0x07, 0x00, 0x70, // -------------OOO---------OOO--.. - 0x01, 0xff, 0x00, 0x30, // -------OOOOOOOOO----------OO--.. - 0x0f, 0xff, 0xff, 0xf0, // ----OOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x1f, 0xff, 0xff, 0xf0, // ---OOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO--------------.. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--------------.. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--------------.. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--------------.. - 0x38, 0x0f, 0x80, 0x00, // --OOO-------OOOOO-------------.. - 0x38, 0x0f, 0xc0, 0x10, // --OOO-------OOOOOO---------O--.. - 0x3c, 0x3d, 0xe0, 0x70, // --OOOO----OOOO-OOOO------OOO--.. - 0x1f, 0xf8, 0xff, 0xf0, // ---OOOOOOOOOO---OOOOOOOOOOOO--.. - 0x0f, 0xf0, 0x7f, 0xe0, // ----OOOOOOOO-----OOOOOOOOOO---.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 231, char width: 17 - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x1e, 0x02, 0x00, 0x00, // ---OOOO-------O--............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x38, 0x00, 0x00, 0x00, // --OOO------------............... - 0x3c, 0x00, 0x00, 0x00, // --OOOO-----------............... - 0x1c, 0x00, 0x00, 0x00, // ---OOO-----------............... - 0x0f, 0x06, 0x00, 0x00, // ----OOOO-----OO--............... - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO--............... - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO---............... - 0x00, 0x60, 0x00, 0x00, // ---------OO------............... - 0x00, 0x30, 0x00, 0x00, // ----------OO-----............... - 0x00, 0x30, 0x00, 0x00, // ----------OO-----............... - 0x00, 0x38, 0x00, 0x00, // ----------OOO----............... - 0x03, 0x70, 0x00, 0x00, // ------OO-OOO-----............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x00, 0x80, 0x00, 0x00, // --------O--------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 232, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 233, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 234, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xb0, 0x00, 0x00, // -------OO-OO-------............. - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO-----............. - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 235, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x3f, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOO--............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x38, 0x00, 0x00, 0x00, // --OOO--------------............. - 0x3c, 0x00, 0x00, 0x00, // --OOOO-------------............. - 0x1e, 0x00, 0x80, 0x00, // ---OOOO---------O--............. - 0x0f, 0x07, 0x80, 0x00, // ----OOOO-----OOOO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 236, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xe0, 0x00, 0x00, 0x00, // OOO------....................... - 0x70, 0x00, 0x00, 0x00, // -OOO-----....................... - 0x30, 0x00, 0x00, 0x00, // --OO-----....................... - 0x38, 0x00, 0x00, 0x00, // --OOO----....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 237, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x03, 0x80, 0x00, 0x00, // ------OOO....................... - 0x03, 0x00, 0x00, 0x00, // ------OO-....................... - 0x07, 0x00, 0x00, 0x00, // -----OOO-....................... - 0x0e, 0x00, 0x00, 0x00, // ----OOO--....................... - 0x0c, 0x00, 0x00, 0x00, // ----OO---....................... - 0x18, 0x00, 0x00, 0x00, // ---OO----....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 238, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--....................... - 0x36, 0x00, 0x00, 0x00, // --OO-OO--....................... - 0x73, 0x00, 0x00, 0x00, // -OOO--OO-....................... - 0x63, 0x80, 0x00, 0x00, // -OO---OOO....................... - 0xc1, 0x80, 0x00, 0x00, // OO-----OO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 239, char width: 9 - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0xe3, 0x80, 0x00, 0x00, // OOO---OOO....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x1c, 0x00, 0x00, 0x00, // ---OOO---....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - 0x00, 0x00, 0x00, 0x00, // ---------....................... - - // ASCII: 240, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x86, 0x00, 0x00, // ------OOO----OO----............. - 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO----............. - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-------............. - 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO--------............. - 0x1e, 0x70, 0x00, 0x00, // ---OOOO--OOO-------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO-----............. - 0x03, 0xfc, 0x00, 0x00, // ------OOOOOOOO-----............. - 0x07, 0xfe, 0x00, 0x00, // -----OOOOOOOOOO----............. - 0x0f, 0x9f, 0x00, 0x00, // ----OOOOO--OOOOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x03, 0xf8, 0x00, 0x00, // ------OOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 241, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xc6, 0x00, 0x00, // ------OOOO---OO----............. - 0x07, 0xec, 0x00, 0x00, // -----OOOOOO-OO-----............. - 0x06, 0x7c, 0x00, 0x00, // -----OO--OOOOO-----............. - 0x06, 0x38, 0x00, 0x00, // -----OO---OOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0xfc, 0x00, 0x00, // ---OOO--OOOOOO-----............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x07, 0x00, 0x00, // ---OOOO------OOO---............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 242, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 243, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 244, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xb0, 0x00, 0x00, // -------OO-OO-------............. - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO-----............. - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 245, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xc6, 0x00, 0x00, // ------OOOO---OO----............. - 0x07, 0xec, 0x00, 0x00, // -----OOOOOO-OO-----............. - 0x06, 0x7c, 0x00, 0x00, // -----OO--OOOOO-----............. - 0x06, 0x38, 0x00, 0x00, // -----OO---OOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 246, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-------............. - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-----............. - 0x0f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOO----............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x07, 0x00, 0x00, // ---OOO-------OOO---............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO---............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x38, 0x03, 0x80, 0x00, // --OOO---------OOO--............. - 0x3c, 0x07, 0x00, 0x00, // --OOOO-------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO-----............. - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 247, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 248, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x80, 0x00, // ----------------O--............. - 0x03, 0xf1, 0x80, 0x00, // ------OOOOOO---OO--............. - 0x07, 0xff, 0x80, 0x00, // -----OOOOOOOOOOOO--............. - 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOOO---............. - 0x1e, 0x0f, 0x00, 0x00, // ---OOOO-----OOOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x38, 0x1f, 0x00, 0x00, // --OOO------OOOOO---............. - 0x38, 0x1b, 0x80, 0x00, // --OOO------OO-OOO--............. - 0x38, 0x33, 0x80, 0x00, // --OOO-----OO--OOO--............. - 0x38, 0x63, 0x80, 0x00, // --OOO----OO---OOO--............. - 0x38, 0xe3, 0x80, 0x00, // --OOO---OOO---OOO--............. - 0x38, 0xc3, 0x80, 0x00, // --OOO---OO----OOO--............. - 0x39, 0x83, 0x80, 0x00, // --OOO--OO-----OOO--............. - 0x3b, 0x83, 0x80, 0x00, // --OOO-OOO-----OOO--............. - 0x3f, 0x03, 0x80, 0x00, // --OOOOOO------OOO--............. - 0x3e, 0x07, 0x00, 0x00, // --OOOOO------OOO---............. - 0x1c, 0x0f, 0x00, 0x00, // ---OOO------OOOO---............. - 0x1f, 0x1e, 0x00, 0x00, // ---OOOOO---OOOO----............. - 0x3f, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOO-----............. - 0x33, 0xf8, 0x00, 0x00, // --OO--OOOOOOO------............. - 0x60, 0x00, 0x00, 0x00, // -OO----------------............. - 0x20, 0x00, 0x00, 0x00, // --O----------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 249, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x00, 0x00, 0x00, // -----OOO-----------............. - 0x03, 0x80, 0x00, 0x00, // ------OOO----------............. - 0x01, 0x80, 0x00, 0x00, // -------OO----------............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO---------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 250, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x1c, 0x00, 0x00, // -----------OOO-----............. - 0x00, 0x18, 0x00, 0x00, // -----------OO------............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO------............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO-------............. - 0x00, 0x60, 0x00, 0x00, // ---------OO--------............. - 0x00, 0xc0, 0x00, 0x00, // --------OO---------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 251, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO--------............. - 0x00, 0xf0, 0x00, 0x00, // --------OOOO-------............. - 0x01, 0xb0, 0x00, 0x00, // -------OO-OO-------............. - 0x03, 0x98, 0x00, 0x00, // ------OOO--OO------............. - 0x03, 0x1c, 0x00, 0x00, // ------OO---OOO-----............. - 0x06, 0x0c, 0x00, 0x00, // -----OO-----OO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 252, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x07, 0x1c, 0x00, 0x00, // -----OOO---OOO-----............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x03, 0x80, 0x00, // ---OO---------OOO--............. - 0x18, 0x07, 0x80, 0x00, // ---OO--------OOOO--............. - 0x1c, 0x07, 0x80, 0x00, // ---OOO-------OOOO--............. - 0x1c, 0x0f, 0x80, 0x00, // ---OOO------OOOOO--............. - 0x1e, 0x1f, 0x80, 0x00, // ---OOOO----OOOOOO--............. - 0x0f, 0xfb, 0x80, 0x00, // ----OOOOOOOOO-OOO--............. - 0x07, 0xf3, 0x80, 0x00, // -----OOOOOOO--OOO--............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 253, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x38, 0x00, 0x00, // ----------OOO-----.............. - 0x00, 0x30, 0x00, 0x00, // ----------OO------.............. - 0x00, 0x70, 0x00, 0x00, // ---------OOO------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x00, 0xc0, 0x00, 0x00, // --------OO--------.............. - 0x01, 0x80, 0x00, 0x00, // -------OO---------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x00, 0x00, // --OOO---------OO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x06, 0x1c, 0x00, 0x00, // -----OO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO---------.............. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----------.............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO-----------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - - // ASCII: 254, char width: 19 - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0xf8, 0x00, 0x00, // ---OOO--OOOOO------............. - 0x1d, 0xfe, 0x00, 0x00, // ---OOO-OOOOOOOO----............. - 0x1f, 0xff, 0x00, 0x00, // ---OOOOOOOOOOOOO---............. - 0x1f, 0x07, 0x00, 0x00, // ---OOOOO-----OOO---............. - 0x1e, 0x03, 0x80, 0x00, // ---OOOO-------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x01, 0x80, 0x00, // ---OOO---------OO--............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x01, 0xc0, 0x00, // ---OOO---------OOO-............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1c, 0x03, 0x80, 0x00, // ---OOO--------OOO--............. - 0x1e, 0x07, 0x80, 0x00, // ---OOOO------OOOO--............. - 0x1f, 0x0f, 0x00, 0x00, // ---OOOOO----OOOO---............. - 0x1f, 0xfe, 0x00, 0x00, // ---OOOOOOOOOOOO----............. - 0x1d, 0xfc, 0x00, 0x00, // ---OOO-OOOOOOO-----............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x1c, 0x00, 0x00, 0x00, // ---OOO-------------............. - 0x00, 0x00, 0x00, 0x00, // -------------------............. - - // ASCII: 255, char width: 18 - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x0e, 0x38, 0x00, 0x00, // ----OOO---OOO-----.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x70, 0x03, 0x80, 0x00, // -OOO----------OOO-.............. - 0x38, 0x03, 0x00, 0x00, // --OOO---------OO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x38, 0x07, 0x00, 0x00, // --OOO--------OOO--.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x1c, 0x0e, 0x00, 0x00, // ---OOO------OOO---.............. - 0x0c, 0x0e, 0x00, 0x00, // ----OO------OOO---.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x0e, 0x1c, 0x00, 0x00, // ----OOO----OOO----.............. - 0x06, 0x1c, 0x00, 0x00, // -----OO----OOO----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x07, 0x38, 0x00, 0x00, // -----OOO--OOO-----.............. - 0x03, 0xb0, 0x00, 0x00, // ------OOO-OO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x01, 0xe0, 0x00, 0x00, // -------OOOO-------.............. - 0x00, 0xe0, 0x00, 0x00, // --------OOO-------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x01, 0xc0, 0x00, 0x00, // -------OOO--------.............. - 0x03, 0x80, 0x00, 0x00, // ------OOO---------.............. - 0x0f, 0x80, 0x00, 0x00, // ----OOOOO---------.............. - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO----------.............. - 0x3e, 0x00, 0x00, 0x00, // --OOOOO-----------.............. - 0x00, 0x00, 0x00, 0x00, // ------------------.............. -}; - -static const uint8_t dejavu_40_widths[224] = -{ - 10, 12, 14, 26, 19, 29, 24, 8, - 12, 12, 15, 26, 10, 11, 10, 10, - 19, 19, 19, 19, 19, 19, 19, 19, - 19, 19, 10, 10, 26, 26, 26, 16, - 31, 21, 21, 21, 24, 19, 18, 24, - 23, 9, 9, 20, 17, 26, 23, 24, - 18, 24, 21, 19, 19, 22, 21, 30, - 21, 19, 21, 12, 10, 12, 26, 15, - 15, 19, 19, 17, 19, 19, 11, 19, - 19, 9, 9, 18, 9, 30, 19, 19, - 19, 19, 13, 16, 12, 19, 18, 25, - 18, 18, 16, 19, 10, 19, 26, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 10, 10, 10, 10, 10, 10, 10, - 10, 12, 19, 19, 19, 19, 10, 15, - 15, 31, 14, 19, 26, 11, 31, 15, - 15, 26, 12, 12, 15, 19, 19, 10, - 15, 12, 14, 19, 30, 30, 30, 16, - 21, 21, 21, 21, 21, 21, 30, 21, - 19, 19, 19, 19, 9, 9, 9, 9, - 24, 23, 24, 24, 24, 24, 24, 26, - 24, 22, 22, 22, 22, 19, 19, 19, - 19, 19, 19, 19, 19, 19, 30, 17, - 19, 19, 19, 19, 9, 9, 9, 9, - 19, 19, 19, 19, 19, 19, 19, 26, - 19, 19, 19, 19, 19, 18, 19, 18, -}; - -static const font_t dejavu_40_dsc = -{ - 224, // Letter count - 32, // First ascii code - 4, // Letters width (bytes) - 40, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_40_widths, - dejavu_40_bitmaps -}; - -const font_t * dejavu_40_get_dsc(void) -{ - return &dejavu_40_dsc; -} - - -#endif diff --git a/lv_misc/fonts/dejavu_40.h b/lv_misc/fonts/dejavu_40.h deleted file mode 100644 index 1eedfbc83..000000000 --- a/lv_misc/fonts/dejavu_40.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_40_H -#define DEJAVU_40_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_40 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_40_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_60.c b/lv_misc/fonts/dejavu_60.c deleted file mode 100644 index 445754ec1..000000000 --- a/lv_misc/fonts/dejavu_60.c +++ /dev/null @@ -1,13980 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_60 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_60_bitmaps[80640] = -{ - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 33, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOO--------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 34, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, // ----OOOO-----OOOO-----.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - - // ASCII: 35, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x70, 0x1e, 0x00, 0x00, // -----------------OOO-------OOOO--------......... - 0x00, 0x00, 0xf0, 0x1c, 0x00, 0x00, // ----------------OOOO-------OOO---------......... - 0x00, 0x00, 0xf0, 0x1c, 0x00, 0x00, // ----------------OOOO-------OOO---------......... - 0x00, 0x00, 0xf0, 0x3c, 0x00, 0x00, // ----------------OOOO------OOOO---------......... - 0x00, 0x00, 0xe0, 0x3c, 0x00, 0x00, // ----------------OOO-------OOOO---------......... - 0x00, 0x01, 0xe0, 0x3c, 0x00, 0x00, // ---------------OOOO-------OOOO---------......... - 0x00, 0x01, 0xe0, 0x38, 0x00, 0x00, // ---------------OOOO-------OOO----------......... - 0x00, 0x01, 0xe0, 0x78, 0x00, 0x00, // ---------------OOOO------OOOO----------......... - 0x00, 0x01, 0xe0, 0x78, 0x00, 0x00, // ---------------OOOO------OOOO----------......... - 0x00, 0x01, 0xc0, 0x78, 0x00, 0x00, // ---------------OOO-------OOOO----------......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......... - 0x00, 0x07, 0x80, 0xf0, 0x00, 0x00, // -------------OOOO-------OOOO-----------......... - 0x00, 0x07, 0x80, 0xe0, 0x00, 0x00, // -------------OOOO-------OOO------------......... - 0x00, 0x07, 0x81, 0xe0, 0x00, 0x00, // -------------OOOO------OOOO------------......... - 0x00, 0x07, 0x81, 0xe0, 0x00, 0x00, // -------------OOOO------OOOO------------......... - 0x00, 0x07, 0x01, 0xe0, 0x00, 0x00, // -------------OOO-------OOOO------------......... - 0x00, 0x0f, 0x01, 0xc0, 0x00, 0x00, // ------------OOOO-------OOO-------------......... - 0x00, 0x0f, 0x01, 0xc0, 0x00, 0x00, // ------------OOOO-------OOO-------------......... - 0x00, 0x0f, 0x03, 0xc0, 0x00, 0x00, // ------------OOOO------OOOO-------------......... - 0x00, 0x0e, 0x03, 0xc0, 0x00, 0x00, // ------------OOO-------OOOO-------------......... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......... - 0x00, 0x1c, 0x07, 0x80, 0x00, 0x00, // -----------OOO-------OOOO--------------......... - 0x00, 0x1c, 0x07, 0x80, 0x00, 0x00, // -----------OOO-------OOOO--------------......... - 0x00, 0x3c, 0x07, 0x00, 0x00, 0x00, // ----------OOOO-------OOO---------------......... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO---------------......... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO---------------......... - 0x00, 0x38, 0x0f, 0x00, 0x00, 0x00, // ----------OOO-------OOOO---------------......... - 0x00, 0x78, 0x0e, 0x00, 0x00, 0x00, // ---------OOOO-------OOO----------------......... - 0x00, 0x78, 0x0e, 0x00, 0x00, 0x00, // ---------OOOO-------OOO----------------......... - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO----------------......... - 0x00, 0x70, 0x1e, 0x00, 0x00, 0x00, // ---------OOO-------OOOO----------------......... - 0x00, 0x70, 0x1e, 0x00, 0x00, 0x00, // ---------OOO-------OOOO----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 36, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------.................. - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO------.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x07, 0xf3, 0x1f, 0x00, 0x00, 0x00, // -----OOOOOOO--OO---OOOOO------.................. - 0x07, 0xc3, 0x03, 0x00, 0x00, 0x00, // -----OOOOO----OO------OO------.................. - 0x0f, 0x83, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OOOO------OO--------------.................. - 0x0f, 0x83, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----OO--------------.................. - 0x0f, 0x83, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----OO--------------.................. - 0x07, 0xe3, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---OO--------------.................. - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO--------------.................. - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------.................. - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO-------.................. - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO------.................. - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO-----.................. - 0x00, 0x03, 0x1f, 0x80, 0x00, 0x00, // --------------OO---OOOOOO-----.................. - 0x00, 0x03, 0x0f, 0xc0, 0x00, 0x00, // --------------OO----OOOOOO----.................. - 0x00, 0x03, 0x07, 0xc0, 0x00, 0x00, // --------------OO-----OOOOO----.................. - 0x00, 0x03, 0x07, 0xc0, 0x00, 0x00, // --------------OO-----OOOOO----.................. - 0x00, 0x03, 0x03, 0xc0, 0x00, 0x00, // --------------OO------OOOO----.................. - 0x00, 0x03, 0x03, 0xc0, 0x00, 0x00, // --------------OO------OOOO----.................. - 0x00, 0x03, 0x07, 0xc0, 0x00, 0x00, // --------------OO-----OOOOO----.................. - 0x00, 0x03, 0x07, 0x80, 0x00, 0x00, // --------------OO-----OOOO-----.................. - 0x0c, 0x03, 0x0f, 0x80, 0x00, 0x00, // ----OO--------OO----OOOOO-----.................. - 0x0f, 0x03, 0x1f, 0x80, 0x00, 0x00, // ----OOOO------OO---OOOOOO-----.................. - 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 37, char width: 44 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x20, 0x00, 0x01, 0xe0, 0x00, // ----------O--------------------OOOO---------.... - 0x03, 0xfc, 0x00, 0x03, 0xc0, 0x00, // ------OOOOOOOO----------------OOOO----------.... - 0x07, 0xff, 0x00, 0x03, 0xc0, 0x00, // -----OOOOOOOOOOO--------------OOOO----------.... - 0x0f, 0xff, 0x00, 0x07, 0x80, 0x00, // ----OOOOOOOOOOOO-------------OOOO-----------.... - 0x0f, 0x07, 0x80, 0x07, 0x80, 0x00, // ----OOOO-----OOOO------------OOOO-----------.... - 0x1e, 0x03, 0x80, 0x0f, 0x00, 0x00, // ---OOOO-------OOO-----------OOOO------------.... - 0x1e, 0x03, 0xc0, 0x0e, 0x00, 0x00, // ---OOOO-------OOOO----------OOO-------------.... - 0x1e, 0x03, 0xc0, 0x1e, 0x00, 0x00, // ---OOOO-------OOOO---------OOOO-------------.... - 0x1c, 0x01, 0xc0, 0x1c, 0x00, 0x00, // ---OOO---------OOO---------OOO--------------.... - 0x1c, 0x01, 0xc0, 0x3c, 0x00, 0x00, // ---OOO---------OOO--------OOOO--------------.... - 0x1c, 0x01, 0xc0, 0x38, 0x00, 0x00, // ---OOO---------OOO--------OOO---------------.... - 0x1c, 0x01, 0xc0, 0x78, 0x00, 0x00, // ---OOO---------OOO-------OOOO---------------.... - 0x1c, 0x01, 0xc0, 0xf0, 0x00, 0x00, // ---OOO---------OOO------OOOO----------------.... - 0x1c, 0x03, 0xc0, 0xf0, 0x00, 0x00, // ---OOO--------OOOO------OOOO----------------.... - 0x1e, 0x03, 0xc1, 0xe0, 0x00, 0x00, // ---OOOO-------OOOO-----OOOO-----------------.... - 0x1e, 0x03, 0xc1, 0xe0, 0x00, 0x00, // ---OOOO-------OOOO-----OOOO-----------------.... - 0x0f, 0x07, 0x83, 0xc0, 0x00, 0x00, // ----OOOO-----OOOO-----OOOO------------------.... - 0x0f, 0x8f, 0x83, 0x80, 0x00, 0x00, // ----OOOOO---OOOOO-----OOO-------------------.... - 0x07, 0xff, 0x07, 0x80, 0x00, 0x00, // -----OOOOOOOOOOO-----OOOO-------------------.... - 0x03, 0xfe, 0x07, 0x01, 0xf8, 0x00, // ------OOOOOOOOO------OOO-------OOOOOO-------.... - 0x00, 0xf8, 0x0f, 0x03, 0xfc, 0x00, // --------OOOOO-------OOOO------OOOOOOOO------.... - 0x00, 0x00, 0x0e, 0x07, 0xfe, 0x00, // --------------------OOO------OOOOOOOOOO-----.... - 0x00, 0x00, 0x1e, 0x0f, 0x9f, 0x00, // -------------------OOOO-----OOOOO--OOOOO----.... - 0x00, 0x00, 0x1c, 0x1e, 0x07, 0x80, // -------------------OOO-----OOOO------OOOO---.... - 0x00, 0x00, 0x3c, 0x1e, 0x07, 0x80, // ------------------OOOO-----OOOO------OOOO---.... - 0x00, 0x00, 0x78, 0x1c, 0x03, 0x80, // -----------------OOOO------OOO--------OOO---.... - 0x00, 0x00, 0x78, 0x3c, 0x03, 0xc0, // -----------------OOOO-----OOOO--------OOOO--.... - 0x00, 0x00, 0xf0, 0x3c, 0x03, 0xc0, // ----------------OOOO------OOOO--------OOOO--.... - 0x00, 0x00, 0xe0, 0x3c, 0x03, 0xc0, // ----------------OOO-------OOOO--------OOOO--.... - 0x00, 0x01, 0xe0, 0x3c, 0x03, 0xc0, // ---------------OOOO-------OOOO--------OOOO--.... - 0x00, 0x01, 0xc0, 0x3c, 0x03, 0xc0, // ---------------OOO--------OOOO--------OOOO--.... - 0x00, 0x03, 0xc0, 0x3c, 0x03, 0xc0, // --------------OOOO--------OOOO--------OOOO--.... - 0x00, 0x03, 0x80, 0x3c, 0x03, 0xc0, // --------------OOO---------OOOO--------OOOO--.... - 0x00, 0x07, 0x80, 0x1c, 0x03, 0x80, // -------------OOOO----------OOO--------OOO---.... - 0x00, 0x07, 0x00, 0x1e, 0x07, 0x80, // -------------OOO-----------OOOO------OOOO---.... - 0x00, 0x0f, 0x00, 0x1f, 0x0f, 0x80, // ------------OOOO-----------OOOOO----OOOOO---.... - 0x00, 0x1e, 0x00, 0x0f, 0xff, 0x00, // -----------OOOO-------------OOOOOOOOOOOO----.... - 0x00, 0x1e, 0x00, 0x07, 0xfe, 0x00, // -----------OOOO--------------OOOOOOOOOO-----.... - 0x00, 0x3c, 0x00, 0x03, 0xfc, 0x00, // ----------OOOO----------------OOOOOOOO------.... - 0x00, 0x3c, 0x00, 0x00, 0xf0, 0x00, // ----------OOOO------------------OOOO--------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------.... - - // ASCII: 38, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, // ---------------OO-------------------............ - 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOO--------------............ - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO------------............ - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------------............ - 0x00, 0xff, 0x7f, 0x00, 0x00, 0x00, // --------OOOOOOOO-OOOOOOO------------............ - 0x00, 0xf8, 0x07, 0x00, 0x00, 0x00, // --------OOOOO--------OOO------------............ - 0x01, 0xf0, 0x01, 0x00, 0x00, 0x00, // -------OOOOO-----------O------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------------------............ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------------............ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------------............ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------------............ - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO---------------------............ - 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------------------............ - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-------------------............ - 0x03, 0xef, 0xc0, 0x07, 0x80, 0x00, // ------OOOOO-OOOOOO-----------OOOO---............ - 0x07, 0xc7, 0xe0, 0x07, 0x80, 0x00, // -----OOOOO---OOOOOO----------OOOO---............ - 0x0f, 0x83, 0xf0, 0x07, 0x80, 0x00, // ----OOOOO-----OOOOOO---------OOOO---............ - 0x0f, 0x01, 0xf8, 0x07, 0x80, 0x00, // ----OOOO-------OOOOOO--------OOOO---............ - 0x1f, 0x00, 0xf8, 0x0f, 0x80, 0x00, // ---OOOOO--------OOOOO-------OOOOO---............ - 0x1f, 0x00, 0x7c, 0x0f, 0x00, 0x00, // ---OOOOO---------OOOOO------OOOO----............ - 0x1e, 0x00, 0x7e, 0x0f, 0x00, 0x00, // ---OOOO----------OOOOOO-----OOOO----............ - 0x1e, 0x00, 0x3f, 0x1f, 0x00, 0x00, // ---OOOO-----------OOOOOO---OOOOO----............ - 0x1e, 0x00, 0x1f, 0x9e, 0x00, 0x00, // ---OOOO------------OOOOOO--OOOO-----............ - 0x1e, 0x00, 0x0f, 0xfe, 0x00, 0x00, // ---OOOO-------------OOOOOOOOOOO-----............ - 0x1f, 0x00, 0x07, 0xfc, 0x00, 0x00, // ---OOOOO-------------OOOOOOOOO------............ - 0x1f, 0x00, 0x03, 0xf8, 0x00, 0x00, // ---OOOOO--------------OOOOOOO-------............ - 0x0f, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOO---------------OOOOOO-------............ - 0x0f, 0x80, 0x01, 0xf8, 0x00, 0x00, // ----OOOOO--------------OOOOOO-------............ - 0x0f, 0xc0, 0x03, 0xfc, 0x00, 0x00, // ----OOOOOO------------OOOOOOOO------............ - 0x07, 0xe0, 0x07, 0xfe, 0x00, 0x00, // -----OOOOOO----------OOOOOOOOOO-----............ - 0x03, 0xfc, 0x7f, 0xff, 0x00, 0x00, // ------OOOOOOOO---OOOOOOOOOOOOOOO----............ - 0x01, 0xff, 0xff, 0x9f, 0x80, 0x00, // -------OOOOOOOOOOOOOOOOOO--OOOOOO---............ - 0x00, 0xff, 0xfe, 0x0f, 0xc0, 0x00, // --------OOOOOOOOOOOOOOO-----OOOOOO--............ - 0x00, 0x3f, 0xf8, 0x07, 0xe0, 0x00, // ----------OOOOOOOOOOO--------OOOOOO-............ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 39, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 40, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, // ---------OOO------.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO-----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO----.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 41, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO----------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOO---------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----.............................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO--------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 42, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x30, 0x38, 0x08, 0x00, 0x00, 0x00, // --OO------OOO-------O--......................... - 0x38, 0x38, 0x3c, 0x00, 0x00, 0x00, // --OOO-----OOO-----OOOO-......................... - 0x3e, 0x38, 0x7c, 0x00, 0x00, 0x00, // --OOOOO---OOO----OOOOO-......................... - 0x1f, 0x39, 0xf0, 0x00, 0x00, 0x00, // ---OOOOO--OOO--OOOOO---......................... - 0x07, 0xfb, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOO-OOOO-----......................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------......................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------......................... - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-------......................... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO-----......................... - 0x0f, 0xbb, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-OOO-OOOOO----......................... - 0x1f, 0x38, 0xf8, 0x00, 0x00, 0x00, // ---OOOOO--OOO---OOOOO--......................... - 0x3c, 0x38, 0x7c, 0x00, 0x00, 0x00, // --OOOO----OOO----OOOOO-......................... - 0x38, 0x38, 0x18, 0x00, 0x00, 0x00, // --OOO-----OOO------OO--......................... - 0x00, 0x38, 0x08, 0x00, 0x00, 0x00, // ----------OOO-------O--......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 43, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 44, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------................................. - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO--------................................. - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO--------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 45, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - - // ASCII: 46, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 47, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 48, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO----------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO--------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO------.................. - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO------.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----OOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO-----.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x07, 0xe0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOOO--------OOOOO------.................. - 0x03, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOO------.................. - 0x01, 0xfc, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOO--OOOOOOO-------.................. - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO--------.................. - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO---------.................. - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO----------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 49, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO------------.................. - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO---OOOOO------------.................. - 0x04, 0x07, 0xc0, 0x00, 0x00, 0x00, // -----O-------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 50, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO---------------.................. - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO-----------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x0f, 0x80, 0x7e, 0x00, 0x00, 0x00, // ----OOOOO--------OOOOOO-------.................. - 0x0e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----OOO-----------OOOOOO------.................. - 0x08, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----O--------------OOOOO------.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO-------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO---------.................. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO----------.................. - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-----------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------------.................. - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------------.................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------.................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------------.................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 51, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -------------OO---------------.................. - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO----------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----OOO---------OOOOOOO------.................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------------------OOOOOO------.................. - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO-------.................. - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----------------OOOOOOO------.................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x08, 0x00, 0x1f, 0x80, 0x00, 0x00, // ----O--------------OOOOOO-----.................. - 0x0e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----OOO-----------OOOOOO------.................. - 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 52, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO--------.................. - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO--------.................. - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOO--------.................. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------.................. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------.................. - 0x00, 0x07, 0xbc, 0x00, 0x00, 0x00, // -------------OOOO-OOOO--------.................. - 0x00, 0x07, 0xbc, 0x00, 0x00, 0x00, // -------------OOOO-OOOO--------.................. - 0x00, 0x0f, 0x3c, 0x00, 0x00, 0x00, // ------------OOOO--OOOO--------.................. - 0x00, 0x1e, 0x3c, 0x00, 0x00, 0x00, // -----------OOOO---OOOO--------.................. - 0x00, 0x1e, 0x3c, 0x00, 0x00, 0x00, // -----------OOOO---OOOO--------.................. - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO--------.................. - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO--------.................. - 0x00, 0x78, 0x3c, 0x00, 0x00, 0x00, // ---------OOOO-----OOOO--------.................. - 0x00, 0x78, 0x3c, 0x00, 0x00, 0x00, // ---------OOOO-----OOOO--------.................. - 0x00, 0xf0, 0x3c, 0x00, 0x00, 0x00, // --------OOOO------OOOO--------.................. - 0x01, 0xe0, 0x3c, 0x00, 0x00, 0x00, // -------OOOO-------OOOO--------.................. - 0x01, 0xe0, 0x3c, 0x00, 0x00, 0x00, // -------OOOO-------OOOO--------.................. - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO--------.................. - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO--------.................. - 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, // -----OOOO---------OOOO--------.................. - 0x0f, 0x80, 0x3c, 0x00, 0x00, 0x00, // ----OOOOO---------OOOO--------.................. - 0x0f, 0x00, 0x3c, 0x00, 0x00, 0x00, // ----OOOO----------OOOO--------.................. - 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, // ---OOOO-----------OOOO--------.................. - 0x1e, 0x00, 0x3c, 0x00, 0x00, 0x00, // ---OOOO-----------OOOO--------.................. - 0x3c, 0x00, 0x3c, 0x00, 0x00, 0x00, // --OOOO------------OOOO--------.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 53, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xbf, 0x80, 0x00, 0x00, 0x00, // -----OOOO-OOOOOOO-------------.................. - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO--------.................. - 0x07, 0xe1, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOO----OOOOOOOO-------.................. - 0x04, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----O-----------OOOOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-----.................. - 0x08, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----O-------------OOOOOO------.................. - 0x0e, 0x00, 0x7f, 0x00, 0x00, 0x00, // ----OOO----------OOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-----------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 54, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // -----------------O------------.................. - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-------.................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO-----.................. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO-----.................. - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO-----.................. - 0x01, 0xfc, 0x03, 0x80, 0x00, 0x00, // -------OOOOOOO--------OOO-----.................. - 0x01, 0xf0, 0x00, 0x80, 0x00, 0x00, // -------OOOOO------------O-----.................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------.................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------------.................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOO-----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x1f, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---OOOOO-OOOOOOOOOOOOOO-------.................. - 0x1f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---OOOOO-OOOOOOOOOOOOOOO------.................. - 0x1f, 0xf8, 0x3f, 0x80, 0x00, 0x00, // ---OOOOOOOOOO-----OOOOOOO-----.................. - 0x1f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ---OOOOOOOO---------OOOOO-----.................. - 0x1f, 0xc0, 0x0f, 0xc0, 0x00, 0x00, // ---OOOOOOO----------OOOOOO----.................. - 0x1f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ---OOOOOOO-----------OOOOO----.................. - 0x1f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ---OOOOOO-------------OOOO----.................. - 0x1f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ---OOOOOO-------------OOOOO---.................. - 0x1f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ---OOOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x07, 0x80, 0x03, 0xc0, 0x00, 0x00, // -----OOOO-------------OOOO----.................. - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO----.................. - 0x07, 0xc0, 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-----------OOOOO----.................. - 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ------OOOOO---------OOOOO-----.................. - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOO-------OOOOOO-----.................. - 0x01, 0xfc, 0x7f, 0x00, 0x00, 0x00, // -------OOOOOOO---OOOOOOO------.................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-------.................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------.................. - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO---------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 55, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO----.................. - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO----.................. - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO----.................. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO----------.................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO----------.................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO----------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-----------.................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-----------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 56, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO----------.................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO--------.................. - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-------.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x07, 0xe0, 0x1f, 0x80, 0x00, 0x00, // -----OOOOOO--------OOOOOO-----.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO------.................. - 0x03, 0xf0, 0x3e, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOO-------.................. - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO--------.................. - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO----------.................. - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO---------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO------.................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO-----------OOOOOO----.................. - 0x0f, 0xe0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOO--------OOOOOO-----.................. - 0x07, 0xfc, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOO--OOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 57, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -------------OO---------------.................. - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------.................. - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO---------.................. - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO--------.................. - 0x03, 0xfd, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOOOOO-------.................. - 0x07, 0xe0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOO-------.................. - 0x0f, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOO------.................. - 0x0f, 0x80, 0x0f, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOO------.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO----.................. - 0x1f, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ---OOOOO------------OOOOOO----.................. - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO-----------OOOOOO----.................. - 0x0f, 0x80, 0x1f, 0xc0, 0x00, 0x00, // ----OOOOO----------OOOOOOO----.................. - 0x0f, 0xc0, 0x1f, 0xc0, 0x00, 0x00, // ----OOOOOO---------OOOOOOO----.................. - 0x07, 0xe0, 0x7f, 0xc0, 0x00, 0x00, // -----OOOOOO------OOOOOOOOO----.................. - 0x03, 0xff, 0xfb, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOOOOOO-OOOO----.................. - 0x01, 0xff, 0xf3, 0xc0, 0x00, 0x00, // -------OOOOOOOOOOOOO--OOOO----.................. - 0x00, 0xff, 0xe3, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOO---OOOO----.................. - 0x00, 0x3f, 0xc7, 0xc0, 0x00, 0x00, // ----------OOOOOOOO---OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-------.................. - 0x06, 0x00, 0xfe, 0x00, 0x00, 0x00, // -----OO---------OOOOOOO-------.................. - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO--------.................. - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---------.................. - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------.................. - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------.................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 58, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 59, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO---------................................ - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO---------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 60, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, // --------------------------------OO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, // ---------------------------OOOOOOO-----......... - 0x00, 0x00, 0x00, 0x7f, 0xc0, 0x00, // -------------------------OOOOOOOOO-----......... - 0x00, 0x00, 0x01, 0xff, 0xc0, 0x00, // -----------------------OOOOOOOOOOO-----......... - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, // --------------------OOOOOOOOOOO--------......... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......... - 0x00, 0x01, 0xff, 0xc0, 0x00, 0x00, // ---------------OOOOOOOOOOO-------------......... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......... - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO------------------......... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO-----------------------......... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-------------------------......... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------------------......... - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO---------------------......... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-------------------......... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO----------------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, // -----------------OOOOOOOOOOO-----------......... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, // -------------------OOOOOOOOOOO---------......... - 0x00, 0x00, 0x03, 0xff, 0x80, 0x00, // ----------------------OOOOOOOOOOO------......... - 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // ------------------------OOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, // ---------------------------OOOOOOO-----......... - 0x00, 0x00, 0x00, 0x07, 0xc0, 0x00, // -----------------------------OOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, // --------------------------------OO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 61, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 62, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OO--------------------------------......... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------------------......... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------------......... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-------------------------......... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO----------------------......... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......... - 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOO-----------------......... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, // ---------------OOOOOOOOOOOO------------......... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......... - 0x00, 0x00, 0x01, 0xff, 0xc0, 0x00, // -----------------------OOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x7f, 0xc0, 0x00, // -------------------------OOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, // ----------------------------OOOOOO-----......... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, // --------------------------OOOOOOOO-----......... - 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // ------------------------OOOOOOOOOO-----......... - 0x00, 0x00, 0x07, 0xff, 0x80, 0x00, // ---------------------OOOOOOOOOOOO------......... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, // -------------------OOOOOOOOOOO---------......... - 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOO-----------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO----------------......... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-------------------......... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO---------------------......... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------------------......... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------------......... - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO-------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 63, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, // -----------OO------------....................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--------....................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO------....................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----....................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----....................... - 0x1f, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---OOOOO-------OOOOOO----....................... - 0x1c, 0x00, 0xf8, 0x00, 0x00, 0x00, // ---OOO----------OOOOO----....................... - 0x10, 0x00, 0x78, 0x00, 0x00, 0x00, // ---O-------------OOOO----....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----....................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----....................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO----....................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO------....................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-------....................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO--------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO---------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - - // ASCII: 64, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, // -----------------------OOO---------------------. - 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x00, // -----------------OOOOOOOOOOOOOO----------------. - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, // ---------------OOOOOOOOOOOOOOOOOO--------------. - 0x00, 0x07, 0xff, 0xff, 0xe0, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOO------------. - 0x00, 0x0f, 0xf0, 0x0f, 0xf0, 0x00, // ------------OOOOOOOO--------OOOOOOOO-----------. - 0x00, 0x1f, 0x80, 0x01, 0xf8, 0x00, // -----------OOOOOO--------------OOOOOO----------. - 0x00, 0x3e, 0x00, 0x00, 0x7c, 0x00, // ----------OOOOO------------------OOOOO---------. - 0x00, 0x7c, 0x00, 0x00, 0x3e, 0x00, // ---------OOOOO--------------------OOOOO--------. - 0x00, 0xf0, 0x00, 0x00, 0x1f, 0x00, // --------OOOO-----------------------OOOOO-------. - 0x01, 0xe0, 0x00, 0x00, 0x0f, 0x00, // -------OOOO-------------------------OOOO-------. - 0x03, 0xe0, 0x00, 0x00, 0x07, 0x80, // ------OOOOO--------------------------OOOO------. - 0x03, 0xc0, 0x00, 0x00, 0x03, 0xc0, // ------OOOO----------------------------OOOO-----. - 0x07, 0x80, 0x0f, 0xc3, 0x83, 0xc0, // -----OOOO-----------OOOOOO----OOO-----OOOO-----. - 0x07, 0x80, 0x3f, 0xf3, 0x81, 0xc0, // -----OOOO---------OOOOOOOOOO--OOO------OOO-----. - 0x07, 0x00, 0x7f, 0xfb, 0x81, 0xe0, // -----OOO---------OOOOOOOOOOOO-OOO------OOOO----. - 0x0f, 0x00, 0xff, 0xff, 0x80, 0xe0, // ----OOOO--------OOOOOOOOOOOOOOOOO-------OOO----. - 0x0e, 0x01, 0xf0, 0x3f, 0x80, 0xe0, // ----OOO--------OOOOO------OOOOOOO-------OOO----. - 0x0e, 0x01, 0xe0, 0x0f, 0x80, 0xe0, // ----OOO--------OOOO---------OOOOO-------OOO----. - 0x1e, 0x03, 0xe0, 0x0f, 0x80, 0xe0, // ---OOOO-------OOOOO---------OOOOO-------OOO----. - 0x1e, 0x03, 0xc0, 0x07, 0x80, 0xe0, // ---OOOO-------OOOO-----------OOOO-------OOO----. - 0x1c, 0x03, 0xc0, 0x07, 0x80, 0xf0, // ---OOO--------OOOO-----------OOOO-------OOOO---. - 0x1c, 0x03, 0xc0, 0x07, 0x80, 0xe0, // ---OOO--------OOOO-----------OOOO-------OOO----. - 0x1c, 0x03, 0x80, 0x07, 0x80, 0xe0, // ---OOO--------OOO------------OOOO-------OOO----. - 0x1c, 0x03, 0x80, 0x03, 0x80, 0xe0, // ---OOO--------OOO-------------OOO-------OOO----. - 0x1c, 0x03, 0x80, 0x07, 0x80, 0xe0, // ---OOO--------OOO------------OOOO-------OOO----. - 0x1c, 0x03, 0xc0, 0x07, 0x81, 0xe0, // ---OOO--------OOOO-----------OOOO------OOOO----. - 0x1e, 0x03, 0xc0, 0x07, 0x81, 0xe0, // ---OOOO-------OOOO-----------OOOO------OOOO----. - 0x1e, 0x03, 0xc0, 0x07, 0x81, 0xc0, // ---OOOO-------OOOO-----------OOOO------OOO-----. - 0x0e, 0x01, 0xe0, 0x0f, 0x83, 0xc0, // ----OOO--------OOOO---------OOOOO-----OOOO-----. - 0x0e, 0x01, 0xe0, 0x0f, 0x87, 0x80, // ----OOO--------OOOO---------OOOOO----OOOO------. - 0x0e, 0x01, 0xf8, 0x3f, 0x9f, 0x00, // ----OOO--------OOOOOO-----OOOOOOO--OOOOO-------. - 0x0f, 0x00, 0xff, 0xfb, 0xfe, 0x00, // ----OOOO--------OOOOOOOOOOOOO-OOOOOOOOO--------. - 0x07, 0x00, 0x7f, 0xfb, 0xfc, 0x00, // -----OOO---------OOOOOOOOOOOO-OOOOOOOO---------. - 0x07, 0x80, 0x3f, 0xe3, 0xf0, 0x00, // -----OOOO---------OOOOOOOOO---OOOOOO-----------. - 0x03, 0x80, 0x0f, 0x83, 0x80, 0x00, // ------OOO-----------OOOOO-----OOO--------------. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------------------------------. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------------------------. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----------------------------------. - 0x00, 0xf8, 0x00, 0x00, 0x20, 0x00, // --------OOOOO---------------------O------------. - 0x00, 0x7c, 0x00, 0x00, 0x70, 0x00, // ---------OOOOO-------------------OOO-----------. - 0x00, 0x3f, 0x00, 0x01, 0xf0, 0x00, // ----------OOOOOO---------------OOOOO-----------. - 0x00, 0x1f, 0xc0, 0x07, 0xf0, 0x00, // -----------OOOOOOO-----------OOOOOOO-----------. - 0x00, 0x0f, 0xff, 0xff, 0xe0, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOO------------. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------. - 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOO----------------. - 0x00, 0x00, 0x1f, 0xf0, 0x00, 0x00, // -------------------OOOOOOOOO-------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - - // ASCII: 65, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 66, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO------------................ - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO---------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-------................ - 0x07, 0x80, 0x3f, 0xc0, 0x00, 0x00, // -----OOOO---------OOOOOOOO------................ - 0x07, 0x80, 0x07, 0xe0, 0x00, 0x00, // -----OOOO------------OOOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO------................ - 0x07, 0x80, 0x3f, 0xc0, 0x00, 0x00, // -----OOOO---------OOOOOOOO------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO----------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO------................ - 0x07, 0x80, 0x0f, 0xe0, 0x00, 0x00, // -----OOOO-----------OOOOOOO-----................ - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-----................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x00, 0xf0, 0x00, 0x00, // -----OOOO---------------OOOO----................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO---................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO----................ - 0x07, 0x80, 0x03, 0xf0, 0x00, 0x00, // -----OOOO-------------OOOOOO----................ - 0x07, 0x80, 0x1f, 0xe0, 0x00, 0x00, // -----OOOO----------OOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO------................ - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-------................ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO--------................ - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-----------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 67, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, // ------------------OO-------------............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----............... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---............... - 0x01, 0xfe, 0x00, 0xfc, 0x00, 0x00, // -------OOOOOOOO---------OOOOOO---............... - 0x03, 0xf8, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOOO-------------OOOO---............... - 0x03, 0xf0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOOO----------------OO---............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x03, 0xe0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOO-----------------OO---............... - 0x03, 0xf8, 0x00, 0x1c, 0x00, 0x00, // ------OOOOOOO--------------OOO---............... - 0x01, 0xfc, 0x00, 0x7c, 0x00, 0x00, // -------OOOOOOO-----------OOOOO---............... - 0x00, 0xff, 0xef, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOO-OOOOOOOOOO---............... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO---............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - - // ASCII: 68, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-----------------............ - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-------------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---------............ - 0x07, 0x80, 0x7f, 0xf0, 0x00, 0x00, // -----OOOO--------OOOOOOOOOOO--------............ - 0x07, 0x80, 0x03, 0xf8, 0x00, 0x00, // -----OOOO-------------OOOOOOO-------............ - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO------............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO-----............ - 0x07, 0x80, 0x00, 0x3f, 0x00, 0x00, // -----OOOO-----------------OOOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x3f, 0x00, 0x00, // -----OOOO-----------------OOOOOO----............ - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO-----............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO------............ - 0x07, 0x80, 0x03, 0xf8, 0x00, 0x00, // -----OOOO-------------OOOOOOO-------............ - 0x07, 0x80, 0x3f, 0xf8, 0x00, 0x00, // -----OOOO---------OOOOOOOOOOO-------............ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO------------............ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 69, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 70, char width: 27 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - - // ASCII: 71, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, // -------------------OO---------------............ - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO----------............ - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO----............ - 0x01, 0xfe, 0x00, 0x7f, 0x00, 0x00, // -------OOOOOOOO----------OOOOOOO----............ - 0x03, 0xf8, 0x00, 0x1f, 0x00, 0x00, // ------OOOOOOO--------------OOOOO----............ - 0x03, 0xf0, 0x00, 0x07, 0x00, 0x00, // ------OOOOOO-----------------OOO----............ - 0x07, 0xe0, 0x00, 0x03, 0x00, 0x00, // -----OOOOOO-------------------OO----............ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------------------............ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------------............ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------------............ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------------............ - 0x1e, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOO-------------OOOOOOOOOOOO----............ - 0x1e, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOO-------------OOOOOOOOOOOO----............ - 0x1f, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOOO------------OOOOOOOOOOOO----............ - 0x1f, 0x00, 0x0f, 0xff, 0x00, 0x00, // ---OOOOO------------OOOOOOOOOOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x1f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ---OOOOO--------------------OOOO----............ - 0x0f, 0x00, 0x00, 0x0f, 0x00, 0x00, // ----OOOO--------------------OOOO----............ - 0x0f, 0x80, 0x00, 0x0f, 0x00, 0x00, // ----OOOOO-------------------OOOO----............ - 0x0f, 0x80, 0x00, 0x0f, 0x00, 0x00, // ----OOOOO-------------------OOOO----............ - 0x07, 0xc0, 0x00, 0x0f, 0x00, 0x00, // -----OOOOO------------------OOOO----............ - 0x07, 0xe0, 0x00, 0x0f, 0x00, 0x00, // -----OOOOOO-----------------OOOO----............ - 0x03, 0xe0, 0x00, 0x0f, 0x00, 0x00, // ------OOOOO-----------------OOOO----............ - 0x03, 0xf8, 0x00, 0x0f, 0x00, 0x00, // ------OOOOOOO---------------OOOO----............ - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, // -------OOOOOOO------------OOOOOO----............ - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO----............ - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, // -------------OOOOOOOOOOOOOO---------............ - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO-------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 72, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO----............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - - // ASCII: 73, char width: 14 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 74, char width: 14 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----.................................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------.................................. - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO------.................................. - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-------.................................. - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-------.................................. - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO--------.................................. - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO----------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 75, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-................. - 0x07, 0x80, 0x01, 0xf8, 0x00, 0x00, // -----OOOO--------------OOOOOO--................. - 0x07, 0x80, 0x03, 0xf0, 0x00, 0x00, // -----OOOO-------------OOOOOO---................. - 0x07, 0x80, 0x07, 0xe0, 0x00, 0x00, // -----OOOO------------OOOOOO----................. - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO-----................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO------................. - 0x07, 0x80, 0x3f, 0x00, 0x00, 0x00, // -----OOOO---------OOOOOO-------................. - 0x07, 0x80, 0x7e, 0x00, 0x00, 0x00, // -----OOOO--------OOOOOO--------................. - 0x07, 0x80, 0xfc, 0x00, 0x00, 0x00, // -----OOOO-------OOOOOO---------................. - 0x07, 0x80, 0xf8, 0x00, 0x00, 0x00, // -----OOOO-------OOOOO----------................. - 0x07, 0x81, 0xf8, 0x00, 0x00, 0x00, // -----OOOO------OOOOOO----------................. - 0x07, 0x83, 0xf0, 0x00, 0x00, 0x00, // -----OOOO-----OOOOOO-----------................. - 0x07, 0x87, 0xe0, 0x00, 0x00, 0x00, // -----OOOO----OOOOOO------------................. - 0x07, 0x8f, 0xc0, 0x00, 0x00, 0x00, // -----OOOO---OOOOOO-------------................. - 0x07, 0x9f, 0x80, 0x00, 0x00, 0x00, // -----OOOO--OOOOOO--------------................. - 0x07, 0xbf, 0x00, 0x00, 0x00, 0x00, // -----OOOO-OOOOOO---------------................. - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------................. - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------................. - 0x07, 0xbf, 0x00, 0x00, 0x00, 0x00, // -----OOOO-OOOOOO---------------................. - 0x07, 0x9f, 0x80, 0x00, 0x00, 0x00, // -----OOOO--OOOOOO--------------................. - 0x07, 0x8f, 0xc0, 0x00, 0x00, 0x00, // -----OOOO---OOOOOO-------------................. - 0x07, 0x87, 0xe0, 0x00, 0x00, 0x00, // -----OOOO----OOOOOO------------................. - 0x07, 0x87, 0xf0, 0x00, 0x00, 0x00, // -----OOOO----OOOOOOO-----------................. - 0x07, 0x83, 0xf0, 0x00, 0x00, 0x00, // -----OOOO-----OOOOOO-----------................. - 0x07, 0x81, 0xf8, 0x00, 0x00, 0x00, // -----OOOO------OOOOOO----------................. - 0x07, 0x80, 0xfc, 0x00, 0x00, 0x00, // -----OOOO-------OOOOOO---------................. - 0x07, 0x80, 0x7e, 0x00, 0x00, 0x00, // -----OOOO--------OOOOOO--------................. - 0x07, 0x80, 0x3f, 0x00, 0x00, 0x00, // -----OOOO---------OOOOOO-------................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO------................. - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO-----................. - 0x07, 0x80, 0x07, 0xe0, 0x00, 0x00, // -----OOOO------------OOOOOO----................. - 0x07, 0x80, 0x03, 0xf0, 0x00, 0x00, // -----OOOO-------------OOOOOO---................. - 0x07, 0x80, 0x03, 0xf8, 0x00, 0x00, // -----OOOO-------------OOOOOOO--................. - 0x07, 0x80, 0x01, 0xf8, 0x00, 0x00, // -----OOOO--------------OOOOOO--................. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-................. - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................. - - // ASCII: 76, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------------...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - - // ASCII: 77, char width: 40 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, // -----OOOOOOO-----------------OOOOOOO----........ - 0x07, 0xf0, 0x00, 0x0f, 0xf0, 0x00, // -----OOOOOOO----------------OOOOOOOO----........ - 0x07, 0xf0, 0x00, 0x0f, 0xf0, 0x00, // -----OOOOOOO----------------OOOOOOOO----........ - 0x07, 0xf8, 0x00, 0x0f, 0xf0, 0x00, // -----OOOOOOOO---------------OOOOOOOO----........ - 0x07, 0xf8, 0x00, 0x1f, 0xf0, 0x00, // -----OOOOOOOO--------------OOOOOOOOO----........ - 0x07, 0xf8, 0x00, 0x1f, 0xf0, 0x00, // -----OOOOOOOO--------------OOOOOOOOO----........ - 0x07, 0xbc, 0x00, 0x1f, 0xf0, 0x00, // -----OOOO-OOOO-------------OOOOOOOOO----........ - 0x07, 0xbc, 0x00, 0x3d, 0xf0, 0x00, // -----OOOO-OOOO------------OOOO-OOOOO----........ - 0x07, 0xbc, 0x00, 0x3d, 0xf0, 0x00, // -----OOOO-OOOO------------OOOO-OOOOO----........ - 0x07, 0x9e, 0x00, 0x3d, 0xf0, 0x00, // -----OOOO--OOOO-----------OOOO-OOOOO----........ - 0x07, 0x9e, 0x00, 0x79, 0xf0, 0x00, // -----OOOO--OOOO----------OOOO--OOOOO----........ - 0x07, 0x9e, 0x00, 0x79, 0xf0, 0x00, // -----OOOO--OOOO----------OOOO--OOOOO----........ - 0x07, 0x8f, 0x00, 0x79, 0xf0, 0x00, // -----OOOO---OOOO---------OOOO--OOOOO----........ - 0x07, 0x8f, 0x00, 0xf1, 0xf0, 0x00, // -----OOOO---OOOO--------OOOO---OOOOO----........ - 0x07, 0x8f, 0x00, 0xf1, 0xf0, 0x00, // -----OOOO---OOOO--------OOOO---OOOOO----........ - 0x07, 0x87, 0x80, 0xf1, 0xf0, 0x00, // -----OOOO----OOOO-------OOOO---OOOOO----........ - 0x07, 0x87, 0x81, 0xe1, 0xf0, 0x00, // -----OOOO----OOOO------OOOO----OOOOO----........ - 0x07, 0x87, 0x81, 0xe1, 0xf0, 0x00, // -----OOOO----OOOO------OOOO----OOOOO----........ - 0x07, 0x83, 0xc1, 0xe1, 0xf0, 0x00, // -----OOOO-----OOOO-----OOOO----OOOOO----........ - 0x07, 0x83, 0xc3, 0xc1, 0xf0, 0x00, // -----OOOO-----OOOO----OOOO-----OOOOO----........ - 0x07, 0x83, 0xc3, 0xc1, 0xf0, 0x00, // -----OOOO-----OOOO----OOOO-----OOOOO----........ - 0x07, 0x81, 0xe3, 0xc1, 0xf0, 0x00, // -----OOOO------OOOO---OOOO-----OOOOO----........ - 0x07, 0x81, 0xe7, 0x81, 0xf0, 0x00, // -----OOOO------OOOO--OOOO------OOOOO----........ - 0x07, 0x81, 0xe7, 0x81, 0xf0, 0x00, // -----OOOO------OOOO--OOOO------OOOOO----........ - 0x07, 0x80, 0xf7, 0x81, 0xf0, 0x00, // -----OOOO-------OOOO-OOOO------OOOOO----........ - 0x07, 0x80, 0xff, 0x01, 0xf0, 0x00, // -----OOOO-------OOOOOOOO-------OOOOO----........ - 0x07, 0x80, 0xff, 0x01, 0xf0, 0x00, // -----OOOO-------OOOOOOOO-------OOOOO----........ - 0x07, 0x80, 0x7f, 0x01, 0xf0, 0x00, // -----OOOO--------OOOOOOO-------OOOOO----........ - 0x07, 0x80, 0x7e, 0x01, 0xf0, 0x00, // -----OOOO--------OOOOOO--------OOOOO----........ - 0x07, 0x80, 0x7e, 0x01, 0xf0, 0x00, // -----OOOO--------OOOOOO--------OOOOO----........ - 0x07, 0x80, 0x3e, 0x01, 0xf0, 0x00, // -----OOOO---------OOOOO--------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x07, 0x80, 0x00, 0x01, 0xf0, 0x00, // -----OOOO----------------------OOOOO----........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------........ - - // ASCII: 78, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xfc, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOOO------------OOOO-----............. - 0x07, 0xbc, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOO------------OOOO-----............. - 0x07, 0xbe, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOOO-----------OOOO-----............. - 0x07, 0x9e, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOO-----------OOOO-----............. - 0x07, 0x9f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOOO----------OOOO-----............. - 0x07, 0x8f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO---OOOO----------OOOO-----............. - 0x07, 0x8f, 0x80, 0x3c, 0x00, 0x00, // -----OOOO---OOOOO---------OOOO-----............. - 0x07, 0x87, 0x80, 0x3c, 0x00, 0x00, // -----OOOO----OOOO---------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x3c, 0x3c, 0x00, 0x00, // -----OOOO---------OOOO----OOOO-----............. - 0x07, 0x80, 0x3e, 0x3c, 0x00, 0x00, // -----OOOO---------OOOOO---OOOO-----............. - 0x07, 0x80, 0x1e, 0x3c, 0x00, 0x00, // -----OOOO----------OOOO---OOOO-----............. - 0x07, 0x80, 0x1f, 0x3c, 0x00, 0x00, // -----OOOO----------OOOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0x3c, 0x00, 0x00, // -----OOOO-----------OOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0xbc, 0x00, 0x00, // -----OOOO-----------OOOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xbc, 0x00, 0x00, // -----OOOO------------OOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xfc, 0x00, 0x00, // -----OOOO------------OOOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - - // ASCII: 79, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 80, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO---------.................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO------.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0x80, 0xff, 0x80, 0x00, 0x00, // -----OOOO-------OOOOOOOOO---.................... - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO---.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO---.................... - 0x07, 0x81, 0xff, 0x80, 0x00, 0x00, // -----OOOO------OOOOOOOOOO---.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------.................... - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO----------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 81, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x0f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ----OOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOO-----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, // ----------------OOOOOOOOOO-----------........... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO----------........... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----------------------OOOOOO---------........... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // -----------------------OOOOO---------........... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ------------------------OOOOO--------........... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, // ------------------------OOOOOO-------........... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, // -------------------------OOOOOO------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 82, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO--------------............... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-----------............... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----------............... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---------............... - 0x07, 0x80, 0xff, 0x80, 0x00, 0x00, // -----OOOO-------OOOOOOOOO--------............... - 0x07, 0x80, 0x1f, 0xc0, 0x00, 0x00, // -----OOOO----------OOOOOOO-------............... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO--------............... - 0x07, 0x80, 0x7f, 0x80, 0x00, 0x00, // -----OOOO--------OOOOOOOO--------............... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO---------............... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-----------............... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO------------............... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO----------............... - 0x07, 0x80, 0x7f, 0x00, 0x00, 0x00, // -----OOOO--------OOOOOOO---------............... - 0x07, 0x80, 0x1f, 0x00, 0x00, 0x00, // -----OOOO----------OOOOO---------............... - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO--------............... - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO--------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO-------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO------............... - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO-----............... - 0x07, 0x80, 0x01, 0xf0, 0x00, 0x00, // -----OOOO--------------OOOOO-----............... - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO----............... - 0x07, 0x80, 0x00, 0xf8, 0x00, 0x00, // -----OOOO---------------OOOOO----............... - 0x07, 0x80, 0x00, 0x7c, 0x00, 0x00, // -----OOOO----------------OOOOO---............... - 0x07, 0x80, 0x00, 0x7c, 0x00, 0x00, // -----OOOO----------------OOOOO---............... - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO--............... - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO--............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - - // ASCII: 83, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, // --------------OO--------------.................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------.................. - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x0f, 0xe0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOOO----------OOOO-----.................. - 0x0f, 0x80, 0x01, 0x80, 0x00, 0x00, // ----OOOOO--------------OO-----.................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------------.................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO---------------------.................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------.................. - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO-----------------.................. - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-------.................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------.................. - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, // -------------OOOOOOOOOOOO-----.................. - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, // -----------------OOOOOOOOO----.................. - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------------------OOOOOOO----.................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO---.................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------------OOOOO---.................. - 0x10, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---O-----------------OOOOOO---.................. - 0x1c, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOO---------------OOOOO----.................. - 0x1f, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ---OOOOO-----------OOOOOOO----.................. - 0x1f, 0xf9, 0xff, 0x80, 0x00, 0x00, // ---OOOOOOOOOO--OOOOOOOOOO-----.................. - 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOO------.................. - 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOO-------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 84, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOO................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 85, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 86, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0xf8, 0x00, 0x00, 0x1f, 0x00, 0x00, // OOOOO----------------------OOOOO................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x07, 0x80, 0x01, 0xe0, 0x00, 0x00, // -----OOOO--------------OOOO-----................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x1e, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-OOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 87, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x3c, 0x00, 0x0f, 0xc0, 0x00, 0xf8, // --OOOO--------------OOOOOO--------------OOOOO-.. - 0x3e, 0x00, 0x0f, 0xc0, 0x00, 0xf0, // --OOOOO-------------OOOOOO--------------OOOO--.. - 0x3e, 0x00, 0x0f, 0xc0, 0x00, 0xf0, // --OOOOO-------------OOOOOO--------------OOOO--.. - 0x3e, 0x00, 0x0f, 0xc0, 0x01, 0xf0, // --OOOOO-------------OOOOOO-------------OOOOO--.. - 0x1e, 0x00, 0x0f, 0xe0, 0x01, 0xf0, // ---OOOO-------------OOOOOOO------------OOOOO--.. - 0x1e, 0x00, 0x1f, 0xe0, 0x01, 0xf0, // ---OOOO------------OOOOOOOO------------OOOOO--.. - 0x1f, 0x00, 0x1f, 0xe0, 0x01, 0xe0, // ---OOOOO-----------OOOOOOOO------------OOOO---.. - 0x1f, 0x00, 0x1e, 0xe0, 0x03, 0xe0, // ---OOOOO-----------OOOO-OOO-----------OOOOO---.. - 0x1f, 0x00, 0x1c, 0xf0, 0x03, 0xe0, // ---OOOOO-----------OOO--OOOO----------OOOOO---.. - 0x0f, 0x00, 0x3c, 0xf0, 0x03, 0xe0, // ----OOOO----------OOOO--OOOO----------OOOOO---.. - 0x0f, 0x80, 0x3c, 0xf0, 0x03, 0xc0, // ----OOOOO---------OOOO--OOOO----------OOOO----.. - 0x0f, 0x80, 0x3c, 0x70, 0x07, 0xc0, // ----OOOOO---------OOOO---OOO---------OOOOO----.. - 0x0f, 0x80, 0x3c, 0x78, 0x07, 0xc0, // ----OOOOO---------OOOO---OOOO--------OOOOO----.. - 0x07, 0x80, 0x38, 0x78, 0x07, 0xc0, // -----OOOO---------OOO----OOOO--------OOOOO----.. - 0x07, 0x80, 0x78, 0x78, 0x07, 0x80, // -----OOOO--------OOOO----OOOO--------OOOO-----.. - 0x07, 0xc0, 0x78, 0x78, 0x07, 0x80, // -----OOOOO-------OOOO----OOOO--------OOOO-----.. - 0x07, 0xc0, 0x78, 0x38, 0x0f, 0x80, // -----OOOOO-------OOOO-----OOO-------OOOOO-----.. - 0x07, 0xc0, 0x70, 0x3c, 0x0f, 0x80, // -----OOOOO-------OOO------OOOO------OOOOO-----.. - 0x03, 0xc0, 0xf0, 0x3c, 0x0f, 0x80, // ------OOOO------OOOO------OOOO------OOOOO-----.. - 0x03, 0xe0, 0xf0, 0x3c, 0x0f, 0x00, // ------OOOOO-----OOOO------OOOO------OOOO------.. - 0x03, 0xe0, 0xf0, 0x1c, 0x1f, 0x00, // ------OOOOO-----OOOO-------OOO-----OOOOO------.. - 0x03, 0xe0, 0xf0, 0x1e, 0x1f, 0x00, // ------OOOOO-----OOOO-------OOOO----OOOOO------.. - 0x01, 0xe0, 0xe0, 0x1e, 0x1f, 0x00, // -------OOOO-----OOO--------OOOO----OOOOO------.. - 0x01, 0xe1, 0xe0, 0x1e, 0x1e, 0x00, // -------OOOO----OOOO--------OOOO----OOOO-------.. - 0x01, 0xf1, 0xe0, 0x1e, 0x1e, 0x00, // -------OOOOO---OOOO--------OOOO----OOOO-------.. - 0x01, 0xf1, 0xe0, 0x0e, 0x3e, 0x00, // -------OOOOO---OOOO---------OOO---OOOOO-------.. - 0x00, 0xf1, 0xc0, 0x0f, 0x3e, 0x00, // --------OOOO---OOO----------OOOO--OOOOO-------.. - 0x00, 0xf3, 0xc0, 0x0f, 0x3e, 0x00, // --------OOOO--OOOO----------OOOO--OOOOO-------.. - 0x00, 0xfb, 0xc0, 0x0f, 0x3c, 0x00, // --------OOOOO-OOOO----------OOOO--OOOO--------.. - 0x00, 0xfb, 0xc0, 0x07, 0x7c, 0x00, // --------OOOOO-OOOO-----------OOO-OOOOO--------.. - 0x00, 0xfb, 0xc0, 0x07, 0xfc, 0x00, // --------OOOOO-OOOO-----------OOOOOOOOO--------.. - 0x00, 0x7b, 0x80, 0x07, 0xfc, 0x00, // ---------OOOO-OOO------------OOOOOOOOO--------.. - 0x00, 0x7f, 0x80, 0x07, 0xf8, 0x00, // ---------OOOOOOOO------------OOOOOOOO---------.. - 0x00, 0x7f, 0x80, 0x07, 0xf8, 0x00, // ---------OOOOOOOO------------OOOOOOOO---------.. - 0x00, 0x7f, 0x80, 0x03, 0xf8, 0x00, // ---------OOOOOOOO-------------OOOOOOO---------.. - 0x00, 0x3f, 0x00, 0x03, 0xf8, 0x00, // ----------OOOOOO--------------OOOOOOO---------.. - 0x00, 0x3f, 0x00, 0x03, 0xf8, 0x00, // ----------OOOOOO--------------OOOOOOO---------.. - 0x00, 0x3f, 0x00, 0x03, 0xf0, 0x00, // ----------OOOOOO--------------OOOOOO----------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 88, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x1f, 0x00, 0x00, 0x7c, 0x00, 0x00, // ---OOOOO-----------------OOOOO--................ - 0x0f, 0x80, 0x00, 0xf8, 0x00, 0x00, // ----OOOOO---------------OOOOO---................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x07, 0xc0, 0x01, 0xf0, 0x00, 0x00, // -----OOOOO-------------OOOOO----................ - 0x03, 0xe0, 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----------OOOOO-----................ - 0x03, 0xe0, 0x03, 0xe0, 0x00, 0x00, // ------OOOOO-----------OOOOO-----................ - 0x01, 0xf0, 0x07, 0xc0, 0x00, 0x00, // -------OOOOO---------OOOOO------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x00, 0xf8, 0x0f, 0x80, 0x00, 0x00, // --------OOOOO-------OOOOO-------................ - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO--------................ - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO--------................ - 0x00, 0x3e, 0x3e, 0x00, 0x00, 0x00, // ----------OOOOO---OOOOO---------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x1f, 0x7c, 0x00, 0x00, 0x00, // -----------OOOOO-OOOOO----------................ - 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOO-----------................ - 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOO-----------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x0f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--------------OOOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 89, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // OOOOO------------------OOOOO-................... - 0x7c, 0x00, 0x01, 0xf0, 0x00, 0x00, // -OOOOO-----------------OOOOO-................... - 0x7c, 0x00, 0x03, 0xe0, 0x00, 0x00, // -OOOOO----------------OOOOO--................... - 0x3e, 0x00, 0x03, 0xe0, 0x00, 0x00, // --OOOOO---------------OOOOO--................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO------................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO-------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO--------................... - 0x00, 0xf8, 0xf8, 0x00, 0x00, 0x00, // --------OOOOO---OOOOO--------................... - 0x00, 0x7d, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOO-OOOOO---------................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 90, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOO---................ - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ------------------------OOOOO---................ - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // -----------------------OOOOO----................ - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----------------------OOOOOO----................ - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------------------OOOOOO-----................ - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---------------------OOOOO------................ - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-------................ - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -------------------OOOOOO-------................ - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO--------................ - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO---------................ - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO---------................ - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO----------................ - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO-----------................ - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO------------................ - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO--------------................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO---------------................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO---------------................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----------------................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-----------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------------................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-------------------................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO--------------------................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------------................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................ - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------................ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------------................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO--................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 91, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO----.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 92, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO------------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-----------................................ - 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOO-----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO----------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO---------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO--------................................ - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO--------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOO------................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO----................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---................................ - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO---................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-................................ - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO-................................ - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 93, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 94, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x07, 0xef, 0xc0, 0x00, 0x00, // -------------OOOOOO-OOOOOO-------------......... - 0x00, 0x07, 0xc7, 0xe0, 0x00, 0x00, // -------------OOOOO---OOOOOO------------......... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, // ------------OOOOO-----OOOOO------------......... - 0x00, 0x1f, 0x01, 0xf0, 0x00, 0x00, // -----------OOOOO-------OOOOO-----------......... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, // ----------OOOOO---------OOOOO----------......... - 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----------OOOOO---------......... - 0x00, 0xf8, 0x00, 0x3e, 0x00, 0x00, // --------OOOOO-------------OOOOO--------......... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, // ------OOOOO-----------------OOOOO------......... - 0x03, 0xc0, 0x00, 0x07, 0xc0, 0x00, // ------OOOO-------------------OOOOO-----......... - 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, // -----O---------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 95, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........................ - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........................ - 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........................ - - // ASCII: 96, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO--------------......................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------......................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------......................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------......................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------......................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------......................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------......................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------......................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 97, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 98, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOOO----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-OOOO------OOOOOO-----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOOO----------OOOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ----OOOOOO------------OOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOOO-------OOOOOO-----.................. - 0x0f, 0x7c, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOOO----OOOOOO------.................. - 0x0f, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOOO------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOO---------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 99, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOO------...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO---...................... - 0x03, 0xf0, 0x0e, 0x00, 0x00, 0x00, // ------OOOOOO--------OOO---...................... - 0x07, 0xc0, 0x02, 0x00, 0x00, 0x00, // -----OOOOO------------O---...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------...................... - 0x07, 0xe0, 0x06, 0x00, 0x00, 0x00, // -----OOOOOO----------OO---...................... - 0x03, 0xf8, 0x3e, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOOOO---...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO---...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - - // ASCII: 100, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x3f, 0x87, 0x80, 0x00, 0x00, // ----------OOOOOOO----OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x01, 0xff, 0xf7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOO-OOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 101, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 102, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO............................... - 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO............................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO............................... - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO............................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOO................................ - 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOO................................ - 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOO................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 103, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x01, 0xff, 0xf7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOO-OOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x0f, 0xc0, 0x3f, 0x80, 0x00, 0x00, // ----OOOOOO--------OOOOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0xc0, 0x3f, 0x80, 0x00, 0x00, // ----OOOOOO--------OOOOOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x3f, 0x07, 0x80, 0x00, 0x00, // ----------OOOOOO-----OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // --------------------OOOOO-----.................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO------.................. - 0x02, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------O-----------OOOOOO------.................. - 0x03, 0xc0, 0xfe, 0x00, 0x00, 0x00, // ------OOOO------OOOOOOO-------.................. - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO--------.................. - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---------.................. - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO----------.................. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 104, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOOO----------.................. - 0x0f, 0x0f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----OOOOOO------.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOO-----------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 105, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 106, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-----................................... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO------................................... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO------................................... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-------................................... - 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOO----------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 107, char width: 27 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------..................... - 0x0f, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ----OOOO------------OOOOOO-..................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO---..................... - 0x0f, 0x00, 0x3e, 0x00, 0x00, 0x00, // ----OOOO----------OOOOO----..................... - 0x0f, 0x00, 0x7c, 0x00, 0x00, 0x00, // ----OOOO---------OOOOO-----..................... - 0x0f, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----OOOO--------OOOOO------..................... - 0x0f, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-------OOOOO-------..................... - 0x0f, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----OOOO------OOOOO--------..................... - 0x0f, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOO---------..................... - 0x0f, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----OOOO----OOOOO----------..................... - 0x0f, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOO---OOOOO-----------..................... - 0x0f, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----OOOO--OOOOO------------..................... - 0x0f, 0x7c, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOO-------------..................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO--------------..................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO--------------..................... - 0x0f, 0x7c, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOO-------------..................... - 0x0f, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----OOOO--OOOOO------------..................... - 0x0f, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOO---OOOOO-----------..................... - 0x0f, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----OOOO----OOOOO----------..................... - 0x0f, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOO---------..................... - 0x0f, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----OOOO------OOOOO--------..................... - 0x0f, 0x03, 0xf0, 0x00, 0x00, 0x00, // ----OOOO------OOOOOO-------..................... - 0x0f, 0x01, 0xf8, 0x00, 0x00, 0x00, // ----OOOO-------OOOOOO------..................... - 0x0f, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOO--------OOOOOO-----..................... - 0x0f, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOO---------OOOOOO----..................... - 0x0f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ----OOOO----------OOOOOO---..................... - 0x0f, 0x00, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-----------OOOOOO--..................... - 0x0f, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ----OOOO------------OOOOOO-..................... - 0x0f, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOO-------------OOOOOO..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------..................... - - // ASCII: 108, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 109, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x07, 0xf0, 0x03, 0xf0, 0x00, // -------------OOOOOOO----------OOOOOO----------.. - 0x0f, 0x1f, 0xfc, 0x0f, 0xfc, 0x00, // ----OOOO---OOOOOOOOOOO------OOOOOOOOOO--------.. - 0x0f, 0x3f, 0xfc, 0x1f, 0xfe, 0x00, // ----OOOO--OOOOOOOOOOOO-----OOOOOOOOOOOO-------.. - 0x0f, 0x7f, 0xfe, 0x3f, 0xff, 0x00, // ----OOOO-OOOOOOOOOOOOOO---OOOOOOOOOOOOOO------.. - 0x0f, 0x78, 0x3f, 0x78, 0x1f, 0x00, // ----OOOO-OOOO-----OOOOOO-OOOO------OOOOO------.. - 0x0f, 0xe0, 0x1f, 0x70, 0x0f, 0x80, // ----OOOOOOO--------OOOOO-OOO--------OOOOO-----.. - 0x0f, 0xc0, 0x0f, 0xe0, 0x0f, 0x80, // ----OOOOOO----------OOOOOOO---------OOOOO-----.. - 0x0f, 0xc0, 0x0f, 0xc0, 0x07, 0x80, // ----OOOOOO----------OOOOOO-----------OOOO-----.. - 0x0f, 0x80, 0x07, 0xc0, 0x07, 0x80, // ----OOOOO------------OOOOO-----------OOOO-----.. - 0x0f, 0x80, 0x07, 0x80, 0x07, 0x80, // ----OOOOO------------OOOO------------OOOO-----.. - 0x0f, 0x80, 0x07, 0x80, 0x07, 0xc0, // ----OOOOO------------OOOO------------OOOOO----.. - 0x0f, 0x80, 0x07, 0x80, 0x07, 0xc0, // ----OOOOO------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x0f, 0x00, 0x07, 0x80, 0x07, 0xc0, // ----OOOO-------------OOOO------------OOOOO----.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 110, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO----------.................. - 0x0f, 0x0f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----OOOOOO------.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOO-----------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 111, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 112, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-OOOO------OOOOOO-----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOOO----------OOOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ----OOOOOO------------OOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOOO-------OOOOOO-----.................. - 0x0f, 0x7c, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOOO----OOOOOO------.................. - 0x0f, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOOO------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOO---------.................. - 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-------OOOO-----------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 113, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x01, 0xff, 0xf7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOO-OOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x07, 0xe0, 0x7f, 0x80, 0x00, 0x00, // -----OOOOOO------OOOOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x07, 0x80, 0x00, 0x00, // -----------OOOO------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 114, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO............................. - 0x0f, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOO............................. - 0x0f, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOO............................. - 0x0f, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOO............................. - 0x0f, 0x78, 0x20, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----O............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 115, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOO------........................ - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO---........................ - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO---........................ - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO---........................ - 0x1f, 0x80, 0x38, 0x00, 0x00, 0x00, // ---OOOOOO---------OOO---........................ - 0x1f, 0x00, 0x08, 0x00, 0x00, 0x00, // ---OOOOO------------O---........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-----------------........................ - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------------........................ - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO--------------........................ - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO-----------........................ - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO--------........................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................ - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO----........................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO---........................ - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO---........................ - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----------------OOOOOO--........................ - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--........................ - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--........................ - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--........................ - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--........................ - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--........................ - 0x18, 0x00, 0xf8, 0x00, 0x00, 0x00, // ---OO-----------OOOOO---........................ - 0x1f, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---OOOOO------OOOOOOO---........................ - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO----........................ - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO-----........................ - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO------........................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................ - - // ASCII: 116, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOO-.............................. - 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOO-.............................. - 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOO-.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------.............................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................. - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO-.............................. - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-.............................. - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-.............................. - 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO-.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................. - - // ASCII: 117, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 118, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x03, 0xc0, 0x00, 0x00, // --OOOO----------------OOOO--.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO----.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x7c, 0x00, 0x00, 0x00, // ------OOOO-------OOOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x03, 0xe0, 0x78, 0x00, 0x00, 0x00, // ------OOOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xf0, 0x00, 0x00, 0x00, // --------OOOOO--OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO---------.................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 119, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x3c, 0x00, 0xfc, 0x00, 0xf0, 0x00, // --OOOO----------OOOOOO----------OOOO--.......... - 0x3e, 0x00, 0xfc, 0x00, 0xf0, 0x00, // --OOOOO---------OOOOOO----------OOOO--.......... - 0x1e, 0x00, 0xfc, 0x01, 0xf0, 0x00, // ---OOOO---------OOOOOO---------OOOOO--.......... - 0x1e, 0x00, 0xfe, 0x01, 0xe0, 0x00, // ---OOOO---------OOOOOOO--------OOOO---.......... - 0x1e, 0x01, 0xfe, 0x01, 0xe0, 0x00, // ---OOOO--------OOOOOOOO--------OOOO---.......... - 0x1f, 0x01, 0xfe, 0x01, 0xe0, 0x00, // ---OOOOO-------OOOOOOOO--------OOOO---.......... - 0x0f, 0x01, 0xee, 0x03, 0xe0, 0x00, // ----OOOO-------OOOO-OOO-------OOOOO---.......... - 0x0f, 0x01, 0xce, 0x03, 0xc0, 0x00, // ----OOOO-------OOO--OOO-------OOOO----.......... - 0x0f, 0x01, 0xcf, 0x03, 0xc0, 0x00, // ----OOOO-------OOO--OOOO------OOOO----.......... - 0x0f, 0x83, 0xcf, 0x03, 0xc0, 0x00, // ----OOOOO-----OOOO--OOOO------OOOO----.......... - 0x07, 0x83, 0xc7, 0x03, 0xc0, 0x00, // -----OOOO-----OOOO---OOO------OOOO----.......... - 0x07, 0x83, 0xc7, 0x07, 0xc0, 0x00, // -----OOOO-----OOOO---OOO-----OOOOO----.......... - 0x07, 0x83, 0x87, 0x87, 0x80, 0x00, // -----OOOO-----OOO----OOOO----OOOO-----.......... - 0x07, 0x87, 0x87, 0x87, 0x80, 0x00, // -----OOOO----OOOO----OOOO----OOOO-----.......... - 0x07, 0xc7, 0x87, 0x87, 0x80, 0x00, // -----OOOOO---OOOO----OOOO----OOOO-----.......... - 0x03, 0xc7, 0x83, 0x8f, 0x80, 0x00, // ------OOOO---OOOO-----OOO---OOOOO-----.......... - 0x03, 0xc7, 0x03, 0xcf, 0x00, 0x00, // ------OOOO---OOO------OOOO--OOOO------.......... - 0x03, 0xcf, 0x03, 0xcf, 0x00, 0x00, // ------OOOO--OOOO------OOOO--OOOO------.......... - 0x03, 0xef, 0x03, 0xcf, 0x00, 0x00, // ------OOOOO-OOOO------OOOO--OOOO------.......... - 0x01, 0xef, 0x01, 0xdf, 0x00, 0x00, // -------OOOO-OOOO-------OOO-OOOOO------.......... - 0x01, 0xee, 0x01, 0xfe, 0x00, 0x00, // -------OOOO-OOO--------OOOOOOOO-------.......... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......... - 0x00, 0xfe, 0x00, 0xfe, 0x00, 0x00, // --------OOOOOOO---------OOOOOOO-------.......... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......... - 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----------OOOOO--------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......... - - // ASCII: 120, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO----.................... - 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO-----.................... - 0x03, 0xc0, 0x7c, 0x00, 0x00, 0x00, // ------OOOO-------OOOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xf0, 0x00, 0x00, 0x00, // --------OOOOO--OOOOO--------.................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO-----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------.................... - 0x00, 0xfb, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO-OOOOO---------.................... - 0x00, 0xf9, 0xf0, 0x00, 0x00, 0x00, // --------OOOOO--OOOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO-------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOO-----.................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO----.................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO----.................... - 0x3e, 0x00, 0x0f, 0x80, 0x00, 0x00, // --OOOOO-------------OOOOO---.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 121, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x1e, 0x00, 0x00, 0x00, // -----OOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xe0, 0x78, 0x00, 0x00, 0x00, // -------OOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf0, 0xf0, 0x00, 0x00, 0x00, // --------OOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x79, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-------------.................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--------------.................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------------.................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO---------------.................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------.................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO----------------.................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------.................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 122, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO--....................... - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO--....................... - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO--....................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO--....................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO---....................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----....................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO----....................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO------....................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-------....................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO--------....................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO--------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------....................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------....................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------------....................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------....................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------....................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------....................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO------------------....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO--....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - - // ASCII: 123, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, // ----------------------OO------.................. - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------------OOOOOOOO------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO------.................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-----------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO--------------.................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO----------.................. - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------------OOOOOOOO------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 124, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - - // ASCII: 125, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O-----------------------.................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO--------------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // -----------------OOOOOOO------.................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO------.................. - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO---------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------.................. - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO--------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO---------------.................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 126, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x3f, 0x80, 0x00, 0x40, 0x00, // ----------OOOOOOO----------------O-----......... - 0x00, 0xff, 0xf0, 0x01, 0xc0, 0x00, // --------OOOOOOOOOOOO-----------OOO-----......... - 0x03, 0xff, 0xfc, 0x03, 0xc0, 0x00, // ------OOOOOOOOOOOOOOOO--------OOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xe0, 0xff, 0xff, 0x80, 0x00, // -----OOOOOO-----OOOOOOOOOOOOOOOOO------......... - 0x07, 0x00, 0x3f, 0xff, 0x00, 0x00, // -----OOO----------OOOOOOOOOOOOOO-------......... - 0x06, 0x00, 0x07, 0xfc, 0x00, 0x00, // -----OO--------------OOOOOOOOO---------......... - 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, // -----O---------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 160, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 161, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 162, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // -------------OOOOOOOO---------.................. - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO------.................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------.................. - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOO------.................. - 0x01, 0xfd, 0xc7, 0x00, 0x00, 0x00, // -------OOOOOOO-OOO---OOO------.................. - 0x03, 0xf1, 0xc1, 0x00, 0x00, 0x00, // ------OOOOOO---OOO-----O------.................. - 0x03, 0xe1, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x07, 0x81, 0xc0, 0x00, 0x00, 0x00, // -----OOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x01, 0xc0, 0x00, 0x00, 0x00, // ----OOOO-------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x0f, 0x81, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOO------------.................. - 0x07, 0x81, 0xc0, 0x00, 0x00, 0x00, // -----OOOO------OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x07, 0xc1, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO-----OOO------------.................. - 0x03, 0xe1, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----OOO------------.................. - 0x03, 0xf1, 0xc3, 0x00, 0x00, 0x00, // ------OOOOOO---OOO----OO------.................. - 0x01, 0xff, 0xcf, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO--OOOO------.................. - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOO------.................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO------.................. - 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-------.................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO----------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 163, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO-----------.................. - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO------.................. - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO-----.................. - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // -----------OOOOOOOOOOOOOO-----.................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO-----.................. - 0x00, 0x3e, 0x01, 0x80, 0x00, 0x00, // ----------OOOOO--------OO-----.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO--------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------------.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 164, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0c, 0x00, 0x00, 0xc0, 0x00, 0x00, // ----OO------------------OO----.................. - 0x1e, 0x00, 0x01, 0xe0, 0x00, 0x00, // ---OOOO----------------OOOO---.................. - 0x3e, 0x00, 0x03, 0xf0, 0x00, 0x00, // --OOOOO---------------OOOOOO--.................. - 0x1f, 0x0f, 0xc7, 0xe0, 0x00, 0x00, // ---OOOOO----OOOOOO---OOOOOO---.................. - 0x0f, 0xbf, 0xf7, 0xc0, 0x00, 0x00, // ----OOOOO-OOOOOOOOOO-OOOOO----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x01, 0xf0, 0x7e, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOOO-------.................. - 0x03, 0xe0, 0x1e, 0x00, 0x00, 0x00, // ------OOOOO--------OOOO-------.................. - 0x03, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ------OOOO----------OOOO------.................. - 0x03, 0x80, 0x0f, 0x00, 0x00, 0x00, // ------OOO-----------OOOO------.................. - 0x07, 0x80, 0x07, 0x00, 0x00, 0x00, // -----OOOO------------OOO------.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, // -----OOOO------------OOOO-----.................. - 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, // ------OOO------------OOO------.................. - 0x03, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ------OOOO----------OOOO------.................. - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO------.................. - 0x01, 0xf0, 0x3e, 0x00, 0x00, 0x00, // -------OOOOO------OOOOO-------.................. - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO-----.................. - 0x1f, 0x9f, 0xe7, 0xc0, 0x00, 0x00, // ---OOOOOO--OOOOOOOO--OOOOO----.................. - 0x1f, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOOO--------------OOOOO---.................. - 0x1e, 0x00, 0x01, 0xe0, 0x00, 0x00, // ---OOOO----------------OOOO---.................. - 0x1c, 0x00, 0x00, 0xc0, 0x00, 0x00, // ---OOO------------------OO----.................. - 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O-------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 165, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x3c, 0x00, 0x01, 0xf0, 0x00, 0x00, // --OOOO-----------------OOOOO--.................. - 0x1e, 0x00, 0x01, 0xe0, 0x00, 0x00, // ---OOOO----------------OOOO---.................. - 0x1e, 0x00, 0x03, 0xe0, 0x00, 0x00, // ---OOOO---------------OOOOO---.................. - 0x0f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----OOOO--------------OOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x07, 0x80, 0x0f, 0x80, 0x00, 0x00, // -----OOOO-----------OOOOO-----.................. - 0x07, 0xc0, 0x0f, 0x00, 0x00, 0x00, // -----OOOOO----------OOOO------.................. - 0x03, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ------OOOO---------OOOOO------.................. - 0x03, 0xe0, 0x1e, 0x00, 0x00, 0x00, // ------OOOOO--------OOOO-------.................. - 0x01, 0xe0, 0x3e, 0x00, 0x00, 0x00, // -------OOOO-------OOOOO-------.................. - 0x01, 0xf0, 0x3c, 0x00, 0x00, 0x00, // -------OOOOO------OOOO--------.................. - 0x00, 0xf0, 0x7c, 0x00, 0x00, 0x00, // --------OOOO-----OOOOO--------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0x78, 0xf8, 0x00, 0x00, 0x00, // ---------OOOO---OOOOO---------.................. - 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOO--OOOOOOOOOOO---.................. - 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOO--OOOOOOOOOOO---.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO-----------.................. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO------------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 166, char width: 16 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------................................ - - // ASCII: 167, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, // -----------OO----------......................... - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO-----......................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x0f, 0xc1, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOO----......................... - 0x0f, 0x80, 0x20, 0x00, 0x00, 0x00, // ----OOOOO---------O----......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------......................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----------......................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO----------......................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO--------......................... - 0x0f, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOO-------......................... - 0x1e, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOO----OOOOOO------......................... - 0x1e, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---OOOO-----OOOOOOO----......................... - 0x3c, 0x03, 0xf0, 0x00, 0x00, 0x00, // --OOOO--------OOOOOO---......................... - 0x3c, 0x01, 0xf0, 0x00, 0x00, 0x00, // --OOOO---------OOOOO---......................... - 0x3c, 0x00, 0xf8, 0x00, 0x00, 0x00, // --OOOO----------OOOOO--......................... - 0x3c, 0x00, 0x78, 0x00, 0x00, 0x00, // --OOOO-----------OOOO--......................... - 0x3e, 0x00, 0x78, 0x00, 0x00, 0x00, // --OOOOO----------OOOO--......................... - 0x1e, 0x00, 0x38, 0x00, 0x00, 0x00, // ---OOOO-----------OOO--......................... - 0x1f, 0x80, 0x78, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOO--......................... - 0x0f, 0xc0, 0x78, 0x00, 0x00, 0x00, // ----OOOOOO-------OOOO--......................... - 0x07, 0xe0, 0x78, 0x00, 0x00, 0x00, // -----OOOOOO------OOOO--......................... - 0x03, 0xf8, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOO---OOOO---......................... - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO----......................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----......................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO-----......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO----......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---......................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO---......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----......................... - 0x0e, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----OOO-------OOOOO----......................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 168, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x07, 0xc3, 0xc0, 0x00, 0x00, 0x00, // -----OOOOO----OOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 169, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO----------------------. - 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, // -----------------OOOOOOOOOOOO------------------. - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO----------------. - 0x00, 0x03, 0xe0, 0x1f, 0x80, 0x00, // --------------OOOOO--------OOOOOO--------------. - 0x00, 0x07, 0x80, 0x03, 0xc0, 0x00, // -------------OOOO-------------OOOO-------------. - 0x00, 0x0f, 0x00, 0x01, 0xe0, 0x00, // ------------OOOO---------------OOOO------------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, // ----------OOO---------------------OOO----------. - 0x00, 0x70, 0x0f, 0xf8, 0x38, 0x00, // ---------OOO--------OOOOOOOOO-----OOO----------. - 0x00, 0x70, 0x3f, 0xfc, 0x1c, 0x00, // ---------OOO------OOOOOOOOOOOO-----OOO---------. - 0x00, 0xe0, 0xff, 0xfc, 0x0c, 0x00, // --------OOO-----OOOOOOOOOOOOOO------OO---------. - 0x00, 0xe0, 0xf8, 0x0c, 0x0e, 0x00, // --------OOO-----OOOOO-------OO------OOO--------. - 0x01, 0xc1, 0xe0, 0x00, 0x06, 0x00, // -------OOO-----OOOO------------------OO--------. - 0x01, 0xc3, 0xe0, 0x00, 0x07, 0x00, // -------OOO----OOOOO------------------OOO-------. - 0x01, 0x83, 0xc0, 0x00, 0x07, 0x00, // -------OO-----OOOO-------------------OOO-------. - 0x01, 0x83, 0xc0, 0x00, 0x03, 0x00, // -------OO-----OOOO--------------------OO-------. - 0x01, 0x87, 0x80, 0x00, 0x03, 0x00, // -------OO----OOOO---------------------OO-------. - 0x01, 0x87, 0x80, 0x00, 0x03, 0x00, // -------OO----OOOO---------------------OO-------. - 0x03, 0x87, 0x80, 0x00, 0x03, 0x00, // ------OOO----OOOO---------------------OO-------. - 0x03, 0x87, 0x80, 0x00, 0x03, 0x00, // ------OOO----OOOO---------------------OO-------. - 0x03, 0x87, 0x80, 0x00, 0x03, 0x00, // ------OOO----OOOO---------------------OO-------. - 0x01, 0x87, 0x80, 0x00, 0x03, 0x00, // -------OO----OOOO---------------------OO-------. - 0x01, 0x83, 0x80, 0x00, 0x03, 0x00, // -------OO-----OOO---------------------OO-------. - 0x01, 0x83, 0xc0, 0x00, 0x07, 0x00, // -------OO-----OOOO-------------------OOO-------. - 0x01, 0xc3, 0xc0, 0x00, 0x07, 0x00, // -------OOO----OOOO-------------------OOO-------. - 0x01, 0xc1, 0xe0, 0x00, 0x06, 0x00, // -------OOO-----OOOO------------------OO--------. - 0x00, 0xc1, 0xf0, 0x04, 0x0e, 0x00, // --------OO-----OOOOO---------O------OOO--------. - 0x00, 0xe0, 0xfe, 0x7c, 0x0e, 0x00, // --------OOO-----OOOOOOO--OOOOO------OOO--------. - 0x00, 0x60, 0x7f, 0xfc, 0x1c, 0x00, // ---------OO------OOOOOOOOOOOOO-----OOO---------. - 0x00, 0x70, 0x1f, 0xfc, 0x1c, 0x00, // ---------OOO-------OOOOOOOOOOO-----OOO---------. - 0x00, 0x38, 0x03, 0x80, 0x38, 0x00, // ----------OOO---------OOO---------OOO----------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x1e, 0x00, 0x00, 0xe0, 0x00, // -----------OOOO-----------------OOO------------. - 0x00, 0x0f, 0x00, 0x03, 0xc0, 0x00, // ------------OOOO--------------OOOO-------------. - 0x00, 0x03, 0xc0, 0x0f, 0x80, 0x00, // --------------OOOO----------OOOOO--------------. - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO---------------. - 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x00, // -----------------OOOOOOOOOOOOO-----------------. - 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // -------------------OOOOOOOO--------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - - // ASCII: 170, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, // ----------OO----------.......................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO-------.......................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO-----.......................... - 0x0f, 0x9f, 0x80, 0x00, 0x00, 0x00, // ----OOOOO--OOOOOO-----.......................... - 0x08, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----O---------OOOO----.......................... - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO----.......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---.......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---.......................... - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO---.......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO---.......................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---.......................... - 0x1f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOOO-------OOOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOO---------OOOO---.......................... - 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOO---------OOOO---.......................... - 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOO---------OOOO---.......................... - 0x1c, 0x03, 0xe0, 0x00, 0x00, 0x00, // ---OOO--------OOOOO---.......................... - 0x1e, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOO------OOOOOO---.......................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---.......................... - 0x0f, 0xfd, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOO-OOOO---.......................... - 0x03, 0xf9, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO--OOOO---.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - - // ASCII: 171, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, // -------------O---------O-----................... - 0x00, 0x0c, 0x03, 0x00, 0x00, 0x00, // ------------OO--------OO-----................... - 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, // -----------OOO-------OOO-----................... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO-----................... - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO-----................... - 0x00, 0xf8, 0x3e, 0x00, 0x00, 0x00, // --------OOOOO-----OOOOO------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x00, 0xf8, 0x3e, 0x00, 0x00, 0x00, // --------OOOOO-----OOOOO------................... - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO-----................... - 0x00, 0x3c, 0x0f, 0x00, 0x00, 0x00, // ----------OOOO------OOOO-----................... - 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, // -----------OOO-------OOO-----................... - 0x00, 0x0c, 0x03, 0x00, 0x00, 0x00, // ------------OO--------OO-----................... - 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, // -------------O---------O-----................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 172, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ------------------------------OOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 173, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOO--............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................... - - // ASCII: 174, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, // ---------------------OOOO----------------------. - 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, // -----------------OOOOOOOOOOOO------------------. - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO----------------. - 0x00, 0x03, 0xe0, 0x1f, 0x80, 0x00, // --------------OOOOO--------OOOOOO--------------. - 0x00, 0x07, 0x80, 0x03, 0xc0, 0x00, // -------------OOOO-------------OOOO-------------. - 0x00, 0x0f, 0x00, 0x01, 0xe0, 0x00, // ------------OOOO---------------OOOO------------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, // ----------OOO---------------------OOO----------. - 0x00, 0x70, 0xff, 0xc0, 0x38, 0x00, // ---------OOO----OOOOOOOOOO--------OOO----------. - 0x00, 0x70, 0xff, 0xf8, 0x1c, 0x00, // ---------OOO----OOOOOOOOOOOOO------OOO---------. - 0x00, 0xe0, 0xff, 0xfc, 0x0c, 0x00, // --------OOO-----OOOOOOOOOOOOOO------OO---------. - 0x00, 0xe0, 0xf0, 0x3c, 0x0e, 0x00, // --------OOO-----OOOO------OOOO------OOO--------. - 0x01, 0xc0, 0xf0, 0x1e, 0x06, 0x00, // -------OOO------OOOO-------OOOO------OO--------. - 0x01, 0xc0, 0xf0, 0x1e, 0x07, 0x00, // -------OOO------OOOO-------OOOO------OOO-------. - 0x01, 0x80, 0xf0, 0x1e, 0x07, 0x00, // -------OO-------OOOO-------OOOO------OOO-------. - 0x01, 0x80, 0xf0, 0x1e, 0x03, 0x00, // -------OO-------OOOO-------OOOO-------OO-------. - 0x01, 0x80, 0xf0, 0x1e, 0x03, 0x00, // -------OO-------OOOO-------OOOO-------OO-------. - 0x01, 0x80, 0xf0, 0x7c, 0x03, 0x00, // -------OO-------OOOO-----OOOOO--------OO-------. - 0x03, 0x80, 0xff, 0xf8, 0x03, 0x00, // ------OOO-------OOOOOOOOOOOOO---------OO-------. - 0x03, 0x80, 0xff, 0xe0, 0x03, 0x00, // ------OOO-------OOOOOOOOOOO-----------OO-------. - 0x03, 0x80, 0xf3, 0xe0, 0x03, 0x00, // ------OOO-------OOOO--OOOOO-----------OO-------. - 0x01, 0x80, 0xf0, 0xf0, 0x03, 0x00, // -------OO-------OOOO----OOOO----------OO-------. - 0x01, 0x80, 0xf0, 0x78, 0x03, 0x00, // -------OO-------OOOO-----OOOO---------OO-------. - 0x01, 0x80, 0xf0, 0x78, 0x07, 0x00, // -------OO-------OOOO-----OOOO--------OOO-------. - 0x01, 0xc0, 0xf0, 0x3c, 0x07, 0x00, // -------OOO------OOOO------OOOO-------OOO-------. - 0x01, 0xc0, 0xf0, 0x3c, 0x06, 0x00, // -------OOO------OOOO------OOOO-------OO--------. - 0x00, 0xc0, 0xf0, 0x1e, 0x0e, 0x00, // --------OO------OOOO-------OOOO-----OOO--------. - 0x00, 0xe0, 0xf0, 0x0f, 0x0e, 0x00, // --------OOO-----OOOO--------OOOO----OOO--------. - 0x00, 0x60, 0xf0, 0x0f, 0x1c, 0x00, // ---------OO-----OOOO--------OOOO---OOO---------. - 0x00, 0x70, 0x00, 0x00, 0x1c, 0x00, // ---------OOO-----------------------OOO---------. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, // ----------OOO---------------------OOO----------. - 0x00, 0x1c, 0x00, 0x00, 0x70, 0x00, // -----------OOO-------------------OOO-----------. - 0x00, 0x1e, 0x00, 0x00, 0xe0, 0x00, // -----------OOOO-----------------OOO------------. - 0x00, 0x0f, 0x00, 0x03, 0xc0, 0x00, // ------------OOOO--------------OOOO-------------. - 0x00, 0x03, 0xc0, 0x0f, 0x80, 0x00, // --------------OOOO----------OOOOO--------------. - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO---------------. - 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x00, // -----------------OOOOOOOOOOOOO-----------------. - 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // -------------------OOOOOOOO--------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------. - - // ASCII: 175, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 176, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, // -----------OO----------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------......................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------......................... - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO------......................... - 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, // -----OOOO-----OOOO-----......................... - 0x07, 0x01, 0xc0, 0x00, 0x00, 0x00, // -----OOO-------OOO-----......................... - 0x07, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OOO--------OOO----......................... - 0x06, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OO---------OOO----......................... - 0x0e, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----OOO---------OOO----......................... - 0x06, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OO---------OOO----......................... - 0x07, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OOO--------OOO----......................... - 0x07, 0x01, 0xc0, 0x00, 0x00, 0x00, // -----OOO-------OOO-----......................... - 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, // -----OOOO-----OOOO-----......................... - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO------......................... - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------......................... - 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, // -----------O-----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 177, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 178, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, // --------O----------............................. - 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOO------............................. - 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOO-----............................. - 0x3c, 0x3e, 0x00, 0x00, 0x00, 0x00, // --OOOO----OOOOO----............................. - 0x20, 0x1e, 0x00, 0x00, 0x00, 0x00, // --O--------OOOO----............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO----............................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----............................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO-----............................. - 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // ----------OOO------............................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------............................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---------............................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO----------............................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------............................. - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO------------............................. - 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOO---............................. - 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOO---............................. - 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOO---............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 179, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, // --------O----------............................. - 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOO------............................. - 0x1f, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOO----............................. - 0x1c, 0x3e, 0x00, 0x00, 0x00, 0x00, // ---OOO----OOOOO----............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----............................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-----............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------............................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-----............................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----............................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO---............................. - 0x20, 0x0f, 0x00, 0x00, 0x00, 0x00, // --O---------OOOO---............................. - 0x3c, 0x7e, 0x00, 0x00, 0x00, 0x00, // --OOOO---OOOOOO----............................. - 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOO-----............................. - 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOO------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 180, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO----......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-----......................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------......................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------......................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------......................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------......................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------......................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------......................... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, // ---------OOO-----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 181, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x3f, 0xc0, 0x00, 0x00, // ----OOOOOO--------OOOOOOOO----.................. - 0x0f, 0xf8, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOO---OOOOOOOOOOOOO-.................. - 0x0f, 0x7f, 0xfb, 0xf8, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOO-OOOOOOO-.................. - 0x0f, 0x7f, 0xf3, 0xf8, 0x00, 0x00, // ----OOOO-OOOOOOOOOOO--OOOOOOO-.................. - 0x0f, 0x3f, 0xe3, 0xf8, 0x00, 0x00, // ----OOOO--OOOOOOOOO---OOOOOOO-.................. - 0x0f, 0x07, 0x80, 0xe0, 0x00, 0x00, // ----OOOO-----OOOO-------OOO---.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 182, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // -----------OOOOOOOOOOOOOO-----.................. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO-----.................. - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO-----.................. - 0x03, 0xff, 0x87, 0x80, 0x00, 0x00, // ------OOOOOOOOOOO----OOOO-----.................. - 0x07, 0xff, 0x87, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOO-----.................. - 0x07, 0xff, 0x87, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x0f, 0xff, 0x87, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOO----OOOO-----.................. - 0x07, 0xff, 0x87, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOO-----.................. - 0x03, 0xff, 0x87, 0x80, 0x00, 0x00, // ------OOOOOOOOOOO----OOOO-----.................. - 0x03, 0xff, 0x87, 0x80, 0x00, 0x00, // ------OOOOOOOOOOO----OOOO-----.................. - 0x00, 0xff, 0x87, 0x80, 0x00, 0x00, // --------OOOOOOOOO----OOOO-----.................. - 0x00, 0x7f, 0x87, 0x80, 0x00, 0x00, // ---------OOOOOOOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x03, 0x87, 0x80, 0x00, 0x00, // --------------OOO----OOOO-----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 183, char width: 15 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------................................. - - // ASCII: 184, char width: 23 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO---------......................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------......................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------......................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------......................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------......................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------......................... - 0x01, 0x0f, 0x00, 0x00, 0x00, 0x00, // -------O----OOOO-------......................... - 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------......................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------......................... - - // ASCII: 185, char width: 19 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------............................. - 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOO-------............................. - 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOO-------............................. - 0x10, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---O----OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-------............................. - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---............................. - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---............................. - 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------............................. - - // ASCII: 186, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, // ----------OO----------.......................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------.......................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO-----.......................... - 0x0f, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO--OOOOOO----.......................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO----.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1c, 0x00, 0xe0, 0x00, 0x00, 0x00, // ---OOO----------OOO---.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x3c, 0x00, 0xf0, 0x00, 0x00, 0x00, // --OOOO----------OOOO--.......................... - 0x1c, 0x00, 0xe0, 0x00, 0x00, 0x00, // ---OOO----------OOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x1e, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---OOOO--------OOOO---.......................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO----.......................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO-----.......................... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------.......................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................... - - // ASCII: 187, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, // ----O---------O--------------................... - 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OO--------OO-------------................... - 0x0e, 0x03, 0x80, 0x00, 0x00, 0x00, // ----OOO-------OOO------------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x00, 0xf8, 0x3e, 0x00, 0x00, 0x00, // --------OOOOO-----OOOOO------................... - 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, // ---------OOOOO-----OOOOO-----................... - 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, // ----------OOOOO-----OOOOO----................... - 0x00, 0x1e, 0x07, 0x80, 0x00, 0x00, // -----------OOOO------OOOO----................... - 0x00, 0x1e, 0x0f, 0x80, 0x00, 0x00, // -----------OOOO-----OOOOO----................... - 0x00, 0x3c, 0x1f, 0x00, 0x00, 0x00, // ----------OOOO-----OOOOO-----................... - 0x00, 0x78, 0x3e, 0x00, 0x00, 0x00, // ---------OOOO-----OOOOO------................... - 0x00, 0xf0, 0x7c, 0x00, 0x00, 0x00, // --------OOOO-----OOOOO-------................... - 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOO--------................... - 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO-----OOOOO---------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x0f, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----OOOO------OOOO-----------................... - 0x0e, 0x03, 0x80, 0x00, 0x00, 0x00, // ----OOO-------OOO------------................... - 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, // ----OO--------OO-------------................... - 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, // ----O---------O--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 188, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // --------------------------------OOO----------... - 0x07, 0xf0, 0x00, 0x01, 0xe0, 0x00, // -----OOOOOOO-------------------OOOO----------... - 0x1f, 0xf0, 0x00, 0x01, 0xc0, 0x00, // ---OOOOOOOOO-------------------OOO-----------... - 0x1f, 0xf0, 0x00, 0x03, 0xc0, 0x00, // ---OOOOOOOOO------------------OOOO-----------... - 0x10, 0xf0, 0x00, 0x03, 0x80, 0x00, // ---O----OOOO------------------OOO------------... - 0x00, 0xf0, 0x00, 0x07, 0x80, 0x00, // --------OOOO-----------------OOOO------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x3c, 0x00, 0x00, // --------OOOO--------------OOOO---------------... - 0x00, 0xf0, 0x00, 0x38, 0x00, 0x00, // --------OOOO--------------OOO----------------... - 0x00, 0xf0, 0x00, 0x78, 0x00, 0x00, // --------OOOO-------------OOOO----------------... - 0x00, 0xf0, 0x00, 0x70, 0x00, 0x00, // --------OOOO-------------OOO-----------------... - 0x00, 0xf0, 0x00, 0xf0, 0x00, 0x00, // --------OOOO------------OOOO-----------------... - 0x00, 0xf0, 0x00, 0xe0, 0x00, 0x00, // --------OOOO------------OOO------------------... - 0x00, 0xf0, 0x01, 0xe0, 0x00, 0x00, // --------OOOO-----------OOOO------------------... - 0x00, 0xf0, 0x03, 0xc0, 0x00, 0x00, // --------OOOO----------OOOO-------------------... - 0x00, 0xf0, 0x03, 0xc0, 0x07, 0x80, // --------OOOO----------OOOO-----------OOOO----... - 0x0f, 0xff, 0x07, 0x80, 0x0f, 0x80, // ----OOOOOOOOOOOO-----OOOO-----------OOOOO----... - 0x0f, 0xff, 0x07, 0x80, 0x0f, 0x80, // ----OOOOOOOOOOOO-----OOOO-----------OOOOO----... - 0x0f, 0xff, 0x0f, 0x00, 0x1f, 0x80, // ----OOOOOOOOOOOO----OOOO-----------OOOOOO----... - 0x00, 0x00, 0x0e, 0x00, 0x3b, 0x80, // --------------------OOO-----------OOO-OOO----... - 0x00, 0x00, 0x1e, 0x00, 0x33, 0x80, // -------------------OOOO-----------OO--OOO----... - 0x00, 0x00, 0x1c, 0x00, 0x73, 0x80, // -------------------OOO-----------OOO--OOO----... - 0x00, 0x00, 0x3c, 0x00, 0xe3, 0x80, // ------------------OOOO----------OOO---OOO----... - 0x00, 0x00, 0x38, 0x00, 0xc3, 0x80, // ------------------OOO-----------OO----OOO----... - 0x00, 0x00, 0x78, 0x01, 0xc3, 0x80, // -----------------OOOO----------OOO----OOO----... - 0x00, 0x00, 0x70, 0x03, 0x83, 0x80, // -----------------OOO----------OOO-----OOO----... - 0x00, 0x00, 0xf0, 0x03, 0x03, 0x80, // ----------------OOOO----------OO------OOO----... - 0x00, 0x01, 0xe0, 0x07, 0x03, 0x80, // ---------------OOOO----------OOO------OOO----... - 0x00, 0x01, 0xe0, 0x0e, 0x03, 0x80, // ---------------OOOO---------OOO-------OOO----... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x07, 0x80, 0x00, 0x03, 0x80, // -------------OOOO---------------------OOO----... - 0x00, 0x07, 0x00, 0x00, 0x03, 0x80, // -------------OOO----------------------OOO----... - 0x00, 0x0f, 0x00, 0x00, 0x03, 0x80, // ------------OOOO----------------------OOO----... - 0x00, 0x0e, 0x00, 0x00, 0x03, 0x80, // ------------OOO-----------------------OOO----... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0x80, // -----------OOOO-----------------------OOO----... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - - // ASCII: 189, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // --------------------------------OOO----------... - 0x07, 0xf0, 0x00, 0x01, 0xe0, 0x00, // -----OOOOOOO-------------------OOOO----------... - 0x1f, 0xf0, 0x00, 0x01, 0xc0, 0x00, // ---OOOOOOOOO-------------------OOO-----------... - 0x1f, 0xf0, 0x00, 0x03, 0xc0, 0x00, // ---OOOOOOOOO------------------OOOO-----------... - 0x10, 0xf0, 0x00, 0x03, 0x80, 0x00, // ---O----OOOO------------------OOO------------... - 0x00, 0xf0, 0x00, 0x07, 0x80, 0x00, // --------OOOO-----------------OOOO------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x0f, 0x00, 0x00, // --------OOOO----------------OOOO-------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x1e, 0x00, 0x00, // --------OOOO---------------OOOO--------------... - 0x00, 0xf0, 0x00, 0x3c, 0x00, 0x00, // --------OOOO--------------OOOO---------------... - 0x00, 0xf0, 0x00, 0x38, 0x00, 0x00, // --------OOOO--------------OOO----------------... - 0x00, 0xf0, 0x00, 0x78, 0x00, 0x00, // --------OOOO-------------OOOO----------------... - 0x00, 0xf0, 0x00, 0x70, 0x00, 0x00, // --------OOOO-------------OOO-----------------... - 0x00, 0xf0, 0x00, 0xf0, 0x00, 0x00, // --------OOOO------------OOOO-----------------... - 0x00, 0xf0, 0x00, 0xe0, 0x00, 0x00, // --------OOOO------------OOO------------------... - 0x00, 0xf0, 0x01, 0xe0, 0x00, 0x00, // --------OOOO-----------OOOO------------------... - 0x00, 0xf0, 0x03, 0xc0, 0x10, 0x00, // --------OOOO----------OOOO---------O---------... - 0x00, 0xf0, 0x03, 0xc3, 0xff, 0x00, // --------OOOO----------OOOO----OOOOOOOOOO-----... - 0x0f, 0xff, 0x07, 0x87, 0xff, 0x80, // ----OOOOOOOOOOOO-----OOOO----OOOOOOOOOOOO----... - 0x0f, 0xff, 0x07, 0x87, 0x87, 0xc0, // ----OOOOOOOOOOOO-----OOOO----OOOO----OOOOO---... - 0x0f, 0xff, 0x0f, 0x04, 0x03, 0xc0, // ----OOOOOOOOOOOO----OOOO-----O--------OOOO---... - 0x00, 0x00, 0x0e, 0x00, 0x01, 0xe0, // --------------------OOO----------------OOOO--... - 0x00, 0x00, 0x1e, 0x00, 0x01, 0xe0, // -------------------OOOO----------------OOOO--... - 0x00, 0x00, 0x1c, 0x00, 0x01, 0xe0, // -------------------OOO-----------------OOOO--... - 0x00, 0x00, 0x3c, 0x00, 0x01, 0xc0, // ------------------OOOO-----------------OOO---... - 0x00, 0x00, 0x38, 0x00, 0x03, 0xc0, // ------------------OOO-----------------OOOO---... - 0x00, 0x00, 0x78, 0x00, 0x07, 0x80, // -----------------OOOO----------------OOOO----... - 0x00, 0x00, 0x70, 0x00, 0x07, 0x00, // -----------------OOO-----------------OOO-----... - 0x00, 0x00, 0xf0, 0x00, 0x0f, 0x00, // ----------------OOOO----------------OOOO-----... - 0x00, 0x01, 0xe0, 0x00, 0x1e, 0x00, // ---------------OOOO----------------OOOO------... - 0x00, 0x01, 0xe0, 0x00, 0x3c, 0x00, // ---------------OOOO---------------OOOO-------... - 0x00, 0x03, 0xc0, 0x00, 0x78, 0x00, // --------------OOOO---------------OOOO--------... - 0x00, 0x03, 0xc0, 0x00, 0xf0, 0x00, // --------------OOOO--------------OOOO---------... - 0x00, 0x07, 0x80, 0x01, 0xe0, 0x00, // -------------OOOO--------------OOOO----------... - 0x00, 0x07, 0x00, 0x03, 0xc0, 0x00, // -------------OOO--------------OOOO-----------... - 0x00, 0x0f, 0x00, 0x07, 0xff, 0xe0, // ------------OOOO-------------OOOOOOOOOOOOOO--... - 0x00, 0x0e, 0x00, 0x07, 0xff, 0xe0, // ------------OOO--------------OOOOOOOOOOOOOO--... - 0x00, 0x1e, 0x00, 0x07, 0xff, 0xe0, // -----------OOOO--------------OOOOOOOOOOOOOO--... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - - // ASCII: 190, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x80, 0x00, 0x00, 0xe0, 0x00, // --------O-----------------------OOO----------... - 0x1f, 0xf8, 0x00, 0x01, 0xe0, 0x00, // ---OOOOOOOOOO------------------OOOO----------... - 0x1f, 0xfe, 0x00, 0x01, 0xc0, 0x00, // ---OOOOOOOOOOOO----------------OOO-----------... - 0x1c, 0x3e, 0x00, 0x03, 0xc0, 0x00, // ---OOO----OOOOO---------------OOOO-----------... - 0x00, 0x0f, 0x00, 0x03, 0x80, 0x00, // ------------OOOO--------------OOO------------... - 0x00, 0x0f, 0x00, 0x07, 0x80, 0x00, // ------------OOOO-------------OOOO------------... - 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x00, // ------------OOOO------------OOOO-------------... - 0x00, 0x0f, 0x00, 0x0f, 0x00, 0x00, // ------------OOOO------------OOOO-------------... - 0x00, 0x1e, 0x00, 0x1e, 0x00, 0x00, // -----------OOOO------------OOOO--------------... - 0x03, 0xfc, 0x00, 0x1e, 0x00, 0x00, // ------OOOOOOOO-------------OOOO--------------... - 0x03, 0xf0, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOO--------------OOOO---------------... - 0x03, 0xfc, 0x00, 0x38, 0x00, 0x00, // ------OOOOOOOO------------OOO----------------... - 0x00, 0x1e, 0x00, 0x78, 0x00, 0x00, // -----------OOOO----------OOOO----------------... - 0x00, 0x0f, 0x00, 0x70, 0x00, 0x00, // ------------OOOO---------OOO-----------------... - 0x00, 0x07, 0x00, 0xf0, 0x00, 0x00, // -------------OOO--------OOOO-----------------... - 0x00, 0x07, 0x00, 0xe0, 0x00, 0x00, // -------------OOO--------OOO------------------... - 0x00, 0x07, 0x01, 0xe0, 0x00, 0x00, // -------------OOO-------OOOO------------------... - 0x00, 0x07, 0x03, 0xc0, 0x00, 0x00, // -------------OOO------OOOO-------------------... - 0x20, 0x0f, 0x03, 0xc0, 0x07, 0x80, // --O---------OOOO------OOOO-----------OOOO----... - 0x3c, 0x7e, 0x07, 0x80, 0x0f, 0x80, // --OOOO---OOOOOO------OOOO-----------OOOOO----... - 0x3f, 0xfc, 0x07, 0x80, 0x0f, 0x80, // --OOOOOOOOOOOO-------OOOO-----------OOOOO----... - 0x1f, 0xf8, 0x0f, 0x00, 0x1f, 0x80, // ---OOOOOOOOOO-------OOOO-----------OOOOOO----... - 0x00, 0x00, 0x0e, 0x00, 0x3b, 0x80, // --------------------OOO-----------OOO-OOO----... - 0x00, 0x00, 0x1e, 0x00, 0x33, 0x80, // -------------------OOOO-----------OO--OOO----... - 0x00, 0x00, 0x1c, 0x00, 0x73, 0x80, // -------------------OOO-----------OOO--OOO----... - 0x00, 0x00, 0x3c, 0x00, 0xe3, 0x80, // ------------------OOOO----------OOO---OOO----... - 0x00, 0x00, 0x38, 0x00, 0xc3, 0x80, // ------------------OOO-----------OO----OOO----... - 0x00, 0x00, 0x78, 0x01, 0xc3, 0x80, // -----------------OOOO----------OOO----OOO----... - 0x00, 0x00, 0x70, 0x03, 0x83, 0x80, // -----------------OOO----------OOO-----OOO----... - 0x00, 0x00, 0xf0, 0x03, 0x03, 0x80, // ----------------OOOO----------OO------OOO----... - 0x00, 0x01, 0xe0, 0x07, 0x03, 0x80, // ---------------OOOO----------OOO------OOO----... - 0x00, 0x01, 0xe0, 0x0e, 0x03, 0x80, // ---------------OOOO---------OOO-------OOO----... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x03, 0xc0, 0x0f, 0xff, 0xf0, // --------------OOOO----------OOOOOOOOOOOOOOOO-... - 0x00, 0x07, 0x80, 0x00, 0x03, 0x80, // -------------OOOO---------------------OOO----... - 0x00, 0x07, 0x00, 0x00, 0x03, 0x80, // -------------OOO----------------------OOO----... - 0x00, 0x0f, 0x00, 0x00, 0x03, 0x80, // ------------OOOO----------------------OOO----... - 0x00, 0x0e, 0x00, 0x00, 0x03, 0x80, // ------------OOO-----------------------OOO----... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0x80, // -----------OOOO-----------------------OOO----... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------... - - // ASCII: 191, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------....................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------------....................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------....................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------....................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------....................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------....................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................... - 0x0f, 0x80, 0x18, 0x00, 0x00, 0x00, // ----OOOOO----------OO----....................... - 0x0f, 0xc0, 0x38, 0x00, 0x00, 0x00, // ----OOOOOO--------OOO----....................... - 0x0f, 0xfb, 0xf8, 0x00, 0x00, 0x00, // ----OOOOOOOOO-OOOOOOO----....................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO----....................... - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO----....................... - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO------....................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................... - - // ASCII: 192, char width: 32 - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-----------------................ - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO----------------................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------------................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------------................ - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO--------------................ - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-------------................ - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 193, char width: 32 - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO----------................ - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO-----------................ - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO------------................ - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-------------................ - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-------------................ - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO--------------................ - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 194, char width: 32 - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x0e, 0x78, 0x00, 0x00, 0x00, // ------------OOO--OOOO-----------................ - 0x00, 0x1e, 0x3c, 0x00, 0x00, 0x00, // -----------OOOO---OOOO----------................ - 0x00, 0x3c, 0x1c, 0x00, 0x00, 0x00, // ----------OOOO-----OOO----------................ - 0x00, 0x38, 0x0e, 0x00, 0x00, 0x00, // ----------OOO-------OOO---------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 195, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x3f, 0x07, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOO--------................ - 0x00, 0x3f, 0xcf, 0x00, 0x00, 0x00, // ----------OOOOOOOO--OOOO--------................ - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO---------................ - 0x00, 0x71, 0xfe, 0x00, 0x00, 0x00, // ---------OOO---OOOOOOOO---------................ - 0x00, 0x70, 0x7c, 0x00, 0x00, 0x00, // ---------OOO-----OOOOO----------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 196, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x3c, 0x3e, 0x00, 0x00, 0x00, // ----------OOOO----OOOOO---------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 197, char width: 32 - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO-------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x38, 0x1c, 0x00, 0x00, 0x00, // ----------OOO------OOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO-----------................ - 0x00, 0x1e, 0x78, 0x00, 0x00, 0x00, // -----------OOOO--OOOO-----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3e, 0x7c, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOO----------................ - 0x00, 0x3c, 0x3c, 0x00, 0x00, 0x00, // ----------OOOO----OOOO----------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x7c, 0x3e, 0x00, 0x00, 0x00, // ---------OOOOO----OOOOO---------................ - 0x00, 0x78, 0x1e, 0x00, 0x00, 0x00, // ---------OOOO------OOOO---------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf8, 0x1f, 0x00, 0x00, 0x00, // --------OOOOO------OOOOO--------................ - 0x00, 0xf0, 0x0f, 0x00, 0x00, 0x00, // --------OOOO--------OOOO--------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, // -------OOOOO--------OOOOO-------................ - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO-------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ------OOOOO----------OOOOO------................ - 0x03, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ------OOOO------------OOOO------................ - 0x07, 0xc0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOO------------OOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO-----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOO----................ - 0x0f, 0x00, 0x00, 0xf0, 0x00, 0x00, // ----OOOO----------------OOOO----................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1f, 0x00, 0x00, 0xf8, 0x00, 0x00, // ---OOOOO----------------OOOOO---................ - 0x1e, 0x00, 0x00, 0x78, 0x00, 0x00, // ---OOOO------------------OOOO---................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // --OOOOO------------------OOOOO--................ - 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, // --OOOO--------------------OOOO--................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x7c, 0x00, 0x00, 0x3e, 0x00, 0x00, // -OOOOO--------------------OOOOO-................ - 0x78, 0x00, 0x00, 0x1e, 0x00, 0x00, // -OOOO----------------------OOOO-................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................ - - // ASCII: 198, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x03, 0xff, 0xff, 0xff, 0xc0, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x03, 0xff, 0xff, 0xff, 0xc0, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x03, 0xff, 0xff, 0xff, 0xc0, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x07, 0xff, 0xff, 0xff, 0xc0, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x00, 0x07, 0xc7, 0x80, 0x00, 0x00, // -------------OOOOO---OOOO---------------------.. - 0x00, 0x0f, 0x87, 0x80, 0x00, 0x00, // ------------OOOOO----OOOO---------------------.. - 0x00, 0x0f, 0x87, 0x80, 0x00, 0x00, // ------------OOOOO----OOOO---------------------.. - 0x00, 0x0f, 0x07, 0x80, 0x00, 0x00, // ------------OOOO-----OOOO---------------------.. - 0x00, 0x1f, 0x07, 0x80, 0x00, 0x00, // -----------OOOOO-----OOOO---------------------.. - 0x00, 0x1f, 0x07, 0x80, 0x00, 0x00, // -----------OOOOO-----OOOO---------------------.. - 0x00, 0x1e, 0x07, 0x80, 0x00, 0x00, // -----------OOOO------OOOO---------------------.. - 0x00, 0x3e, 0x07, 0x80, 0x00, 0x00, // ----------OOOOO------OOOO---------------------.. - 0x00, 0x3c, 0x07, 0x80, 0x00, 0x00, // ----------OOOO-------OOOO---------------------.. - 0x00, 0x7c, 0x07, 0x80, 0x00, 0x00, // ---------OOOOO-------OOOO---------------------.. - 0x00, 0x7c, 0x07, 0x80, 0x00, 0x00, // ---------OOOOO-------OOOO---------------------.. - 0x00, 0x78, 0x07, 0x80, 0x00, 0x00, // ---------OOOO--------OOOO---------------------.. - 0x00, 0xf8, 0x07, 0xff, 0xff, 0x80, // --------OOOOO--------OOOOOOOOOOOOOOOOOOOO-----.. - 0x00, 0xf8, 0x07, 0xff, 0xff, 0x80, // --------OOOOO--------OOOOOOOOOOOOOOOOOOOO-----.. - 0x00, 0xf0, 0x07, 0xff, 0xff, 0x80, // --------OOOO---------OOOOOOOOOOOOOOOOOOOO-----.. - 0x01, 0xf0, 0x07, 0xff, 0xff, 0x80, // -------OOOOO---------OOOOOOOOOOOOOOOOOOOO-----.. - 0x01, 0xe0, 0x07, 0x80, 0x00, 0x00, // -------OOOO----------OOOO---------------------.. - 0x03, 0xe0, 0x07, 0x80, 0x00, 0x00, // ------OOOOO----------OOOO---------------------.. - 0x03, 0xe0, 0x07, 0x80, 0x00, 0x00, // ------OOOOO----------OOOO---------------------.. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, // ------OOOO-----------OOOO---------------------.. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO---------------------.. - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO---------------------.. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO---------------------.. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO---------------------.. - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO---------------------.. - 0x1e, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOO--------------OOOO---------------------.. - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---------------------.. - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---------------------.. - 0x7c, 0x00, 0x07, 0xff, 0xff, 0xe0, // -OOOOO---------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0x7c, 0x00, 0x07, 0xff, 0xff, 0xe0, // -OOOOO---------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0x78, 0x00, 0x07, 0xff, 0xff, 0xe0, // -OOOO----------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0xf8, 0x00, 0x07, 0xff, 0xff, 0xe0, // OOOOO----------------OOOOOOOOOOOOOOOOOOOOOO---.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 199, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, // ------------------OO-------------............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----............... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---............... - 0x01, 0xfe, 0x00, 0xfc, 0x00, 0x00, // -------OOOOOOOO---------OOOOOO---............... - 0x03, 0xf8, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOOO-------------OOOO---............... - 0x03, 0xf0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOOO----------------OO---............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------------------............... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------------------............... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------------------............... - 0x07, 0xe0, 0x00, 0x04, 0x00, 0x00, // -----OOOOOO------------------O---............... - 0x03, 0xe0, 0x00, 0x0c, 0x00, 0x00, // ------OOOOO-----------------OO---............... - 0x03, 0xf8, 0x00, 0x1c, 0x00, 0x00, // ------OOOOOOO--------------OOO---............... - 0x01, 0xfc, 0x00, 0x7c, 0x00, 0x00, // -------OOOOOOO-----------OOOOO---............... - 0x00, 0xff, 0xef, 0xfc, 0x00, 0x00, // --------OOOOOOOOOOO-OOOOOOOOOO---............... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO---............... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----............... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------............... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------............... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, // -------------------OOO-----------............... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, // -------------------OOO-----------............... - 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, // --------------------OOO----------............... - 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, // --------------------OOO----------............... - 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, // --------------------OOO----------............... - 0x00, 0x02, 0x1e, 0x00, 0x00, 0x00, // --------------O----OOOO----------............... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // --------------OOOOOOOOO----------............... - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO-----------............... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............... - - // ASCII: 200, char width: 30 - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----------------.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 201, char width: 30 - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO----------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 202, char width: 30 - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO------------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOO-----------.................. - 0x00, 0x1c, 0xf0, 0x00, 0x00, 0x00, // -----------OOO--OOOO----------.................. - 0x00, 0x3c, 0x78, 0x00, 0x00, 0x00, // ----------OOOO---OOOO---------.................. - 0x00, 0x78, 0x38, 0x00, 0x00, 0x00, // ---------OOOO-----OOO---------.................. - 0x00, 0x70, 0x1c, 0x00, 0x00, 0x00, // ---------OOO-------OOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 203, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x78, 0x7c, 0x00, 0x00, 0x00, // ---------OOOO----OOOOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO-----.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------------------.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 204, char width: 14 - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO--------.................................. - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------.................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------.................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO----.................................. - 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOO----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 205, char width: 14 - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-.................................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO--.................................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO---.................................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO----.................................. - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 206, char width: 14 - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----.................................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----.................................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---.................................. - 0x1c, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOO--OOOO--.................................. - 0x3c, 0x78, 0x00, 0x00, 0x00, 0x00, // --OOOO---OOOO-.................................. - 0x78, 0x38, 0x00, 0x00, 0x00, 0x00, // -OOOO-----OOO-.................................. - 0x70, 0x1c, 0x00, 0x00, 0x00, 0x00, // -OOO-------OOO.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 207, char width: 14 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x78, 0x7c, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOOOO.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------.................................. - - // ASCII: 208, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------------............ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO------------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO---------............ - 0x07, 0x80, 0x3f, 0xf8, 0x00, 0x00, // -----OOOO---------OOOOOOOOOOO-------............ - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO------............ - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO------............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0x3e, 0x00, 0x00, // -----OOOO-----------------OOOOO-----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x80, 0x00, // -----OOOO------------------OOOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, // -----OOOO--------------------OOOO---............ - 0xff, 0xff, 0x80, 0x07, 0x80, 0x00, // OOOOOOOOOOOOOOOOO------------OOOO---............ - 0xff, 0xff, 0x80, 0x07, 0x80, 0x00, // OOOOOOOOOOOOOOOOO------------OOOO---............ - 0xff, 0xff, 0x80, 0x07, 0x80, 0x00, // OOOOOOOOOOOOOOOOO------------OOOO---............ - 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, // -----OOOO--------------------OOOO---............ - 0x07, 0x80, 0x00, 0x07, 0x80, 0x00, // -----OOOO--------------------OOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x0f, 0x80, 0x00, // -----OOOO-------------------OOOOO---............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x1f, 0x00, 0x00, // -----OOOO------------------OOOOO----............ - 0x07, 0x80, 0x00, 0x3f, 0x00, 0x00, // -----OOOO-----------------OOOOOO----............ - 0x07, 0x80, 0x00, 0x7e, 0x00, 0x00, // -----OOOO----------------OOOOOO-----............ - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO------............ - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO------............ - 0x07, 0x80, 0x1f, 0xf8, 0x00, 0x00, // -----OOOO----------OOOOOOOOOO-------............ - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO----------............ - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO------------............ - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO----------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............ - - // ASCII: 209, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x1f, 0x83, 0x80, 0x00, 0x00, // -----------OOOOOO-----OOO----------............. - 0x00, 0x1f, 0xe7, 0x80, 0x00, 0x00, // -----------OOOOOOOO--OOOO----------............. - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----------............. - 0x00, 0x38, 0xff, 0x00, 0x00, 0x00, // ----------OOO---OOOOOOOO-----------............. - 0x00, 0x38, 0x3e, 0x00, 0x00, 0x00, // ----------OOO-----OOOOO------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xe0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOO---------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf0, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOO--------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xf8, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOO-------------OOOO-----............. - 0x07, 0xfc, 0x00, 0x3c, 0x00, 0x00, // -----OOOOOOOOO------------OOOO-----............. - 0x07, 0xbc, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOO------------OOOO-----............. - 0x07, 0xbe, 0x00, 0x3c, 0x00, 0x00, // -----OOOO-OOOOO-----------OOOO-----............. - 0x07, 0x9e, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOO-----------OOOO-----............. - 0x07, 0x9f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO--OOOOO----------OOOO-----............. - 0x07, 0x8f, 0x00, 0x3c, 0x00, 0x00, // -----OOOO---OOOO----------OOOO-----............. - 0x07, 0x8f, 0x80, 0x3c, 0x00, 0x00, // -----OOOO---OOOOO---------OOOO-----............. - 0x07, 0x87, 0x80, 0x3c, 0x00, 0x00, // -----OOOO----OOOO---------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x87, 0xc0, 0x3c, 0x00, 0x00, // -----OOOO----OOOOO--------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x83, 0xe0, 0x3c, 0x00, 0x00, // -----OOOO-----OOOOO-------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x81, 0xf0, 0x3c, 0x00, 0x00, // -----OOOO------OOOOO------OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0xf8, 0x3c, 0x00, 0x00, // -----OOOO-------OOOOO-----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x7c, 0x3c, 0x00, 0x00, // -----OOOO--------OOOOO----OOOO-----............. - 0x07, 0x80, 0x3c, 0x3c, 0x00, 0x00, // -----OOOO---------OOOO----OOOO-----............. - 0x07, 0x80, 0x3e, 0x3c, 0x00, 0x00, // -----OOOO---------OOOOO---OOOO-----............. - 0x07, 0x80, 0x1e, 0x3c, 0x00, 0x00, // -----OOOO----------OOOO---OOOO-----............. - 0x07, 0x80, 0x1f, 0x3c, 0x00, 0x00, // -----OOOO----------OOOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0x3c, 0x00, 0x00, // -----OOOO-----------OOOO--OOOO-----............. - 0x07, 0x80, 0x0f, 0xbc, 0x00, 0x00, // -----OOOO-----------OOOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xbc, 0x00, 0x00, // -----OOOO------------OOOO-OOOO-----............. - 0x07, 0x80, 0x07, 0xfc, 0x00, 0x00, // -----OOOO------------OOOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x03, 0xfc, 0x00, 0x00, // -----OOOO-------------OOOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x01, 0xfc, 0x00, 0x00, // -----OOOO--------------OOOOOOO-----............. - 0x07, 0x80, 0x00, 0xfc, 0x00, 0x00, // -----OOOO---------------OOOOOO-----............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............. - - // ASCII: 210, char width: 37 - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO--------------------........... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-------------------........... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO------------------........... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO------------------........... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO-----------------........... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----------------........... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, // ------------------OOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 211, char width: 37 - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-------------........... - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, // -------------------OOOO--------------........... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO---------------........... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----------------........... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO----------------........... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO-----------------........... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 212, char width: 37 - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........... - 0x00, 0x03, 0x9e, 0x00, 0x00, 0x00, // --------------OOO--OOOO--------------........... - 0x00, 0x07, 0x8f, 0x00, 0x00, 0x00, // -------------OOOO---OOOO-------------........... - 0x00, 0x0f, 0x07, 0x00, 0x00, 0x00, // ------------OOOO-----OOO-------------........... - 0x00, 0x0e, 0x03, 0x80, 0x00, 0x00, // ------------OOO-------OOO------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 213, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x0f, 0xc1, 0xc0, 0x00, 0x00, // ------------OOOOOO-----OOO-----------........... - 0x00, 0x0f, 0xf3, 0xc0, 0x00, 0x00, // ------------OOOOOOOO--OOOO-----------........... - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // -----------OOOOOOOOOOOOOO------------........... - 0x00, 0x1c, 0x7f, 0x80, 0x00, 0x00, // -----------OOO---OOOOOOOO------------........... - 0x00, 0x1c, 0x1f, 0x00, 0x00, 0x00, // -----------OOO-----OOOOO-------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 214, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x0f, 0x0f, 0x80, 0x00, 0x00, // ------------OOOO----OOOOO------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // -----------------OO------------------........... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........... - 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOO-----------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO--------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x0f, 0x80, 0x00, 0x1f, 0x80, 0x00, // ----OOOOO------------------OOOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0x80, 0x00, // ---OOOOO---------------------OOOO----........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOO----------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---------------------OOOOO---........... - 0x1f, 0x00, 0x00, 0x0f, 0x80, 0x00, // ---OOOOO--------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-------------------OOOOO----........... - 0x07, 0xc0, 0x00, 0x1f, 0x00, 0x00, // -----OOOOO-----------------OOOOO-----........... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........... - 0x00, 0xff, 0xdf, 0xf8, 0x00, 0x00, // --------OOOOOOOOOO-OOOOOOOOOO--------........... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO---------........... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------........... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 215, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x40, 0x00, 0x02, 0x00, 0x00, // ---------O--------------------O--------......... - 0x00, 0xc0, 0x00, 0x06, 0x00, 0x00, // --------OO-------------------OO--------......... - 0x01, 0xe0, 0x00, 0x0f, 0x00, 0x00, // -------OOOO-----------------OOOO-------......... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......... - 0x00, 0xf8, 0x00, 0x3f, 0x00, 0x00, // --------OOOOO-------------OOOOOO-------......... - 0x00, 0x7c, 0x00, 0x7e, 0x00, 0x00, // ---------OOOOO-----------OOOOOO--------......... - 0x00, 0x7e, 0x00, 0xfc, 0x00, 0x00, // ---------OOOOOO---------OOOOOO---------......... - 0x00, 0x3f, 0x01, 0xf8, 0x00, 0x00, // ----------OOOOOO-------OOOOOO----------......... - 0x00, 0x1f, 0x83, 0xf0, 0x00, 0x00, // -----------OOOOOO-----OOOOOO-----------......... - 0x00, 0x0f, 0xc3, 0xe0, 0x00, 0x00, // ------------OOOOOO----OOOOO------------......... - 0x00, 0x07, 0xe7, 0xc0, 0x00, 0x00, // -------------OOOOOO--OOOOO-------------......... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, // --------------OOOOO-OOOOO--------------......... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......... - 0x00, 0x07, 0xef, 0xc0, 0x00, 0x00, // -------------OOOOOO-OOOOOO-------------......... - 0x00, 0x07, 0xc7, 0xe0, 0x00, 0x00, // -------------OOOOO---OOOOOO------------......... - 0x00, 0x0f, 0x83, 0xf0, 0x00, 0x00, // ------------OOOOO-----OOOOOO-----------......... - 0x00, 0x1f, 0x01, 0xf0, 0x00, 0x00, // -----------OOOOO-------OOOOO-----------......... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, // ----------OOOOO---------OOOOO----------......... - 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, // ---------OOOOO-----------OOOOO---------......... - 0x00, 0xfc, 0x00, 0x3e, 0x00, 0x00, // --------OOOOOO------------OOOOO--------......... - 0x01, 0xf8, 0x00, 0x1f, 0x00, 0x00, // -------OOOOOO--------------OOOOO-------......... - 0x01, 0xf0, 0x00, 0x1f, 0x80, 0x00, // -------OOOOO---------------OOOOOO------......... - 0x01, 0xe0, 0x00, 0x0f, 0x00, 0x00, // -------OOOO-----------------OOOO-------......... - 0x00, 0xc0, 0x00, 0x06, 0x00, 0x00, // --------OO-------------------OO--------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 216, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x70, 0x01, 0x80, 0x00, // -----------------OOO-----------OO----........... - 0x00, 0x07, 0xff, 0x01, 0xc0, 0x00, // -------------OOOOOOOOOOO-------OOO---........... - 0x00, 0x1f, 0xff, 0xc3, 0xc0, 0x00, // -----------OOOOOOOOOOOOOOO----OOOO---........... - 0x00, 0x7f, 0xff, 0xf7, 0x80, 0x00, // ---------OOOOOOOOOOOOOOOOOOO-OOOO----........... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-----........... - 0x01, 0xfc, 0x01, 0xff, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOO-----........... - 0x03, 0xf8, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOO------........... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........... - 0x07, 0xe0, 0x00, 0x7f, 0x00, 0x00, // -----OOOOOO--------------OOOOOOO-----........... - 0x07, 0xc0, 0x00, 0xff, 0x00, 0x00, // -----OOOOO--------------OOOOOOOO-----........... - 0x0f, 0x80, 0x00, 0xff, 0x80, 0x00, // ----OOOOO---------------OOOOOOOOO----........... - 0x0f, 0x80, 0x01, 0xef, 0x80, 0x00, // ----OOOOO--------------OOOO-OOOOO----........... - 0x0f, 0x80, 0x03, 0xcf, 0x80, 0x00, // ----OOOOO-------------OOOO--OOOOO----........... - 0x1f, 0x00, 0x07, 0x87, 0x80, 0x00, // ---OOOOO-------------OOOO----OOOO----........... - 0x1f, 0x00, 0x07, 0x87, 0xc0, 0x00, // ---OOOOO-------------OOOO----OOOOO---........... - 0x1f, 0x00, 0x0f, 0x07, 0xc0, 0x00, // ---OOOOO------------OOOO-----OOOOO---........... - 0x1f, 0x00, 0x1e, 0x07, 0xc0, 0x00, // ---OOOOO-----------OOOO------OOOOO---........... - 0x1f, 0x00, 0x3c, 0x07, 0xc0, 0x00, // ---OOOOO----------OOOO-------OOOOO---........... - 0x1f, 0x00, 0x3c, 0x07, 0xc0, 0x00, // ---OOOOO----------OOOO-------OOOOO---........... - 0x1e, 0x00, 0x78, 0x07, 0xc0, 0x00, // ---OOOO----------OOOO--------OOOOO---........... - 0x1e, 0x00, 0xf0, 0x07, 0xc0, 0x00, // ---OOOO---------OOOO---------OOOOO---........... - 0x1f, 0x01, 0xe0, 0x07, 0xc0, 0x00, // ---OOOOO-------OOOO----------OOOOO---........... - 0x1f, 0x01, 0xe0, 0x07, 0xc0, 0x00, // ---OOOOO-------OOOO----------OOOOO---........... - 0x1f, 0x03, 0xc0, 0x07, 0xc0, 0x00, // ---OOOOO------OOOO-----------OOOOO---........... - 0x1f, 0x07, 0x80, 0x07, 0xc0, 0x00, // ---OOOOO-----OOOO------------OOOOO---........... - 0x1f, 0x0f, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO----OOOO-------------OOOOO---........... - 0x1f, 0x1f, 0x00, 0x07, 0xc0, 0x00, // ---OOOOO---OOOOO-------------OOOOO---........... - 0x0f, 0x1e, 0x00, 0x0f, 0x80, 0x00, // ----OOOO---OOOO-------------OOOOO----........... - 0x0f, 0xbc, 0x00, 0x0f, 0x80, 0x00, // ----OOOOO-OOOO--------------OOOOO----........... - 0x0f, 0xf8, 0x00, 0x0f, 0x80, 0x00, // ----OOOOOOOOO---------------OOOOO----........... - 0x07, 0xf8, 0x00, 0x1f, 0x00, 0x00, // -----OOOOOOOO--------------OOOOO-----........... - 0x07, 0xf0, 0x00, 0x3f, 0x00, 0x00, // -----OOOOOOO--------------OOOOOO-----........... - 0x03, 0xe0, 0x00, 0x3e, 0x00, 0x00, // ------OOOOO---------------OOOOO------........... - 0x03, 0xf0, 0x00, 0xfe, 0x00, 0x00, // ------OOOOOO------------OOOOOOO------........... - 0x07, 0xfc, 0x01, 0xfc, 0x00, 0x00, // -----OOOOOOOOO---------OOOOOOO-------........... - 0x07, 0xff, 0xdf, 0xf8, 0x00, 0x00, // -----OOOOOOOOOOOOO-OOOOOOOOOO--------........... - 0x0f, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOOOOOO---------........... - 0x1e, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ---OOOO---OOOOOOOOOOOOOOOOO----------........... - 0x3c, 0x0f, 0xff, 0x80, 0x00, 0x00, // --OOOO------OOOOOOOOOOOOO------------........... - 0x1c, 0x00, 0xf8, 0x00, 0x00, 0x00, // ---OOO----------OOOOO----------------........... - 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O--------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........... - - // ASCII: 217, char width: 34 - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------------.............. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-----------------.............. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------------.............. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------------.............. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO--------------.............. - 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, // -----------------OOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 218, char width: 34 - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // ------------------OOOOO-----------.............. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO------------.............. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO-------------.............. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO--------------.............. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO--------------.............. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 219, char width: 34 - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO--------------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOO-------------.............. - 0x00, 0x07, 0x3c, 0x00, 0x00, 0x00, // -------------OOO--OOOO------------.............. - 0x00, 0x0f, 0x1e, 0x00, 0x00, 0x00, // ------------OOOO---OOOO-----------.............. - 0x00, 0x1e, 0x0e, 0x00, 0x00, 0x00, // -----------OOOO-----OOO-----------.............. - 0x00, 0x1c, 0x07, 0x00, 0x00, 0x00, // -----------OOO-------OOO----------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 220, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x1e, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO----OOOOO----------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x3c, 0x00, 0x00, // ----OOOOO-----------------OOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x0f, 0x80, 0x00, 0x7c, 0x00, 0x00, // ----OOOOO----------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO---------------OOOOO----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x07, 0xc0, 0x00, 0xf8, 0x00, 0x00, // -----OOOOO--------------OOOOO-----.............. - 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO------------OOOOOO-----.............. - 0x03, 0xf0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO----------OOOOOO------.............. - 0x01, 0xff, 0x3f, 0xe0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOO-------.............. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............. - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --------------OOOOOO--------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............. - - // ASCII: 221, char width: 29 - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // OOOOO------------------OOOOO-................... - 0x7c, 0x00, 0x01, 0xf0, 0x00, 0x00, // -OOOOO-----------------OOOOO-................... - 0x7c, 0x00, 0x03, 0xe0, 0x00, 0x00, // -OOOOO----------------OOOOO--................... - 0x3e, 0x00, 0x03, 0xe0, 0x00, 0x00, // --OOOOO---------------OOOOO--................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO------................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO-------................... - 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, // -------OOOOO-----OOOOO-------................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO--------................... - 0x00, 0xf8, 0xf8, 0x00, 0x00, 0x00, // --------OOOOO---OOOOO--------................... - 0x00, 0x7d, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOO-OOOOO---------................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 222, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOO--------.................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO------.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0x80, 0x3f, 0x80, 0x00, 0x00, // -----OOOO---------OOOOOOO---.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-------------OOOOO-.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x07, 0xc0, 0x00, 0x00, // -----OOOO------------OOOOO--.................... - 0x07, 0x80, 0x0f, 0xc0, 0x00, 0x00, // -----OOOO-----------OOOOOO--.................... - 0x07, 0x80, 0x3f, 0x80, 0x00, 0x00, // -----OOOO---------OOOOOOO---.................... - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---.................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO----.................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----.................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 223, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, // --------------O--------------................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xfd, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOOOOO------................... - 0x07, 0xe0, 0x3e, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x07, 0x80, 0x0f, 0x00, 0x00, 0x00, // -----OOOO-----------OOOO-----................... - 0x0f, 0x80, 0x0f, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOO-----................... - 0x0f, 0x80, 0x0f, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOO-----................... - 0x0f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOOO-----................... - 0x0f, 0x80, 0xff, 0x80, 0x00, 0x00, // ----OOOOO-------OOOOOOOOO----................... - 0x0f, 0x81, 0xfc, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOO-------................... - 0x0f, 0x83, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOOO---------................... - 0x0f, 0x83, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOO-----------................... - 0x0f, 0x87, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOOO-----------................... - 0x0f, 0x87, 0x80, 0x00, 0x00, 0x00, // ----OOOOO----OOOO------------................... - 0x0f, 0x87, 0x80, 0x00, 0x00, 0x00, // ----OOOOO----OOOO------------................... - 0x0f, 0x87, 0x80, 0x00, 0x00, 0x00, // ----OOOOO----OOOO------------................... - 0x0f, 0x87, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOOO-----------................... - 0x0f, 0x87, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOOO-----------................... - 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO----------................... - 0x0f, 0x83, 0xf8, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOOOO--------................... - 0x0f, 0x81, 0xfc, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOO-------................... - 0x0f, 0x80, 0xfe, 0x00, 0x00, 0x00, // ----OOOOO-------OOOOOOO------................... - 0x0f, 0x80, 0x7f, 0x80, 0x00, 0x00, // ----OOOOO--------OOOOOOOO----................... - 0x0f, 0x80, 0x1f, 0xc0, 0x00, 0x00, // ----OOOOO----------OOOOOOO---................... - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO-----------OOOOOO---................... - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO--................... - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO--................... - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO--................... - 0x0f, 0x90, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO--O----------OOOOO--................... - 0x0f, 0x9e, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOO--OOOO-----OOOOOO---................... - 0x0f, 0x9f, 0xff, 0xc0, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOOOOO---................... - 0x0f, 0x9f, 0xff, 0x80, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOOOO----................... - 0x0f, 0x9f, 0xfe, 0x00, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOO------................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 224, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------------------................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 225, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO--------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 226, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-------------................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO------------................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO------------................... - 0x00, 0x3b, 0xc0, 0x00, 0x00, 0x00, // ----------OOO-OOOO-----------................... - 0x00, 0x79, 0xc0, 0x00, 0x00, 0x00, // ---------OOOO--OOO-----------................... - 0x00, 0xf0, 0xe0, 0x00, 0x00, 0x00, // --------OOOO----OOO----------................... - 0x00, 0xe0, 0xf0, 0x00, 0x00, 0x00, // --------OOO-----OOOO---------................... - 0x01, 0xe0, 0x70, 0x00, 0x00, 0x00, // -------OOOO------OOO---------................... - 0x01, 0xc0, 0x38, 0x00, 0x00, 0x00, // -------OOO--------OOO--------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 227, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0xf8, 0x38, 0x00, 0x00, 0x00, // --------OOOOO-----OOO--------................... - 0x01, 0xfc, 0x38, 0x00, 0x00, 0x00, // -------OOOOOOO----OOO--------................... - 0x01, 0xfe, 0x38, 0x00, 0x00, 0x00, // -------OOOOOOOO---OOO--------................... - 0x01, 0xcf, 0xf8, 0x00, 0x00, 0x00, // -------OOO--OOOOOOOOO--------................... - 0x03, 0x87, 0xf0, 0x00, 0x00, 0x00, // ------OOO----OOOOOOO---------................... - 0x03, 0x83, 0xf0, 0x00, 0x00, 0x00, // ------OOO-----OOOOOO---------................... - 0x03, 0x80, 0xc0, 0x00, 0x00, 0x00, // ------OOO-------OO-----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 228, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO---------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 229, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO----------................... - 0x00, 0xe0, 0xe0, 0x00, 0x00, 0x00, // --------OOO-----OOO----------................... - 0x00, 0xe0, 0x70, 0x00, 0x00, 0x00, // --------OOO------OOO---------................... - 0x01, 0xc0, 0x70, 0x00, 0x00, 0x00, // -------OOO-------OOO---------................... - 0x01, 0xc0, 0x70, 0x00, 0x00, 0x00, // -------OOO-------OOO---------................... - 0x00, 0xc0, 0x70, 0x00, 0x00, 0x00, // --------OO-------OOO---------................... - 0x00, 0xe0, 0x70, 0x00, 0x00, 0x00, // --------OOO------OOO---------................... - 0x00, 0xf0, 0xe0, 0x00, 0x00, 0x00, // --------OOOO----OOO----------................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-----------................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------................... - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO--------................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................... - 0x07, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----OOO---------OOOOOO------................... - 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----O------------OOOOO------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -------------------OOOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------------------OOOO-----................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO-----................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-----................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-----................... - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-----................... - 0x0f, 0xc0, 0x0f, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOO-----................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO-----................... - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOO------------OOOOO-----................... - 0x1e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOO-----------OOOOOO-----................... - 0x1f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOO-----................... - 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOOOO-----................... - 0x0f, 0xc1, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----OOOOOOOOO-----................... - 0x0f, 0xff, 0xef, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOO-----................... - 0x07, 0xff, 0xcf, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOO-----................... - 0x01, 0xff, 0x8f, 0x00, 0x00, 0x00, // -------OOOOOOOOOO---OOOO-----................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 230, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x7f, 0xc0, 0x0f, 0xf0, 0x00, // ---------OOOOOOOOO----------OOOOOOOO----------.. - 0x03, 0xff, 0xf0, 0x3f, 0xfc, 0x00, // ------OOOOOOOOOOOOOO------OOOOOOOOOOOO--------.. - 0x07, 0xff, 0xf8, 0x7f, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOO----OOOOOOOOOOOOOO-------.. - 0x07, 0xff, 0xfc, 0xff, 0xff, 0x00, // -----OOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOO------.. - 0x07, 0x00, 0x7f, 0xf8, 0x1f, 0x80, // -----OOO---------OOOOOOOOOOOO------OOOOOO-----.. - 0x04, 0x00, 0x3f, 0xe0, 0x07, 0xc0, // -----O------------OOOOOOOOO----------OOOOO----.. - 0x00, 0x00, 0x1f, 0xc0, 0x03, 0xc0, // -------------------OOOOOOO------------OOOO----.. - 0x00, 0x00, 0x0f, 0xc0, 0x03, 0xe0, // --------------------OOOOOO------------OOOOO---.. - 0x00, 0x00, 0x0f, 0x80, 0x01, 0xe0, // --------------------OOOOO--------------OOOO---.. - 0x00, 0x00, 0x0f, 0x80, 0x01, 0xe0, // --------------------OOOOO--------------OOOO---.. - 0x00, 0x00, 0x0f, 0x80, 0x01, 0xe0, // --------------------OOOOO--------------OOOO---.. - 0x00, 0x3f, 0xff, 0x00, 0x01, 0xe0, // ----------OOOOOOOOOOOOOO---------------OOOO---.. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xe0, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xe0, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x0f, 0xc0, 0x0f, 0xff, 0xff, 0xf0, // ----OOOOOO----------OOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----------------------.. - 0x1f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOOO------------OOOO----------------------.. - 0x1e, 0x00, 0x0f, 0x00, 0x00, 0x00, // ---OOOO-------------OOOO----------------------.. - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---------------------.. - 0x1e, 0x00, 0x1f, 0x80, 0x00, 0x00, // ---OOOO------------OOOOOO---------------------.. - 0x1e, 0x00, 0x1f, 0x80, 0x00, 0x00, // ---OOOO------------OOOOOO---------------------.. - 0x1e, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ---OOOO-----------OOOOOOOO--------------------.. - 0x1f, 0x00, 0x3f, 0xe0, 0x00, 0x20, // ---OOOOO----------OOOOOOOOO---------------O---.. - 0x1f, 0x80, 0x7b, 0xf0, 0x00, 0xe0, // ---OOOOOO--------OOOO-OOOOOO------------OOO---.. - 0x0f, 0xc1, 0xf9, 0xfe, 0x07, 0xe0, // ----OOOOOO-----OOOOOO--OOOOOOOO------OOOOOO---.. - 0x0f, 0xff, 0xf0, 0xff, 0xff, 0xe0, // ----OOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOOOO---.. - 0x07, 0xff, 0xe0, 0x7f, 0xff, 0xe0, // -----OOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOOO---.. - 0x01, 0xff, 0x80, 0x1f, 0xff, 0x00, // -------OOOOOOOOOO----------OOOOOOOOOOOOO------.. - 0x00, 0x3c, 0x00, 0x01, 0xf0, 0x00, // ----------OOOO-----------------OOOOO----------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.. - - // ASCII: 231, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOO------...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO---...................... - 0x03, 0xf0, 0x0e, 0x00, 0x00, 0x00, // ------OOOOOO--------OOO---...................... - 0x07, 0xc0, 0x02, 0x00, 0x00, 0x00, // -----OOOOO------------O---...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO-------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------------...................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------------...................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------...................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------...................... - 0x07, 0xe0, 0x06, 0x00, 0x00, 0x00, // -----OOOOOO----------OO---...................... - 0x03, 0xf8, 0x3e, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOOOO---...................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO---...................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO---...................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO----...................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO---------...................... - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO--------...................... - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ---------------OOO--------...................... - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------...................... - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------...................... - 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // ----------------OOO-------...................... - 0x00, 0x21, 0xe0, 0x00, 0x00, 0x00, // ----------O----OOOO-------...................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOO-------...................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO--------...................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO---------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................... - - // ASCII: 232, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 233, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-------................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 234, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1d, 0xe0, 0x00, 0x00, 0x00, // -----------OOO-OOOO----------................... - 0x00, 0x3c, 0xe0, 0x00, 0x00, 0x00, // ----------OOOO--OOO----------................... - 0x00, 0x78, 0x70, 0x00, 0x00, 0x00, // ---------OOOO----OOO---------................... - 0x00, 0x70, 0x78, 0x00, 0x00, 0x00, // ---------OOO-----OOOO--------................... - 0x00, 0xf0, 0x38, 0x00, 0x00, 0x00, // --------OOOO------OOO--------................... - 0x00, 0xe0, 0x1c, 0x00, 0x00, 0x00, // --------OOO--------OOO-------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 235, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO--------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, // -----OOOOO----------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO----................... - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO---................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOOO--------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO---................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO----------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------------................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO---------------------................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------------................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------------................... - 0x07, 0xe0, 0x01, 0x80, 0x00, 0x00, // -----OOOOOO------------OO----................... - 0x03, 0xfc, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOOOO-----OOOOOO----................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO------................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 236, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOO----------................................... - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------................................... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO--------................................... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO--------................................... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO-------................................... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOO------................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO----................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 237, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO.................................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO.................................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO................................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-................................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOO---................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO----................................... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----................................... - 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOO------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 238, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOO-----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---................................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---................................... - 0x1d, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOO-OOOO--................................... - 0x3c, 0xe0, 0x00, 0x00, 0x00, 0x00, // --OOOO--OOO--................................... - 0x78, 0x70, 0x00, 0x00, 0x00, 0x00, // -OOOO----OOO-................................... - 0x70, 0x78, 0x00, 0x00, 0x00, 0x00, // -OOO-----OOOO................................... - 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, // OOOO------OOO................................... - 0xe0, 0x1c, 0x00, 0x00, 0x00, 0x00, // OOO--------OOO.................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 239, char width: 13 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOO................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------................................... - - // ASCII: 240, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----------------................... - 0x00, 0xf8, 0x02, 0x00, 0x00, 0x00, // --------OOOOO---------O------................... - 0x00, 0x7c, 0x0e, 0x00, 0x00, 0x00, // ---------OOOOO------OOO------................... - 0x00, 0x3e, 0x7e, 0x00, 0x00, 0x00, // ----------OOOOO--OOOOOO------................... - 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOO-------................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOO----------................... - 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO------------................... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO-----------................... - 0x07, 0xe7, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO--OOOOOO----------................... - 0x07, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----OOO------OOOOO----------................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO---------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOO-------................... - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO------OOOOOO-----................... - 0x07, 0xc0, 0x0f, 0x00, 0x00, 0x00, // -----OOOOO----------OOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x03, 0xf0, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 241, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x7c, 0x1c, 0x00, 0x00, 0x00, // ---------OOOOO-----OOO--------.................. - 0x00, 0xfe, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOO----OOO--------.................. - 0x00, 0xff, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOOO---OOO--------.................. - 0x00, 0xe7, 0xfc, 0x00, 0x00, 0x00, // --------OOO--OOOOOOOOO--------.................. - 0x01, 0xc3, 0xf8, 0x00, 0x00, 0x00, // -------OOO----OOOOOOO---------.................. - 0x01, 0xc1, 0xf8, 0x00, 0x00, 0x00, // -------OOO-----OOOOOO---------.................. - 0x01, 0xc0, 0x60, 0x00, 0x00, 0x00, // -------OOO-------OO-----------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOO----------.................. - 0x0f, 0x0f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOO-----OOOOOO------.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO-----.................. - 0x0f, 0xc0, 0x07, 0x80, 0x00, 0x00, // ----OOOOOO-----------OOOO-----.................. - 0x0f, 0x80, 0x07, 0x80, 0x00, 0x00, // ----OOOOO------------OOOO-----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x0f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOO-------------OOOOO----.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 242, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO------------------................... - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO-----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----------------................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------------................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO--------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 243, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO-------................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-------................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO--------................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO---------................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO-----------................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO------------................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------------................... - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 244, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO-------------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO-----------................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO-----------................... - 0x00, 0x1d, 0xe0, 0x00, 0x00, 0x00, // -----------OOO-OOOO----------................... - 0x00, 0x3c, 0xe0, 0x00, 0x00, 0x00, // ----------OOOO--OOO----------................... - 0x00, 0x78, 0x70, 0x00, 0x00, 0x00, // ---------OOOO----OOO---------................... - 0x00, 0x70, 0x78, 0x00, 0x00, 0x00, // ---------OOO-----OOOO--------................... - 0x00, 0xf0, 0x38, 0x00, 0x00, 0x00, // --------OOOO------OOO--------................... - 0x00, 0xe0, 0x1c, 0x00, 0x00, 0x00, // --------OOO--------OOO-------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 245, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x7c, 0x1c, 0x00, 0x00, 0x00, // ---------OOOOO-----OOO-------................... - 0x00, 0xfe, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOO----OOO-------................... - 0x00, 0xff, 0x1c, 0x00, 0x00, 0x00, // --------OOOOOOOO---OOO-------................... - 0x00, 0xe7, 0xfc, 0x00, 0x00, 0x00, // --------OOO--OOOOOOOOO-------................... - 0x01, 0xc3, 0xf8, 0x00, 0x00, 0x00, // -------OOO----OOOOOOO--------................... - 0x01, 0xc1, 0xf8, 0x00, 0x00, 0x00, // -------OOO-----OOOOOO--------................... - 0x01, 0xc0, 0x60, 0x00, 0x00, 0x00, // -------OOO-------OO----------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 246, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO--------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO---------................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................... - 0x07, 0xe0, 0x7e, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x00, // ---OOOO---------------OOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1e, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--------------OOOOO---................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ---OOOOO-------------OOOOO---................... - 0x1f, 0x00, 0x07, 0x80, 0x00, 0x00, // ---OOOOO-------------OOOO----................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO----................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO----................... - 0x0f, 0x80, 0x1f, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-------................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO--------................... - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO---------................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 247, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......... - - // ASCII: 248, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, // ------------------------OO---................... - 0x00, 0x3f, 0xc1, 0xe0, 0x00, 0x00, // ----------OOOOOOOO-----OOOO--................... - 0x00, 0xff, 0xf3, 0xc0, 0x00, 0x00, // --------OOOOOOOOOOOO--OOOO---................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO----................... - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO----................... - 0x07, 0xe0, 0x7f, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOOO-----................... - 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOO-----................... - 0x0f, 0x80, 0x1f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOOO----................... - 0x0f, 0x80, 0x3f, 0x80, 0x00, 0x00, // ----OOOOO---------OOOOOOO----................... - 0x1f, 0x00, 0x7f, 0x80, 0x00, 0x00, // ---OOOOO---------OOOOOOOO----................... - 0x1f, 0x00, 0xf7, 0x80, 0x00, 0x00, // ---OOOOO--------OOOO-OOOO----................... - 0x1e, 0x00, 0xe7, 0xc0, 0x00, 0x00, // ---OOOO---------OOO--OOOOO---................... - 0x1e, 0x01, 0xe7, 0xc0, 0x00, 0x00, // ---OOOO--------OOOO--OOOOO---................... - 0x1e, 0x03, 0xc7, 0xc0, 0x00, 0x00, // ---OOOO-------OOOO---OOOOO---................... - 0x1e, 0x07, 0x83, 0xc0, 0x00, 0x00, // ---OOOO------OOOO-----OOOO---................... - 0x1e, 0x07, 0x03, 0xc0, 0x00, 0x00, // ---OOOO------OOO------OOOO---................... - 0x1e, 0x0f, 0x03, 0xc0, 0x00, 0x00, // ---OOOO-----OOOO------OOOO---................... - 0x1e, 0x1e, 0x03, 0xc0, 0x00, 0x00, // ---OOOO----OOOO-------OOOO---................... - 0x1e, 0x3c, 0x07, 0xc0, 0x00, 0x00, // ---OOOO---OOOO-------OOOOO---................... - 0x1e, 0x38, 0x07, 0xc0, 0x00, 0x00, // ---OOOO---OOO--------OOOOO---................... - 0x1e, 0x78, 0x07, 0xc0, 0x00, 0x00, // ---OOOO--OOOO--------OOOOO---................... - 0x1f, 0xf0, 0x07, 0x80, 0x00, 0x00, // ---OOOOOOOOO---------OOOO----................... - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO----................... - 0x0f, 0xc0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOO----------OOOOO----................... - 0x0f, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOO-----................... - 0x07, 0xc0, 0x3f, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOOO-----................... - 0x07, 0xf0, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOO------................... - 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO-------................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO--------................... - 0x3c, 0x7f, 0xf0, 0x00, 0x00, 0x00, // --OOOO---OOOOOOOOOOO---------................... - 0x38, 0x0f, 0x80, 0x00, 0x00, 0x00, // --OOO-------OOOOO------------................... - 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OO------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................... - - // ASCII: 249, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------------------.................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOO------------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ---------OOOO-----------------.................. - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----------------.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 250, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ------------------OOOO--------.................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------------OOOOO--------.................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO---------.................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOO----------.................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO-----------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO------------.................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-------------.................. - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO--------------.................. - 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, // ------------OOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 251, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, // -------------OOO--------------.................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOO-------------.................. - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOO------------.................. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOO------------.................. - 0x00, 0x1d, 0xe0, 0x00, 0x00, 0x00, // -----------OOO-OOOO-----------.................. - 0x00, 0x3c, 0xe0, 0x00, 0x00, 0x00, // ----------OOOO--OOO-----------.................. - 0x00, 0x78, 0x70, 0x00, 0x00, 0x00, // ---------OOOO----OOO----------.................. - 0x00, 0x70, 0x78, 0x00, 0x00, 0x00, // ---------OOO-----OOOO---------.................. - 0x00, 0xf0, 0x38, 0x00, 0x00, 0x00, // --------OOOO------OOO---------.................. - 0x00, 0xe0, 0x1c, 0x00, 0x00, 0x00, // --------OOO--------OOO--------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 252, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0xf8, 0x78, 0x00, 0x00, 0x00, // --------OOOOO----OOOO---------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x00, 0x07, 0x80, 0x00, 0x00, // ----OOOO-------------OOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO-----------OOOOO-----.................. - 0x07, 0x80, 0x1f, 0x80, 0x00, 0x00, // -----OOOO----------OOOOOO-----.................. - 0x07, 0xc0, 0x3f, 0x80, 0x00, 0x00, // -----OOOOO--------OOOOOOO-----.................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO-----.................. - 0x03, 0xff, 0xf7, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOO-OOOO-----.................. - 0x01, 0xff, 0xe7, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOO--OOOO-----.................. - 0x00, 0xff, 0xc7, 0x80, 0x00, 0x00, // --------OOOOOOOOOO---OOOO-----.................. - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 253, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, // -----------------OOOO-------.................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO-------.................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOO--------.................... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOO---------.................... - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, // --------------OOOO----------.................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-----------.................... - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, // -------------OOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -----------OOO--------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x1e, 0x00, 0x00, 0x00, // -----OOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xe0, 0x78, 0x00, 0x00, 0x00, // -------OOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf0, 0xf0, 0x00, 0x00, 0x00, // --------OOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x79, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-------------.................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--------------.................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------------.................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO---------------.................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------.................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO----------------.................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------.................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - - // ASCII: 254, char width: 30 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOO-----OOOOOOO----------.................. - 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ----OOOO---OOOOOOOOOOO--------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x7f, 0xff, 0x00, 0x00, 0x00, // ----OOOO-OOOOOOOOOOOOOOO------.................. - 0x0f, 0x78, 0x1f, 0x80, 0x00, 0x00, // ----OOOO-OOOO------OOOOOO-----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xe0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOOO----------OOOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x00, 0x01, 0xe0, 0x00, 0x00, // ----OOOO---------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x01, 0xe0, 0x00, 0x00, // ----OOOOO--------------OOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-------------OOOOO---.................. - 0x0f, 0x80, 0x03, 0xc0, 0x00, 0x00, // ----OOOOO-------------OOOO----.................. - 0x0f, 0xc0, 0x03, 0xc0, 0x00, 0x00, // ----OOOOOO------------OOOO----.................. - 0x0f, 0xc0, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-----------OOOOO----.................. - 0x0f, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----OOOOOOO---------OOOOO-----.................. - 0x0f, 0xf0, 0x1f, 0x80, 0x00, 0x00, // ----OOOOOOOO-------OOOOOO-----.................. - 0x0f, 0x7c, 0x3f, 0x00, 0x00, 0x00, // ----OOOO-OOOOO----OOOOOO------.................. - 0x0f, 0x3f, 0xff, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOOO------.................. - 0x0f, 0x3f, 0xfe, 0x00, 0x00, 0x00, // ----OOOO--OOOOOOOOOOOOO-------.................. - 0x0f, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----OOOO----OOOOOOOOO---------.................. - 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ----OOOO-------OOOO-----------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO----------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------.................. - - // ASCII: 255, char width: 28 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x01, 0xf0, 0xf0, 0x00, 0x00, 0x00, // -------OOOOO----OOOO--------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... - 0x3c, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOO---------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0xc0, 0x00, 0x00, // --OOOOO--------------OOOOO--.................... - 0x3e, 0x00, 0x07, 0x80, 0x00, 0x00, // --OOOOO--------------OOOO---.................... - 0x1e, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOO-------------OOOOO---.................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---OOOOO------------OOOOO---.................... - 0x0f, 0x00, 0x0f, 0x00, 0x00, 0x00, // ----OOOO------------OOOO----.................... - 0x0f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO----.................... - 0x0f, 0x80, 0x1e, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO-----.................... - 0x07, 0x80, 0x1e, 0x00, 0x00, 0x00, // -----OOOO----------OOOO-----.................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO-----.................... - 0x07, 0xc0, 0x3c, 0x00, 0x00, 0x00, // -----OOOOO--------OOOO------.................... - 0x03, 0xc0, 0x3c, 0x00, 0x00, 0x00, // ------OOOO--------OOOO------.................... - 0x03, 0xe0, 0x7c, 0x00, 0x00, 0x00, // ------OOOOO------OOOOO------.................... - 0x01, 0xe0, 0x78, 0x00, 0x00, 0x00, // -------OOOO------OOOO-------.................... - 0x01, 0xe0, 0xf8, 0x00, 0x00, 0x00, // -------OOOO-----OOOOO-------.................... - 0x01, 0xf0, 0xf8, 0x00, 0x00, 0x00, // -------OOOOO----OOOOO-------.................... - 0x00, 0xf0, 0xf0, 0x00, 0x00, 0x00, // --------OOOO----OOOO--------.................... - 0x00, 0xf1, 0xf0, 0x00, 0x00, 0x00, // --------OOOO---OOOOO--------.................... - 0x00, 0xf9, 0xe0, 0x00, 0x00, 0x00, // --------OOOOO--OOOO---------.................... - 0x00, 0x79, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO--OOOO---------.................... - 0x00, 0x7b, 0xe0, 0x00, 0x00, 0x00, // ---------OOOO-OOOOO---------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOO----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOO-----------.................... - 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ------------OOOO------------.................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------------.................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO-------------.................... - 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // ----------OOOO--------------.................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------------.................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOO---------------.................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------.................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO----------------.................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------.................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------.................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------.................... -}; - -static const uint8_t dejavu_60_widths[224] = -{ - 15, 19, 22, 39, 30, 44, 36, 13, - 18, 18, 23, 39, 15, 17, 15, 16, - 30, 30, 30, 30, 30, 30, 30, 30, - 30, 30, 16, 16, 39, 39, 39, 25, - 47, 32, 32, 33, 36, 30, 27, 36, - 35, 14, 14, 31, 26, 40, 35, 37, - 28, 37, 33, 30, 29, 34, 32, 46, - 32, 29, 32, 18, 16, 18, 39, 23, - 23, 29, 30, 26, 30, 29, 16, 30, - 30, 13, 13, 27, 13, 46, 30, 29, - 30, 30, 19, 24, 18, 30, 28, 38, - 28, 28, 25, 30, 16, 30, 39, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, - 15, 19, 30, 30, 30, 30, 16, 23, - 23, 47, 22, 29, 39, 17, 47, 23, - 23, 39, 19, 19, 23, 30, 30, 15, - 23, 19, 22, 29, 45, 45, 45, 25, - 32, 32, 32, 32, 32, 32, 46, 33, - 30, 30, 30, 30, 14, 14, 14, 14, - 36, 35, 37, 37, 37, 37, 37, 39, - 37, 34, 34, 34, 34, 29, 28, 29, - 29, 29, 29, 29, 29, 29, 46, 26, - 29, 29, 29, 29, 13, 13, 13, 13, - 29, 30, 29, 29, 29, 29, 29, 39, - 29, 30, 30, 30, 30, 28, 30, 28, -}; - -static const font_t dejavu_60_dsc = -{ - 224, // Letter count - 32, // First ascii code - 6, // Letters width (bytes) - 60, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_60_widths, - dejavu_60_bitmaps -}; - -const font_t * dejavu_60_get_dsc(void) -{ - return &dejavu_60_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_60.h b/lv_misc/fonts/dejavu_60.h deleted file mode 100644 index e96a64d21..000000000 --- a/lv_misc/fonts/dejavu_60.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_60_H -#define DEJAVU_60_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_60 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_60_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_8.c b/lv_misc/fonts/dejavu_8.c deleted file mode 100644 index de88669f9..000000000 --- a/lv_misc/fonts/dejavu_8.c +++ /dev/null @@ -1,2332 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_8 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_8_bitmaps[1792] = -{ - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 33, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 34, char width: 3 - 0x00, // ---..... - 0xc0, // O-O..... - 0x00, // O-O..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 35, char width: 5 - 0x00, // -----... - 0x28, // --O-O... - 0x78, // -OOOO... - 0x90, // -O-O-... - 0xf0, // OOOO-... - 0xa0, // O-O--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 36, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0xc0, // OO--.... - 0x60, // -OO.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 37, char width: 6 - 0x00, // ------.. - 0xc8, // OO--O-.. - 0xd0, // OO-O--.. - 0x40, // --O--.. - 0x58, // -O-OO.. - 0x98, // O--OO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 38, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x40, // -O---... - 0xa0, // O-O--... - 0xb0, // O-OO-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 39, char width: 2 - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 40, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x00, // --...... - - // ASCII: 41, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 42, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 43, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x20, // --O--... - 0xf8, // OOOOO... - 0x40, // --O--... - 0x40, // --O--... - 0x00, // -----... - - // ASCII: 44, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 45, char width: 2 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xc0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 46, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 47, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 48, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 49, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0xc0, // OO--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 50, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 51, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0x40, // ----.... - 0x00, // ----.... - - // ASCII: 52, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xf0, // OOOO.... - 0x20, // --O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 53, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 54, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 55, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 56, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 57, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x70, // -OOO.... - 0x10, // ---O.... - 0x60, // -OO-.... - 0x40, // ----.... - 0x00, // ----.... - - // ASCII: 58, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 59, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 60, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x18, // ---OO... - 0x60, // -OO--... - 0x20, // --O--... - 0x18, // ---OO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 61, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x78, // -OOOO... - 0x00, // -----... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 62, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x60, // -OO--... - 0x18, // ---OO... - 0x30, // --OO-... - 0xc0, // OO---... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 63, char width: 3 - 0x40, // -O-..... - 0xa0, // O-O..... - 0x20, // --O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 64, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0x84, // O----O.. - 0xb4, // O-OO-O.. - 0xd4, // OO-O-O.. - 0xb8, // O-OOO-.. - 0x40, // -O----.. - 0x30, // --OO--.. - - // ASCII: 65, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x50, // -O-O.... - 0x50, // -O-O.... - 0x70, // -OOO.... - 0x50, // -O-O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 66, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 67, char width: 4 - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 68, char width: 5 - 0x00, // -----... - 0xe0, // OOO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0xe0, // OOO--... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 69, char width: 4 - 0x00, // ----.... - 0xf0, // OOOO.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 70, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x80, // O---.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 71, char width: 5 - 0x00, // -----... - 0x60, // -OO--... - 0x80, // O----... - 0x98, // O--OO... - 0x88, // O---O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 72, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0xf0, // OOOO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 73, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 74, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x80, // O-...... - 0x80, // --...... - 0x00, // --...... - - // ASCII: 75, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0xa0, // O-O-.... - 0xc0, // OO--.... - 0xa0, // O-O-.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 76, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 77, char width: 5 - 0x00, // -----... - 0x88, // O---O... - 0xd8, // OO-OO... - 0xd8, // OO-OO... - 0xa8, // O-O-O... - 0x88, // O---O... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 78, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0xd0, // OO-O-... - 0xb0, // O-OO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 79, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x88, // O---O... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 80, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x80, // O---.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 81, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x98, // O--OO... - 0x70, // -OOO-... - 0x18, // ---OO... - 0x00, // -----... - - // ASCII: 82, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 83, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x10, // ---O.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 84, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 85, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -OO--... - 0x20, // -----... - 0x00, // -----... - - // ASCII: 86, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 87, char width: 6 - 0x00, // ------.. - 0x94, // O--O-O.. - 0xb4, // O-OO-O.. - 0xb4, // O-OO-O.. - 0x48, // -O--O-.. - 0x48, // -O--O-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 88, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x90, // O--O-.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 89, char width: 4 - 0x00, // ----.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 90, char width: 4 - 0x00, // ----.... - 0x70, // -OOO.... - 0x20, // --O-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0xf0, // OOOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 91, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x00, // --...... - - // ASCII: 92, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 93, char width: 2 - 0x00, // --...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x40, // -O...... - 0x00, // --...... - - // ASCII: 94, char width: 5 - 0x00, // -----... - 0x20, // --O--... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 95, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - - // ASCII: 96, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 97, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 98, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 99, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x20, // --O..... - 0x00, // ---..... - - // ASCII: 100, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 101, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 102, char width: 2 - 0x00, // --...... - 0xc0, // OO...... - 0xc0, // OO...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 103, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x60, // -OO-.... - - // ASCII: 104, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 105, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 106, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 107, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 108, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 109, char width: 6 - 0x00, // ------.. - 0x00, // ------.. - 0x68, // -OO-O-.. - 0xb4, // O-OO-O.. - 0xa4, // O-O--O.. - 0xa4, // O-O--O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 110, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 111, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 112, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x00, // ----.... - - // ASCII: 113, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 114, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x80, // O--..... - 0x80, // O--..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 115, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x60, // -OO..... - 0xa0, // O-O..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 116, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0xc0, // OO...... - 0x80, // O-...... - 0x80, // O-...... - 0x40, // -O...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 117, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 118, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 119, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0xa8, // O-O-O... - 0xe8, // OOO-O... - 0xf0, // OOOO-... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 120, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 121, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 122, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xe0, // OOO..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 123, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x20, // --O-.... - - // ASCII: 124, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 125, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 126, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x68, // -OO-O... - 0x10, // ---O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 160, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 161, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 162, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xc0, // OO--.... - 0xc0, // OO--.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 163, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0xe0, // OOO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 164, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0xf0, // OOOO.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xd0, // OO-O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 165, char width: 4 - 0x00, // ----.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 166, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - - // ASCII: 167, char width: 3 - 0x00, // ---..... - 0xe0, // OOO..... - 0x40, // -O-..... - 0xa0, // O-O..... - 0x60, // -OO..... - 0x20, // --O..... - 0x40, // -O-..... - 0x00, // ---..... - - // ASCII: 168, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 169, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0xa8, // O-O-O-.. - 0xc8, // OO--O-.. - 0xa8, // O-O-O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 170, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0xe0, // OOO..... - 0x60, // -OO..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 171, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 172, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - 0x78, // -OOOO... - 0x08, // ----O... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 173, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 174, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0xb8, // O-OOO-.. - 0xb8, // O-OOO-.. - 0xa8, // O-O-O-.. - 0x78, // -OOOO-.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 175, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 176, char width: 3 - 0x00, // ---..... - 0xc0, // OO-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 177, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x78, // -OOOO... - 0x20, // --O--... - 0x78, // -OOOO... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 178, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 179, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 180, char width: 3 - 0x20, // --O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 181, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x00, // ----.... - - // ASCII: 182, char width: 4 - 0x00, // ----.... - 0x60, // -OO-.... - 0xe0, // OOO-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 183, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 184, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 185, char width: 3 - 0x00, // ---..... - 0x40, // -O-..... - 0x40, // -O-..... - 0xc0, // OO-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 186, char width: 3 - 0x00, // ---..... - 0xe0, // OOO..... - 0xa0, // O-O..... - 0x40, // -O-..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 187, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 188, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x50, // -O-O--.. - 0xd4, // OO-O-O.. - 0x2c, // --O-OO.. - 0x24, // --O--O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 189, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x50, // -O-O--.. - 0xd4, // OO-O-O.. - 0x24, // --O--O.. - 0x2c, // --O-OO.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 190, char width: 6 - 0x00, // ------.. - 0x48, // -O--O-.. - 0x50, // -O-O--.. - 0xd4, // OO-O-O.. - 0x2c, // --O-OO.. - 0x24, // --O--O.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 191, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x00, // ---..... - 0x40, // -O-..... - 0x80, // O--..... - 0x60, // -OO..... - 0x00, // ---..... - 0x00, // ---..... - - // ASCII: 192, char width: 4 - 0x20, // --O-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 193, char width: 4 - 0x20, // --O-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 194, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 195, char width: 4 - 0x40, // -O--.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 196, char width: 4 - 0x00, // ----.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 197, char width: 4 - 0x60, // -OO-.... - 0x20, // --O-.... - 0x60, // -OO-.... - 0x60, // -OO-.... - 0x70, // -OOO.... - 0x90, // O--O.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 198, char width: 6 - 0x00, // ------.. - 0x78, // -OOOO-.. - 0x60, // -OO---.. - 0x5c, // -O-OOO.. - 0x60, // -OO---.. - 0x9c, // O--OOO.. - 0x00, // ------.. - 0x00, // ------.. - - // ASCII: 199, char width: 4 - 0x00, // ----.... - 0x70, // -OOO.... - 0x80, // O---.... - 0x80, // O---.... - 0x80, // O---.... - 0x50, // -O-O.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 200, char width: 4 - 0x20, // --O-.... - 0xc0, // OO--.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 201, char width: 4 - 0x20, // --O-.... - 0xc0, // OO--.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 202, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 203, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x70, // -OOO.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 204, char width: 2 - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 205, char width: 2 - 0x40, // -O...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 206, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 207, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 208, char width: 5 - 0x00, // -----... - 0xf0, // OOOO-... - 0x90, // O--O-... - 0xc8, // OO--O... - 0x90, // O--O-... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 209, char width: 5 - 0x40, // -O---... - 0x50, // -O-O-... - 0xd0, // OO-O-... - 0xb0, // O-OO-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 210, char width: 5 - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 211, char width: 5 - 0x20, // --O--... - 0x50, // -O-O-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 212, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 213, char width: 5 - 0x40, // -O---... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 214, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0x88, // O---O... - 0x88, // O---O... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 215, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x50, // -O-O-... - 0x20, // --O--... - 0x50, // -O-O-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 216, char width: 5 - 0x00, // -----... - 0x70, // -OOO-... - 0xb0, // O-OO-... - 0xa8, // O-O-O... - 0xd0, // OO-O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 217, char width: 5 - 0x20, // --O--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 218, char width: 5 - 0x20, // --O--... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 219, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 220, char width: 5 - 0x00, // -----... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x90, // O--O-... - 0x50, // -O-O-... - 0x20, // --O--... - 0x00, // -----... - - // ASCII: 221, char width: 4 - 0x20, // --O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 222, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0xe0, // OOO-.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 223, char width: 4 - 0x00, // ----.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x90, // O--O.... - 0x50, // -O-O.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 224, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 225, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 226, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 227, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 228, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 229, char width: 4 - 0xc0, // OO--.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x20, // --O-.... - 0xe0, // OOO-.... - 0xa0, // O-O-.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 230, char width: 6 - 0x00, // ------.. - 0x00, // ------.. - 0x78, // -OOOO-.. - 0x24, // --O--O.. - 0xf8, // OOOOO-.. - 0xb4, // O-OO-O.. - 0x48, // -O--O-.. - 0x00, // ------.. - - // ASCII: 231, char width: 3 - 0x00, // ---..... - 0x00, // ---..... - 0x60, // -OO..... - 0x80, // O--..... - 0x80, // O--..... - 0x40, // -O-..... - 0x20, // --O..... - 0x00, // ---..... - - // ASCII: 232, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 233, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 234, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 235, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0xe0, // OOO-.... - 0x40, // -O--.... - 0x20, // --O-.... - 0x00, // ----.... - - // ASCII: 236, char width: 2 - 0x00, // --...... - 0x80, // O-...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 237, char width: 2 - 0x40, // -O...... - 0x80, // O-...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 238, char width: 2 - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 239, char width: 2 - 0x00, // --...... - 0x00, // --...... - 0x00, // --...... - 0x80, // O-...... - 0x80, // O-...... - 0x80, // O-...... - 0x00, // --...... - 0x00, // --...... - - // ASCII: 240, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 241, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 242, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 243, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 244, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 245, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 246, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 247, char width: 5 - 0x00, // -----... - 0x00, // -----... - 0x20, // --O--... - 0x00, // -----... - 0x70, // -OOO-... - 0x00, // -----... - 0x00, // -----... - 0x00, // -----... - - // ASCII: 248, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x60, // -OO-.... - 0xa0, // O-O-.... - 0xe0, // OOO-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 249, char width: 4 - 0x00, // ----.... - 0x40, // -O--.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 250, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 251, char width: 4 - 0x40, // -O--.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 252, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x00, // ----.... - 0xa0, // O-O-.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x00, // ----.... - 0x00, // ----.... - - // ASCII: 253, char width: 4 - 0x20, // --O-.... - 0x40, // -O--.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... - - // ASCII: 254, char width: 4 - 0x00, // ----.... - 0x80, // O---.... - 0x60, // -OO-.... - 0x90, // O--O.... - 0x90, // O--O.... - 0x60, // -OO-.... - 0x80, // O---.... - 0x00, // ----.... - - // ASCII: 255, char width: 4 - 0x00, // ----.... - 0x00, // ----.... - 0x80, // O---.... - 0xa0, // O-O-.... - 0x60, // -OO-.... - 0x40, // -O--.... - 0x40, // -O--.... - 0x00, // ----.... -}; - -static const uint8_t dejavu_8_widths[224] = -{ - 2, 3, 3, 5, 4, 6, 5, 2, - 2, 2, 3, 5, 2, 3, 2, 2, - 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 2, 2, 5, 5, 5, 3, - 6, 4, 4, 4, 5, 4, 4, 5, - 5, 2, 2, 4, 4, 5, 5, 5, - 4, 5, 4, 4, 4, 5, 4, 6, - 4, 4, 4, 2, 2, 2, 5, 3, - 3, 4, 4, 3, 4, 4, 2, 4, - 4, 2, 2, 4, 2, 6, 4, 4, - 4, 4, 3, 3, 2, 4, 4, 5, - 4, 4, 3, 4, 2, 4, 5, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, - 2, 3, 4, 4, 4, 4, 2, 3, - 3, 6, 3, 4, 5, 2, 6, 3, - 3, 5, 3, 3, 3, 4, 4, 2, - 3, 3, 3, 4, 6, 6, 6, 3, - 4, 4, 4, 4, 4, 4, 6, 4, - 4, 4, 4, 4, 2, 2, 2, 2, - 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 6, 3, - 4, 4, 4, 4, 2, 2, 2, 2, - 4, 4, 4, 4, 4, 4, 4, 5, - 4, 4, 4, 4, 4, 4, 4, 4, -}; - -static const font_t dejavu_8_dsc = -{ - 224, // Letter count - 32, // First ascii code - 1, // Letters width (bytes) - 8, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_8_widths, - dejavu_8_bitmaps -}; - -const font_t * dejavu_8_get_dsc(void) -{ - return &dejavu_8_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_8.h b/lv_misc/fonts/dejavu_8.h deleted file mode 100644 index 96a9fbc88..000000000 --- a/lv_misc/fonts/dejavu_8.h +++ /dev/null @@ -1,18 +0,0 @@ -#ifndef DEJAVU_8_H -#define DEJAVU_8_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_DEJAVU_8 != 0 - - -#include -#include "../font.h" - - -const font_t * dejavu_8_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/dejavu_80.c b/lv_misc/fonts/dejavu_80.c deleted file mode 100644 index 7a6efafa3..000000000 --- a/lv_misc/fonts/dejavu_80.c +++ /dev/null @@ -1,18460 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_80 != 0 - -#include -#include "../font.h" - -static const uint8_t dejavu_80_bitmaps[143360] = -{ - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 33, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 34, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - - // ASCII: 35, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----------------------OOOOO---------OOOOO-----------............ - 0x00, 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----------------------OOOOO---------OOOOO-----------............ - 0x00, 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, // ----------------------OOOOO---------OOOOO-----------............ - 0x00, 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, // ----------------------OOOOO--------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ---------------------OOOOO---------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ---------------------OOOOO---------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, // ---------------------OOOOO---------OOOOO------------............ - 0x00, 0x00, 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, // ---------------------OOOOO--------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOOO-------------............ - 0x00, 0x00, 0x0f, 0x80, 0x3c, 0x00, 0x00, 0x00, // --------------------OOOOO---------OOOO--------------............ - 0x00, 0x00, 0x0f, 0x80, 0x7c, 0x00, 0x00, 0x00, // --------------------OOOOO--------OOOOO--------------............ - 0x00, 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, // -------------------OOOOO---------OOOOO--------------............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............ - 0x00, 0x00, 0x3e, 0x00, 0xf0, 0x00, 0x00, 0x00, // ------------------OOOOO---------OOOO----------------............ - 0x00, 0x00, 0x3e, 0x01, 0xf0, 0x00, 0x00, 0x00, // ------------------OOOOO--------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO----------------............ - 0x00, 0x00, 0x7c, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOO--------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOOO-----------------............ - 0x00, 0x00, 0xf8, 0x03, 0xc0, 0x00, 0x00, 0x00, // ----------------OOOOO---------OOOO------------------............ - 0x00, 0x00, 0xf0, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----------------OOOO---------OOOOO------------------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x07, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOO---------OOOOO-------------------............ - 0x00, 0x03, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOO---------OOOOO-------------------............ - 0x00, 0x03, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO---------OOOO--------------------............ - 0x00, 0x03, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------------OOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------OOOOO--------------------............ - 0x00, 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOOO---------------------............ - 0x00, 0x0f, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------OOOO----------------------............ - 0x00, 0x0f, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---------OOOOO----------------------............ - 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------OOOOO----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 36, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......................... - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO-----------......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x01, 0xff, 0xb9, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-OOO--OOOOOOOOO-------......................... - 0x01, 0xfc, 0x38, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----OOO------OOOOO-------......................... - 0x03, 0xf8, 0x38, 0x03, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOO---------OO-------......................... - 0x03, 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x07, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOO------------------......................... - 0x03, 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOO------------------......................... - 0x03, 0xf8, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----OOO------------------......................... - 0x03, 0xff, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO--OOO------------------......................... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO------------------......................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO--------------......................... - 0x00, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x38, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------------OOO---OOOOOOOOO------......................... - 0x00, 0x00, 0x38, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-----OOOOOOOO-----......................... - 0x00, 0x00, 0x38, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO------OOOOOOO-----......................... - 0x00, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-------OOOOOO-----......................... - 0x00, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-------OOOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO--------OOOOO-----......................... - 0x00, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOO-------OOOOOO-----......................... - 0x04, 0x00, 0x38, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----O------------OOO-------OOOOOO-----......................... - 0x07, 0x00, 0x38, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOO----------OOO------OOOOOO------......................... - 0x07, 0xc0, 0x38, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOO--------OOO-----OOOOOOO------......................... - 0x07, 0xf8, 0x38, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO-----OOO---OOOOOOOO-------......................... - 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 37, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------OOOOOOOO-----------------------OOOOO-------------..... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOO---------------------OOOOO--------------..... - 0x01, 0xff, 0xf8, 0x00, 0x00, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOO-------------------OOOOO--------------..... - 0x03, 0xff, 0xfc, 0x00, 0x01, 0xf0, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-----------------OOOOO---------------..... - 0x03, 0xf0, 0xfc, 0x00, 0x01, 0xf0, 0x00, 0x00, // ------OOOOOO----OOOOOO-----------------OOOOO---------------..... - 0x07, 0xe0, 0x7e, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----OOOOOO------OOOOOO---------------OOOOO----------------..... - 0x07, 0xc0, 0x3e, 0x00, 0x03, 0xc0, 0x00, 0x00, // -----OOOOO--------OOOOO---------------OOOO-----------------..... - 0x0f, 0x80, 0x3f, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----OOOOO---------OOOOOO-------------OOOOO-----------------..... - 0x0f, 0x80, 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOO------------OOOOO------------------..... - 0x0f, 0x80, 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, // ----OOOOO----------OOOOO------------OOOOO------------------..... - 0x0f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO-----------OOOOO-------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO-----------OOOOO-------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO----------OOOOO--------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x3e, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO----------OOOOO--------------------..... - 0x1f, 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOO---------OOOOO---------------------..... - 0x0f, 0x00, 0x1f, 0x00, 0x7c, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO---------OOOOO---------------------..... - 0x0f, 0x00, 0x1f, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOO--------OOOOO----------------------..... - 0x0f, 0x80, 0x1f, 0x00, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO--------OOOO-----------------------..... - 0x0f, 0x80, 0x1f, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------OOOOO-------OOOOO-----------------------..... - 0x0f, 0x80, 0x3f, 0x01, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOOO-------OOOO------------------------..... - 0x07, 0xc0, 0x3e, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO-------OOOOO------------------------..... - 0x07, 0xe0, 0x7e, 0x07, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOO------OOOOO-------------------------..... - 0x03, 0xf0, 0xfc, 0x07, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO-------OOOOO-------------------------..... - 0x03, 0xff, 0xfc, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO------OOOOO--------------------------..... - 0x01, 0xff, 0xf8, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOO-------OOOOO--------------------------..... - 0x00, 0xff, 0xf0, 0x1f, 0x00, 0x7f, 0x80, 0x00, // --------OOOOOOOOOOOO-------OOOOO---------OOOOOOOO----------..... - 0x00, 0x3f, 0xc0, 0x1f, 0x01, 0xff, 0xe0, 0x00, // ----------OOOOOOOO---------OOOOO-------OOOOOOOOOOOO--------..... - 0x00, 0x00, 0x00, 0x3e, 0x03, 0xff, 0xf0, 0x00, // --------------------------OOOOO-------OOOOOOOOOOOOOO-------..... - 0x00, 0x00, 0x00, 0x3e, 0x07, 0xff, 0xf8, 0x00, // --------------------------OOOOO------OOOOOOOOOOOOOOOO------..... - 0x00, 0x00, 0x00, 0x7c, 0x07, 0xe1, 0xfc, 0x00, // -------------------------OOOOO-------OOOOOO----OOOOOOO-----..... - 0x00, 0x00, 0x00, 0x78, 0x0f, 0xc0, 0x7c, 0x00, // -------------------------OOOO-------OOOOOO-------OOOOO-----..... - 0x00, 0x00, 0x00, 0xf8, 0x0f, 0x80, 0x7c, 0x00, // ------------------------OOOOO-------OOOOO--------OOOOO-----..... - 0x00, 0x00, 0x01, 0xf0, 0x1f, 0x00, 0x3e, 0x00, // -----------------------OOOOO-------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x01, 0xf0, 0x1f, 0x00, 0x3e, 0x00, // -----------------------OOOOO-------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x3e, 0x00, // ----------------------OOOOO--------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x1e, 0x00, // ----------------------OOOOO--------OOOOO-----------OOOO----..... - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x1f, 0x00, // ---------------------OOOOO---------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x07, 0xc0, 0x1f, 0x00, 0x1f, 0x00, // ---------------------OOOOO---------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x0f, 0x80, 0x1f, 0x00, 0x1f, 0x00, // --------------------OOOOO----------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x0f, 0x80, 0x1f, 0x00, 0x1f, 0x00, // --------------------OOOOO----------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, // -------------------OOOOO-----------OOOOO-----------OOOOO---..... - 0x00, 0x00, 0x1e, 0x00, 0x1f, 0x00, 0x3e, 0x00, // -------------------OOOO------------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x3e, 0x00, 0x1f, 0x00, 0x3e, 0x00, // ------------------OOOOO------------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x7c, 0x00, 0x1f, 0x00, 0x3e, 0x00, // -----------------OOOOO-------------OOOOO----------OOOOO----..... - 0x00, 0x00, 0x7c, 0x00, 0x0f, 0x80, 0x3e, 0x00, // -----------------OOOOO--------------OOOOO---------OOOOO----..... - 0x00, 0x00, 0xf8, 0x00, 0x0f, 0x80, 0x7c, 0x00, // ----------------OOOOO---------------OOOOO--------OOOOO-----..... - 0x00, 0x00, 0xf8, 0x00, 0x0f, 0xc0, 0xfc, 0x00, // ----------------OOOOO---------------OOOOOO------OOOOOO-----..... - 0x00, 0x01, 0xf0, 0x00, 0x07, 0xf3, 0xf8, 0x00, // ---------------OOOOO-----------------OOOOOOO--OOOOOOO------..... - 0x00, 0x01, 0xf0, 0x00, 0x03, 0xff, 0xf8, 0x00, // ---------------OOOOO------------------OOOOOOOOOOOOOOO------..... - 0x00, 0x03, 0xe0, 0x00, 0x01, 0xff, 0xf0, 0x00, // --------------OOOOO--------------------OOOOOOOOOOOOO-------..... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0xff, 0xc0, 0x00, // --------------OOOOO---------------------OOOOOOOOOO---------..... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x3f, 0x00, 0x00, // -------------OOOOO------------------------OOOOOO-----------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 38, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOO---------------------................ - 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOO------------------................ - 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOO-----------------................ - 0x00, 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOO-----------------................ - 0x00, 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOO-----------------................ - 0x00, 0x1f, 0xf0, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO-----OOOOOO-----------------................ - 0x00, 0x3f, 0x80, 0x0e, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO-----------OOO-----------------................ - 0x00, 0x3f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------O-----------------................ - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO--------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------------------------------................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------------------------................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------------------------------................ - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO-------------------------------................ - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO------------------------------................ - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----------------------------................ - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOO----------------------------................ - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO---------------------------................ - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO---------------------------................ - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO--------------------------................ - 0x00, 0xfe, 0xfe, 0x00, 0x01, 0xf0, 0x00, 0x00, // --------OOOOOOO-OOOOOOO----------------OOOOO----................ - 0x01, 0xfc, 0xff, 0x00, 0x01, 0xf0, 0x00, 0x00, // -------OOOOOOO--OOOOOOOO---------------OOOOO----................ - 0x03, 0xf8, 0x7f, 0x80, 0x01, 0xf0, 0x00, 0x00, // ------OOOOOOO----OOOOOOOO--------------OOOOO----................ - 0x03, 0xf0, 0x3f, 0xc0, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO------OOOOOOOO------------OOOOOO----................ - 0x07, 0xf0, 0x1f, 0xe0, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOOO-------OOOOOOOO-----------OOOOOO----................ - 0x07, 0xe0, 0x0f, 0xf0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOOO---------OOOOOOOO----------OOOOO-----................ - 0x07, 0xe0, 0x07, 0xf0, 0x03, 0xe0, 0x00, 0x00, // -----OOOOOO----------OOOOOOO----------OOOOO-----................ - 0x0f, 0xc0, 0x03, 0xf8, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO------------OOOOOOO--------OOOOOO-----................ - 0x0f, 0xc0, 0x01, 0xfc, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO-------------OOOOOOO-------OOOOOO-----................ - 0x0f, 0xc0, 0x01, 0xfe, 0x07, 0xc0, 0x00, 0x00, // ----OOOOOO-------------OOOOOOOO------OOOOO------................ - 0x0f, 0xc0, 0x00, 0xff, 0x0f, 0xc0, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO----OOOOOO------................ - 0x0f, 0xc0, 0x00, 0x7f, 0x8f, 0x80, 0x00, 0x00, // ----OOOOOO---------------OOOOOOOO---OOOOO-------................ - 0x0f, 0xc0, 0x00, 0x3f, 0xdf, 0x80, 0x00, 0x00, // ----OOOOOO----------------OOOOOOOO-OOOOOO-------................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOO--------................ - 0x0f, 0xc0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOOOOOOO--------................ - 0x0f, 0xe0, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOOOOOO---------................ - 0x07, 0xe0, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOO-------------------OOOOOOOOO---------................ - 0x07, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOOO----------................ - 0x07, 0xf0, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOOOO---------................ - 0x03, 0xf8, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOOOOOO--------................ - 0x03, 0xfc, 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOOOOOOOOO-------................ - 0x01, 0xff, 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x00, // -------OOOOOOOOO----------OOOOOOOOOOOOOOOO------................ - 0x00, 0xff, 0xff, 0xff, 0xdf, 0xe0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-OOOOOOOO-----................ - 0x00, 0x7f, 0xff, 0xff, 0x8f, 0xe0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOO-----................ - 0x00, 0x3f, 0xff, 0xff, 0x07, 0xf0, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOO-----OOOOOOO----................ - 0x00, 0x1f, 0xff, 0xfc, 0x03, 0xf8, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO--------OOOOOOO---................ - 0x00, 0x07, 0xff, 0xf0, 0x03, 0xfc, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO----------OOOOOOOO--................ - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO-----------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 39, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 40, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 41, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------........................................ - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------........................................ - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------........................................ - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------........................................ - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----------........................................ - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 42, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x18, 0x03, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, // ---OO---------OOO---------OO---................................. - 0x1c, 0x03, 0x80, 0x70, 0x00, 0x00, 0x00, 0x00, // ---OOO--------OOO--------OOO---................................. - 0x3f, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, // --OOOOOO------OOO------OOOOOO--................................. - 0x1f, 0x83, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----OOO-----OOOOOO---................................. - 0x0f, 0xe3, 0x8f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---OOO---OOOOOOO----................................. - 0x03, 0xf3, 0x9f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOO--OOOOOO------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO-----------................................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------------................................. - 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO-----------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x03, 0xf3, 0x9f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOO--OOOOOO------................................. - 0x0f, 0xe3, 0x8f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---OOO---OOOOOOO----................................. - 0x1f, 0x83, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----OOO-----OOOOOO---................................. - 0x3f, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, // --OOOOOO------OOO------OOOOOO--................................. - 0x1c, 0x03, 0x80, 0x70, 0x00, 0x00, 0x00, 0x00, // ---OOO--------OOO--------OOO---................................. - 0x18, 0x03, 0x80, 0x30, 0x00, 0x00, 0x00, 0x00, // ---OO---------OOO---------OO---................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOO--------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 43, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 44, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO--------............................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------............................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------............................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------............................................ - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO----------............................................ - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------............................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------............................................ - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO-----------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 45, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - - // ASCII: 46, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 47, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOO--------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO----------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 48, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......................... - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x7f, 0xc3, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----OOOOOOOOO--------......................... - 0x00, 0xff, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO--------OOOOOOO--------......................... - 0x00, 0xfc, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------OOOOOOO-------......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO-------......................... - 0x01, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x01, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOOOO------......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO-------......................... - 0x00, 0xfe, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO----------OOOOOOO-------......................... - 0x00, 0xff, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO--------OOOOOOO--------......................... - 0x00, 0x7f, 0xef, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-OOOOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------------......................... - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 49, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO---------------......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x01, 0xfe, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO---OOOOOO---------------......................... - 0x01, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 50, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO----------------......................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-------------......................... - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO------------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xf0, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------OOOOOOOOO--------......................... - 0x07, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------------OOOOOOOO-------......................... - 0x06, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----OO------------------OOOOOOO-------......................... - 0x04, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----O-------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOO--------......................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO--------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----------......................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----------......................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------------......................... - 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOO------------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOO-------------------......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO--------------------......................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOO---------------------......................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----------------------......................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------......................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------------......................... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 51, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO---------------......................... - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO------------......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOOO-------......................... - 0x03, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OO-----------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOO--------......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOO-------------......................... - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOO------------......................... - 0x00, 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOO----------......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOO--------......................... - 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x04, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----O--------------------OOOOOOO------......................... - 0x07, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOO----------------OOOOOOOOO------......................... - 0x07, 0xe0, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------OOOOOOOOOO-------......................... - 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO-------------......................... - 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOO-----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 52, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------......................... - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------......................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO---------......................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO---------......................... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO---------......................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x7d, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-OOOOOOO---------......................... - 0x00, 0x00, 0x7d, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-OOOOOOO---------......................... - 0x00, 0x00, 0xf9, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO--OOOOOOO---------......................... - 0x00, 0x01, 0xf9, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO--OOOOOOO---------......................... - 0x00, 0x01, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO---OOOOOOO---------......................... - 0x00, 0x03, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOOO---------......................... - 0x00, 0x03, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO----OOOOOOO---------......................... - 0x00, 0x07, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-----OOOOOOO---------......................... - 0x00, 0x07, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-----OOOOOOO---------......................... - 0x00, 0x0f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO------OOOOOOO---------......................... - 0x00, 0x1f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO------OOOOOOO---------......................... - 0x00, 0x1f, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-------OOOOOOO---------......................... - 0x00, 0x3f, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-------OOOOOOO---------......................... - 0x00, 0x3e, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO--------OOOOOOO---------......................... - 0x00, 0x7c, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------OOOOOOO---------......................... - 0x00, 0xfc, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOOO---------......................... - 0x00, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOO----------OOOOOOO---------......................... - 0x01, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOOO---------......................... - 0x01, 0xf0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----------OOOOOOO---------......................... - 0x03, 0xe0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOO---------......................... - 0x07, 0xe0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------------OOOOOOO---------......................... - 0x07, 0xc0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------------OOOOOOO---------......................... - 0x0f, 0xc0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-------------OOOOOOO---------......................... - 0x0f, 0x80, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------------OOOOOOO---------......................... - 0x1f, 0x80, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO--------------OOOOOOO---------......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x1f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 53, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------------------......................... - 0x01, 0xf7, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-OOOOOOOOOO----------------......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO-------------......................... - 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO------------......................... - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x01, 0xff, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO-OOOOOOOOOOOOOO--------......................... - 0x01, 0xc0, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOO------------OOOOOOOOO--------......................... - 0x01, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------O----------------OOOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // -------------------------OOOOOOOO------......................... - 0x04, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----O-------------------OOOOOOO-------......................... - 0x07, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOO---------------OOOOOOOOO-------......................... - 0x07, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOOOOOOOOO--------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOO------------......................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO--------------......................... - 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOO-----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 54, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......................... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-------......................... - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x3f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x3f, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOO-----------OOOO------......................... - 0x00, 0x7f, 0x80, 0x00, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------O------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------------......................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------------......................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------......................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------------------------......................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------OOOOOOOOO-------------......................... - 0x07, 0xe1, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----OOOOOOOOOOOOO-----------......................... - 0x07, 0xe7, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--OOOOOOOOOOOOOOOOO---------......................... - 0x07, 0xef, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOOOOOOOOOOOO--------......................... - 0x0f, 0xdf, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x0f, 0xdf, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOOOO-----OOOOOOOOO-------......................... - 0x0f, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOO---------OOOOOOOO------......................... - 0x0f, 0xfe, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO-----------OOOOOOOO-----......................... - 0x0f, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOO-------------OOOOOOO-----......................... - 0x0f, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------OOOOOOO----......................... - 0x0f, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOO---------------OOOOOOO----......................... - 0x0f, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOO-----------------OOOOOO----......................... - 0x0f, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOO-----------------OOOOOO----......................... - 0x07, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOO----......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOOO---......................... - 0x07, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x01, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO---------------OOOOOOO----......................... - 0x01, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOO---------------OOOOOO-----......................... - 0x01, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO-------------OOOOOOO-----......................... - 0x00, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOO-----------OOOOOOO------......................... - 0x00, 0x7f, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOO---------OOOOOOOO------......................... - 0x00, 0x7f, 0xf7, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-OOOOOOOOOOO-------......................... - 0x00, 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x1f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO------------......................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO--------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 55, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x07, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOO--------......................... - 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOO--------......................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO--------......................... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOO---------......................... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOO---------......................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---------......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----------......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----------......................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----------......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------......................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----------......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO------------......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO------------......................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------------......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------------......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------------......................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------------......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------------......................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------------......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------------......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------------......................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------------......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------------......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------------......................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 56, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0x83, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-----OOOOOOOOOO-------......................... - 0x01, 0xfe, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOO----------OOOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO-------......................... - 0x00, 0xfe, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO----------OOOOOOO-------......................... - 0x00, 0x7f, 0x83, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----OOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOO------------......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0xff, 0x81, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO------OOOOOOOOO-------......................... - 0x01, 0xfc, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOO-----------OOOOOOOO------......................... - 0x03, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOO------......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO----------------OOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------OOOOOOOO------......................... - 0x01, 0xff, 0xc7, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO---OOOOOOOOOOOO------......................... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO--------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 57, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO---------------......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO-------------......................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x01, 0xff, 0x87, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOO---------......................... - 0x01, 0xfc, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------OOOOOOO--------......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO-------......................... - 0x07, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOO-------......................... - 0x07, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOO-------......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO------......................... - 0x0f, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOO------......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOOO----......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOOO----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOOO----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOOOOO----......................... - 0x03, 0xfe, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOO--------OOOOOOOOOOOO----......................... - 0x01, 0xff, 0xcf, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO--OOOOOOOOOOOOOOO----......................... - 0x00, 0xff, 0xff, 0xf7, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO-OOOOOO----......................... - 0x00, 0x7f, 0xff, 0xe7, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOO--OOOOOO----......................... - 0x00, 0x3f, 0xff, 0xc7, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOO---OOOOOO----......................... - 0x00, 0x0f, 0xff, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-----OOOOOO----......................... - 0x00, 0x01, 0xfc, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---------------OOOOOOO------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO--------......................... - 0x01, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------O---------------OOOOOOO---------......................... - 0x01, 0xe0, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOO----------OOOOOOOOO---------......................... - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOO-----------......................... - 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO------------......................... - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO--------------......................... - 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOO---------------......................... - 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 58, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 59, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------........................................... - 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 60, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, // --------------------------------------------O-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, // -----------------------------------------OOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---------------------------------------OOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, // -------------------------------------OOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, // ----------------------------------OOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, // -----------------------------OOOOOOOOOOOOOOO--------............ - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOO----------............ - 0x00, 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOO-------------............ - 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOO---------------............ - 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOO------------------............ - 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOO--------------------............ - 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOO-----------------------............ - 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOO-------------------------............ - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO----------------------------............ - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO------------------------------............ - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO---------------------------------............ - 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO------------------------------------............ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------------------------------------............ - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-----------------------------------............ - 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOO---------------------------------............ - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO------------------------------............ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------------------------............ - 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOO-------------------------............ - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO----------------------............ - 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOO-----------------............ - 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOO---------------............ - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO------------............ - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOO----------............ - 0x00, 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, // -----------------------------------OOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, // -------------------------------------OOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, // ------------------------------------------OOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 61, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 62, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------O--------------------------------------------............ - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO-----------------------------------------............ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------------------------------------............ - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------------------------------------............ - 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO----------------------------------............ - 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOO--------------------------------............ - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-----------------------------............ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------------------------............ - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO------------------------............ - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO----------------------............ - 0x00, 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOO-----------------............ - 0x00, 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOO--------------............ - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO------------............ - 0x00, 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ----------------------------OOOOOOOOOOOOOOO---------............ - 0x00, 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf8, 0x00, 0x00, // ---------------------------------OOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, // ------------------------------------OOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // --------------------------------------OOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, // -----------------------------------OOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xc0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOO----------............ - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO------------............ - 0x00, 0x00, 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOO---------------............ - 0x00, 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOO-----------------............ - 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOO--------------------............ - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO----------------------............ - 0x00, 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOO-------------------------............ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------------------------............ - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO------------------------------............ - 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOO--------------------------------............ - 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO-----------------------------------............ - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-------------------------------------............ - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------------------------------------............ - 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOO------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 63, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO------------............................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----------............................... - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--------............................... - 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO-------............................... - 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO-------............................... - 0x0f, 0xfc, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOO--OOOOOOOOOOO------............................... - 0x0f, 0xc0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOOOOOO-----............................... - 0x0f, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOO-------------OOOOOOO-----............................... - 0x0e, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOO---------------OOOOOO-----............................... - 0x08, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----O-----------------OOOOOO-----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----............................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----............................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----............................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----............................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------............................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------............................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------............................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO--------............................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------............................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------............................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------............................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------............................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------............................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------............................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - - // ASCII: 64, char width: 62 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, // -------------------------------OO-----------------------------.. - 0x00, 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOOOOOO--------------------.. - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOO------------------.. - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.. - 0x00, 0x00, 0xff, 0xf8, 0x1f, 0xfe, 0x00, 0x00, // ----------------OOOOOOOOOOOOO------OOOOOOOOOOOO---------------.. - 0x00, 0x01, 0xff, 0x00, 0x01, 0xff, 0x00, 0x00, // ---------------OOOOOOOOO---------------OOOOOOOOO--------------.. - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x3f, 0xc0, 0x00, // --------------OOOOOOOO--------------------OOOOOOOO------------.. - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x1f, 0xe0, 0x00, // -------------OOOOOOO-----------------------OOOOOOOO-----------.. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, // ------------OOOOOOO--------------------------OOOOOO-----------.. - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x03, 0xf0, 0x00, // -----------OOOOOO-----------------------------OOOOOO----------.. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // ----------OOOOOO-------------------------------OOOOOO---------.. - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x00, // ---------OOOOOO---------------------------------OOOOOO--------.. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, // ---------OOOOO-----------------------------------OOOOO--------.. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, // --------OOOOOO------------------------------------OOOOO-------.. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, // --------OOOOO-------------------------------------OOOOO-------.. - 0x01, 0xf0, 0x00, 0x3f, 0xc0, 0xf0, 0x1f, 0x00, // -------OOOOO--------------OOOOOOOO------OOOO-------OOOOO------.. - 0x01, 0xf0, 0x00, 0xff, 0xf0, 0xf0, 0x1f, 0x00, // -------OOOOO------------OOOOOOOOOOOO----OOOO-------OOOOO------.. - 0x03, 0xe0, 0x01, 0xff, 0xfc, 0xf0, 0x0f, 0x00, // ------OOOOO------------OOOOOOOOOOOOOOO--OOOO--------OOOO------.. - 0x03, 0xe0, 0x03, 0xff, 0xfe, 0xf0, 0x0f, 0x80, // ------OOOOO-----------OOOOOOOOOOOOOOOOO-OOOO--------OOOOO-----.. - 0x03, 0xc0, 0x07, 0xff, 0xfe, 0xf0, 0x0f, 0x80, // ------OOOO-----------OOOOOOOOOOOOOOOOOO-OOOO--------OOOOO-----.. - 0x07, 0xc0, 0x0f, 0xe0, 0x1f, 0xf0, 0x07, 0x80, // -----OOOOO----------OOOOOOO--------OOOOOOOOO---------OOOO-----.. - 0x07, 0xc0, 0x0f, 0xc0, 0x0f, 0xf0, 0x07, 0x80, // -----OOOOO----------OOOOOO----------OOOOOOOO---------OOOO-----.. - 0x07, 0x80, 0x0f, 0x80, 0x07, 0xf0, 0x07, 0xc0, // -----OOOO-----------OOOOO------------OOOOOOO---------OOOOO----.. - 0x07, 0x80, 0x1f, 0x80, 0x03, 0xf0, 0x07, 0xc0, // -----OOOO----------OOOOOO-------------OOOOOO---------OOOOO----.. - 0x0f, 0x80, 0x1f, 0x00, 0x03, 0xf0, 0x07, 0xc0, // ----OOOOO----------OOOOO--------------OOOOOO---------OOOOO----.. - 0x0f, 0x80, 0x1f, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOOO----------OOOOO---------------OOOOO---------OOOOO----.. - 0x0f, 0x80, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOOO---------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOO----------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOO----------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0xc0, // ----OOOO----------OOOOO----------------OOOOO---------OOOOO----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0x80, // ----OOOO----------OOOOO----------------OOOOO---------OOOO-----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x07, 0x80, // ----OOOO----------OOOOO----------------OOOOO---------OOOO-----.. - 0x0f, 0x00, 0x3e, 0x00, 0x01, 0xf0, 0x0f, 0x80, // ----OOOO----------OOOOO----------------OOOOO--------OOOOO-----.. - 0x0f, 0x80, 0x1e, 0x00, 0x01, 0xf0, 0x0f, 0x80, // ----OOOOO----------OOOO----------------OOOOO--------OOOOO-----.. - 0x0f, 0x80, 0x1f, 0x00, 0x01, 0xf0, 0x0f, 0x00, // ----OOOOO----------OOOOO---------------OOOOO--------OOOO------.. - 0x07, 0x80, 0x1f, 0x00, 0x03, 0xf0, 0x1f, 0x00, // -----OOOO----------OOOOO--------------OOOOOO-------OOOOO------.. - 0x07, 0x80, 0x1f, 0x80, 0x03, 0xf0, 0x3e, 0x00, // -----OOOO----------OOOOOO-------------OOOOOO------OOOOO-------.. - 0x07, 0x80, 0x0f, 0x80, 0x07, 0xf0, 0x7e, 0x00, // -----OOOO-----------OOOOO------------OOOOOOO-----OOOOOO-------.. - 0x07, 0xc0, 0x0f, 0xc0, 0x0f, 0xf0, 0xfc, 0x00, // -----OOOOO----------OOOOOO----------OOOOOOOO----OOOOOO--------.. - 0x07, 0xc0, 0x07, 0xf0, 0x1f, 0xf3, 0xf8, 0x00, // -----OOOOO-----------OOOOOOO-------OOOOOOOOO--OOOOOOO---------.. - 0x03, 0xc0, 0x07, 0xff, 0xfe, 0xff, 0xf0, 0x00, // ------OOOO-----------OOOOOOOOOOOOOOOOOO-OOOOOOOOOOOO----------.. - 0x03, 0xe0, 0x03, 0xff, 0xfc, 0xff, 0xe0, 0x00, // ------OOOOO-----------OOOOOOOOOOOOOOOO--OOOOOOOOOOO-----------.. - 0x03, 0xe0, 0x01, 0xff, 0xf8, 0xff, 0xc0, 0x00, // ------OOOOO------------OOOOOOOOOOOOOO---OOOOOOOOOO------------.. - 0x01, 0xf0, 0x00, 0xff, 0xf0, 0xff, 0x00, 0x00, // -------OOOOO------------OOOOOOOOOOOO----OOOOOOOO--------------.. - 0x01, 0xf0, 0x00, 0x3f, 0xc0, 0xf8, 0x00, 0x00, // -------OOOOO--------------OOOOOOOO------OOOOO-----------------.. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-------------------------------------------------.. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------------------------------------------.. - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------------------------------------.. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------------------------------.. - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---------------------------------------------.. - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x06, 0x00, 0x00, // -----------OOOOOOO---------------------------OO---------------.. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x1f, 0x00, 0x00, // ------------OOOOOOO------------------------OOOOO--------------.. - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x3f, 0x00, 0x00, // -------------OOOOOOOO---------------------OOOOOO--------------.. - 0x00, 0x03, 0xfe, 0x00, 0x00, 0xff, 0x80, 0x00, // --------------OOOOOOOOO-----------------OOOOOOOOO-------------.. - 0x00, 0x01, 0xff, 0xc0, 0x07, 0xfe, 0x00, 0x00, // ---------------OOOOOOOOOOO-----------OOOOOOOOOO---------------.. - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.. - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xf0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOO------------------.. - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOO--------------------.. - 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOO----------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - - // ASCII: 65, char width: 42 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 66, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xf0, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOOO-------..................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------------..................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 67, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOO------..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0x9f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOO--OOOOOOOOOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x01, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------------OOO---..................... - 0x01, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------O---..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------------------O---..................... - 0x01, 0xfc, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, // -------OOOOOOO------------------------OO---..................... - 0x00, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // --------OOOOOOO----------------------OOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO-------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 68, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO---------------------................ - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO-----------------................ - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------................ - 0x03, 0xf0, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOOOOOOO----------................ - 0x03, 0xf0, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOO---------................ - 0x03, 0xf0, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOO---------................ - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO--------................ - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO--------------------------OOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOOO----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOOO------................ - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOOO-------................ - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO--------................ - 0x03, 0xf0, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOO---------................ - 0x03, 0xf0, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOOOOO----------................ - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................ - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------------------................ - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO----------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 69, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 70, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO----............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - - // ASCII: 71, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOO---------------................ - 0x00, 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOO------------................ - 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOO----------................ - 0x00, 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOO--------................ - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................ - 0x00, 0x1f, 0xff, 0x8f, 0xff, 0xc0, 0x00, 0x00, // -----------OOOOOOOOOOOOOO---OOOOOOOOOOOOOO------................ - 0x00, 0x3f, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, // ----------OOOOOOOOOO-------------OOOOOOOOO------................ - 0x00, 0x7f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, // ---------OOOOOOOOO------------------OOOOOO------................ - 0x00, 0xff, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // --------OOOOOOOO---------------------OOOOO------................ - 0x01, 0xfe, 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, // -------OOOOOOOO------------------------OOO------................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, // -------OOOOOOO--------------------------OO------................ - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, // ------OOOOOOO----------------------------O------................ - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------------------------................ - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------------------------------................ - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------------------------------................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------------------------------................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------------------------------................ - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------------------------------------................ - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------------------------------................ - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO--------------------------------------................ - 0x1f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x1f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOOOOOOOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO---------------------------OOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO---------------------------OOOOOO-----................ - 0x0f, 0xc0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOO---------------------------OOOOOO-----................ - 0x0f, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOOO--------------------------OOOOOO-----................ - 0x0f, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ----OOOOOOO--------------------------OOOOOO-----................ - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOO-----................ - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOO-----................ - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOO-------------------------OOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOO-----................ - 0x03, 0xfc, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOOO-----------------------OOOOOO-----................ - 0x01, 0xfc, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -------OOOOOOO-----------------------OOOOOO-----................ - 0x00, 0xfe, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // --------OOOOOOO----------------------OOOOOO-----................ - 0x00, 0xff, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // --------OOOOOOOO---------------------OOOOOO-----................ - 0x00, 0x7f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOOOO------------------OOOOOOO-----................ - 0x00, 0x3f, 0xf0, 0x00, 0x7f, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOO-------------OOOOOOOOOO-----................ - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................ - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................ - 0x00, 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOO--------................ - 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOO----------................ - 0x00, 0x00, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOO-------------................ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO-----------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 72, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 73, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 74, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------.............................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------.............................................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------.............................................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-------.............................................. - 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOO--------.............................................. - 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOO--------.............................................. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO---------.............................................. - 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOO----------.............................................. - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----------.............................................. - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO------------.............................................. - 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOO---------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 75, char width: 41 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO-....................... - 0x03, 0xf0, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOO--....................... - 0x03, 0xf0, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOO---....................... - 0x03, 0xf0, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOO----....................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-----....................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO------....................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-------....................... - 0x03, 0xf0, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOO--------....................... - 0x03, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOO---------....................... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO----------....................... - 0x03, 0xf0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOO-----------....................... - 0x03, 0xf0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOOO------------....................... - 0x03, 0xf0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOOO-------------....................... - 0x03, 0xf0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOOO--------------....................... - 0x03, 0xf0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOOOO---------------....................... - 0x03, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOOOO----------------....................... - 0x03, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOOO-----------------....................... - 0x03, 0xf0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOO------------------....................... - 0x03, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOOO-------------------....................... - 0x03, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOOO--------------------....................... - 0x03, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOOO--------------------....................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------------------....................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO----------------------....................... - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO-----------------------....................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO----------------------....................... - 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOO---------------------....................... - 0x03, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOOO--------------------....................... - 0x03, 0xf3, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOOOO-------------------....................... - 0x03, 0xf1, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOOOO------------------....................... - 0x03, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOOO-----------------....................... - 0x03, 0xf0, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOOOOO----------------....................... - 0x03, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOOOO----------------....................... - 0x03, 0xf0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOOOO---------------....................... - 0x03, 0xf0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOOO--------------....................... - 0x03, 0xf0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOOO-------------....................... - 0x03, 0xf0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOOO------------....................... - 0x03, 0xf0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOO-----------....................... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO----------....................... - 0x03, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOO---------....................... - 0x03, 0xf0, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOO--------....................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-------....................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-------....................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO------....................... - 0x03, 0xf0, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOO-----....................... - 0x03, 0xf0, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOO----....................... - 0x03, 0xf0, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOO---....................... - 0x03, 0xf0, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOO--....................... - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO-....................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOOO....................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------....................... - - // ASCII: 76, char width: 35 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------------------............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------............................. - - // ASCII: 77, char width: 54 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x03, 0xff, 0x00, 0x00, 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO----------------------OOOOOOOOOO------.......... - 0x03, 0xff, 0x00, 0x00, 0x03, 0xff, 0x00, 0x00, // ------OOOOOOOOOO----------------------OOOOOOOOOO------.......... - 0x03, 0xff, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, // ------OOOOOOOOOO---------------------OOOOOOOOOOO------.......... - 0x03, 0xff, 0x80, 0x00, 0x07, 0xff, 0x00, 0x00, // ------OOOOOOOOOOO--------------------OOOOOOOOOOO------.......... - 0x03, 0xff, 0x80, 0x00, 0x07, 0xff, 0x00, 0x00, // ------OOOOOOOOOOO--------------------OOOOOOOOOOO------.......... - 0x03, 0xff, 0x80, 0x00, 0x0f, 0xff, 0x00, 0x00, // ------OOOOOOOOOOO-------------------OOOOOOOOOOOO------.......... - 0x03, 0xff, 0xc0, 0x00, 0x0f, 0xbf, 0x00, 0x00, // ------OOOOOOOOOOOO------------------OOOOO-OOOOOO------.......... - 0x03, 0xf7, 0xc0, 0x00, 0x0f, 0xbf, 0x00, 0x00, // ------OOOOOO-OOOOO------------------OOOOO-OOOOOO------.......... - 0x03, 0xf7, 0xc0, 0x00, 0x1f, 0xbf, 0x00, 0x00, // ------OOOOOO-OOOOO-----------------OOOOOO-OOOOOO------.......... - 0x03, 0xf7, 0xe0, 0x00, 0x1f, 0x3f, 0x00, 0x00, // ------OOOOOO-OOOOOO----------------OOOOO--OOOOOO------.......... - 0x03, 0xf3, 0xe0, 0x00, 0x1f, 0x3f, 0x00, 0x00, // ------OOOOOO--OOOOO----------------OOOOO--OOOOOO------.......... - 0x03, 0xf3, 0xe0, 0x00, 0x3f, 0x3f, 0x00, 0x00, // ------OOOOOO--OOOOO---------------OOOOOO--OOOOOO------.......... - 0x03, 0xf3, 0xf0, 0x00, 0x3e, 0x3f, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOO---OOOOOO------.......... - 0x03, 0xf1, 0xf0, 0x00, 0x3e, 0x3f, 0x00, 0x00, // ------OOOOOO---OOOOO--------------OOOOO---OOOOOO------.......... - 0x03, 0xf1, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, // ------OOOOOO---OOOOO-------------OOOOOO---OOOOOO------.......... - 0x03, 0xf1, 0xf8, 0x00, 0x7c, 0x3f, 0x00, 0x00, // ------OOOOOO---OOOOOO------------OOOOO----OOOOOO------.......... - 0x03, 0xf0, 0xf8, 0x00, 0x7c, 0x3f, 0x00, 0x00, // ------OOOOOO----OOOOO------------OOOOO----OOOOOO------.......... - 0x03, 0xf0, 0xf8, 0x00, 0xfc, 0x3f, 0x00, 0x00, // ------OOOOOO----OOOOO-----------OOOOOO----OOOOOO------.......... - 0x03, 0xf0, 0xfc, 0x00, 0xf8, 0x3f, 0x00, 0x00, // ------OOOOOO----OOOOOO----------OOOOO-----OOOOOO------.......... - 0x03, 0xf0, 0x7c, 0x00, 0xf8, 0x3f, 0x00, 0x00, // ------OOOOOO-----OOOOO----------OOOOO-----OOOOOO------.......... - 0x03, 0xf0, 0x7c, 0x01, 0xf8, 0x3f, 0x00, 0x00, // ------OOOOOO-----OOOOO---------OOOOOO-----OOOOOO------.......... - 0x03, 0xf0, 0x7e, 0x01, 0xf0, 0x3f, 0x00, 0x00, // ------OOOOOO-----OOOOOO--------OOOOO------OOOOOO------.......... - 0x03, 0xf0, 0x3e, 0x01, 0xf0, 0x3f, 0x00, 0x00, // ------OOOOOO------OOOOO--------OOOOO------OOOOOO------.......... - 0x03, 0xf0, 0x3e, 0x03, 0xf0, 0x3f, 0x00, 0x00, // ------OOOOOO------OOOOO-------OOOOOO------OOOOOO------.......... - 0x03, 0xf0, 0x3f, 0x03, 0xe0, 0x3f, 0x00, 0x00, // ------OOOOOO------OOOOOO------OOOOO-------OOOOOO------.......... - 0x03, 0xf0, 0x1f, 0x03, 0xe0, 0x3f, 0x00, 0x00, // ------OOOOOO-------OOOOO------OOOOO-------OOOOOO------.......... - 0x03, 0xf0, 0x1f, 0x07, 0xe0, 0x3f, 0x00, 0x00, // ------OOOOOO-------OOOOO-----OOOOOO-------OOOOOO------.......... - 0x03, 0xf0, 0x1f, 0x87, 0xc0, 0x3f, 0x00, 0x00, // ------OOOOOO-------OOOOOO----OOOOO--------OOOOOO------.......... - 0x03, 0xf0, 0x0f, 0x87, 0xc0, 0x3f, 0x00, 0x00, // ------OOOOOO--------OOOOO----OOOOO--------OOOOOO------.......... - 0x03, 0xf0, 0x0f, 0x8f, 0xc0, 0x3f, 0x00, 0x00, // ------OOOOOO--------OOOOO---OOOOOO--------OOOOOO------.......... - 0x03, 0xf0, 0x0f, 0xcf, 0x80, 0x3f, 0x00, 0x00, // ------OOOOOO--------OOOOOO--OOOOO---------OOOOOO------.......... - 0x03, 0xf0, 0x07, 0xcf, 0x80, 0x3f, 0x00, 0x00, // ------OOOOOO---------OOOOO--OOOOO---------OOOOOO------.......... - 0x03, 0xf0, 0x07, 0xdf, 0x80, 0x3f, 0x00, 0x00, // ------OOOOOO---------OOOOO-OOOOOO---------OOOOOO------.......... - 0x03, 0xf0, 0x07, 0xff, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO---------OOOOOOOOOOO----------OOOOOO------.......... - 0x03, 0xf0, 0x03, 0xff, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOOO----------OOOOOO------.......... - 0x03, 0xf0, 0x03, 0xfe, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOO-----------OOOOOO------.......... - 0x03, 0xf0, 0x03, 0xfe, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOO-----------OOOOOO------.......... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO-----------OOOOOO------.......... - 0x03, 0xf0, 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO------------OOOOOO------.......... - 0x03, 0xf0, 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, // ------OOOOOO------------------------------OOOOOO------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------.......... - - // ASCII: 78, char width: 46 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - - // ASCII: 79, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 80, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO-----------........................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--------........................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------........................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------........................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----........................... - 0x03, 0xf0, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOOOO----........................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO--........................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---........................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO---........................... - 0x03, 0xf0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOOO----........................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----........................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----........................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------........................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------........................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------........................... - 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOO-------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 81, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO--------------............... - 0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOO-------------............... - 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOO------------............... - 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------------------------------OOOOOOO------------............... - 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -------------------------------OOOOOOO-----------............... - 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // --------------------------------OOOOOOO----------............... - 0x00, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ---------------------------------OOOOOOO---------............... - 0x00, 0x00, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ---------------------------------OOOOOOOO--------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 82, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO-----------------..................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------..................... - 0x03, 0xf0, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOOOOOO----------..................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOOOOO----------..................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------..................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO---------------..................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--------------..................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO-------------..................... - 0x03, 0xf0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOO------------..................... - 0x03, 0xf0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOO-----------..................... - 0x03, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOO----------..................... - 0x03, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOO----------..................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO---------..................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO--------..................... - 0x03, 0xf0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOO------..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOO-----..................... - 0x03, 0xf0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOO----..................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO----..................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO---..................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO---..................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOO----------------------OOOOOOO--..................... - 0x03, 0xf0, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // ------OOOOOO-----------------------OOOOOO--..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 83, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x3f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x01, 0xff, 0xc1, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOO-----OOOOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOOO------......................... - 0x07, 0xf8, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOO-----------------OOO------......................... - 0x07, 0xf0, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------O------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------------......................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------------......................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------------......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------------......................... - 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--------------------------......................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------------------......................... - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO--------------------......................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---------------......................... - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOO--------......................... - 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO----......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------------------------------OOOOOO---......................... - 0x00, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------------------------------OOOOOO---......................... - 0x00, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------------------------------OOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO---......................... - 0x00, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----------------------------OOOOOO----......................... - 0x08, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----O-----------------------OOOOOOO----......................... - 0x0e, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ----OOO--------------------OOOOOOOO----......................... - 0x0f, 0x80, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOOO-----......................... - 0x0f, 0xf0, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOO------------OOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x0f, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 84, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 85, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 86, char width: 42 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x1f, 0x80, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOOO--...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOOO---...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x07, 0xe0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO--------------------OOOOOOO----...................... - 0x07, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOO-----...................... - 0x03, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOO-----...................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO-----...................... - 0x03, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOO------...................... - 0x01, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOO-----------------OOOOOO------...................... - 0x01, 0xf8, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOOO------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOOO-------...................... - 0x00, 0xfe, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOOO--------...................... - 0x00, 0x7f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------OOOOOO-----------...................... - 0x00, 0x0f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOOO-----------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOO------------...................... - 0x00, 0x07, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOOO------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO---OOOOOO-------------...................... - 0x00, 0x03, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOOO-------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO-OOOOOO--------------...................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO--------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO-----------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 87, char width: 61 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x3f, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x07, 0xe0, // --OOOOOO-------------------OOOOOOO-------------------OOOOOO--... - 0x3f, 0x80, 0x00, 0x1f, 0xe0, 0x00, 0x07, 0xe0, // --OOOOOOO------------------OOOOOOOO------------------OOOOOO--... - 0x1f, 0x80, 0x00, 0x1f, 0xe0, 0x00, 0x07, 0xe0, // ---OOOOOO------------------OOOOOOOO------------------OOOOOO--... - 0x1f, 0x80, 0x00, 0x3f, 0xe0, 0x00, 0x0f, 0xe0, // ---OOOOOO-----------------OOOOOOOOO-----------------OOOOOOO--... - 0x1f, 0x80, 0x00, 0x3f, 0xe0, 0x00, 0x0f, 0xc0, // ---OOOOOO-----------------OOOOOOOOO-----------------OOOOOO---... - 0x1f, 0xc0, 0x00, 0x3f, 0xe0, 0x00, 0x0f, 0xc0, // ---OOOOOOO----------------OOOOOOOOO-----------------OOOOOO---... - 0x0f, 0xc0, 0x00, 0x3f, 0xf0, 0x00, 0x0f, 0xc0, // ----OOOOOO----------------OOOOOOOOOO----------------OOOOOO---... - 0x0f, 0xc0, 0x00, 0x7f, 0xf0, 0x00, 0x1f, 0xc0, // ----OOOOOO---------------OOOOOOOOOOO---------------OOOOOOO---... - 0x0f, 0xc0, 0x00, 0x7d, 0xf0, 0x00, 0x1f, 0x80, // ----OOOOOO---------------OOOOO-OOOOO---------------OOOOOO----... - 0x0f, 0xc0, 0x00, 0x7d, 0xf0, 0x00, 0x1f, 0x80, // ----OOOOOO---------------OOOOO-OOOOO---------------OOOOOO----... - 0x07, 0xe0, 0x00, 0x7c, 0xf8, 0x00, 0x1f, 0x80, // -----OOOOOO--------------OOOOO--OOOOO--------------OOOOOO----... - 0x07, 0xe0, 0x00, 0x7c, 0xf8, 0x00, 0x1f, 0x80, // -----OOOOOO--------------OOOOO--OOOOO--------------OOOOOO----... - 0x07, 0xe0, 0x00, 0xf8, 0xf8, 0x00, 0x3f, 0x00, // -----OOOOOO-------------OOOOO---OOOOO-------------OOOOOO-----... - 0x07, 0xe0, 0x00, 0xf8, 0xf8, 0x00, 0x3f, 0x00, // -----OOOOOO-------------OOOOO---OOOOO-------------OOOOOO-----... - 0x07, 0xf0, 0x00, 0xf8, 0x78, 0x00, 0x3f, 0x00, // -----OOOOOOO------------OOOOO----OOOO-------------OOOOOO-----... - 0x03, 0xf0, 0x00, 0xf8, 0x7c, 0x00, 0x3f, 0x00, // ------OOOOOO------------OOOOO----OOOOO------------OOOOOO-----... - 0x03, 0xf0, 0x01, 0xf8, 0x7c, 0x00, 0x7f, 0x00, // ------OOOOOO-----------OOOOOO----OOOOO-----------OOOOOOO-----... - 0x03, 0xf0, 0x01, 0xf0, 0x7c, 0x00, 0x7e, 0x00, // ------OOOOOO-----------OOOOO-----OOOOO-----------OOOOOO------... - 0x03, 0xf0, 0x01, 0xf0, 0x7c, 0x00, 0x7e, 0x00, // ------OOOOOO-----------OOOOO-----OOOOO-----------OOOOOO------... - 0x01, 0xf8, 0x01, 0xf0, 0x3e, 0x00, 0x7e, 0x00, // -------OOOOOO----------OOOOO------OOOOO----------OOOOOO------... - 0x01, 0xf8, 0x01, 0xf0, 0x3e, 0x00, 0x7e, 0x00, // -------OOOOOO----------OOOOO------OOOOO----------OOOOOO------... - 0x01, 0xf8, 0x03, 0xe0, 0x3e, 0x00, 0xfc, 0x00, // -------OOOOOO---------OOOOO-------OOOOO---------OOOOOO-------... - 0x01, 0xf8, 0x03, 0xe0, 0x3e, 0x00, 0xfc, 0x00, // -------OOOOOO---------OOOOO-------OOOOO---------OOOOOO-------... - 0x01, 0xfc, 0x03, 0xe0, 0x1e, 0x00, 0xfc, 0x00, // -------OOOOOOO--------OOOOO--------OOOO---------OOOOOO-------... - 0x00, 0xfc, 0x03, 0xe0, 0x1f, 0x00, 0xfc, 0x00, // --------OOOOOO--------OOOOO--------OOOOO--------OOOOOO-------... - 0x00, 0xfc, 0x07, 0xe0, 0x1f, 0x01, 0xfc, 0x00, // --------OOOOOO-------OOOOOO--------OOOOO-------OOOOOOO-------... - 0x00, 0xfc, 0x07, 0xc0, 0x1f, 0x01, 0xf8, 0x00, // --------OOOOOO-------OOOOO---------OOOOO-------OOOOOO--------... - 0x00, 0xfc, 0x07, 0xc0, 0x1f, 0x01, 0xf8, 0x00, // --------OOOOOO-------OOOOO---------OOOOO-------OOOOOO--------... - 0x00, 0x7e, 0x07, 0xc0, 0x0f, 0x81, 0xf8, 0x00, // ---------OOOOOO------OOOOO----------OOOOO------OOOOOO--------... - 0x00, 0x7e, 0x07, 0xc0, 0x0f, 0x83, 0xf8, 0x00, // ---------OOOOOO------OOOOO----------OOOOO-----OOOOOOO--------... - 0x00, 0x7e, 0x0f, 0x80, 0x0f, 0x83, 0xf0, 0x00, // ---------OOOOOO-----OOOOO-----------OOOOO-----OOOOOO---------... - 0x00, 0x7e, 0x0f, 0x80, 0x0f, 0x83, 0xf0, 0x00, // ---------OOOOOO-----OOOOO-----------OOOOO-----OOOOOO---------... - 0x00, 0x7f, 0x0f, 0x80, 0x0f, 0x83, 0xf0, 0x00, // ---------OOOOOOO----OOOOO-----------OOOOO-----OOOOOO---------... - 0x00, 0x3f, 0x0f, 0x80, 0x07, 0xc3, 0xf0, 0x00, // ----------OOOOOO----OOOOO------------OOOOO----OOOOOO---------... - 0x00, 0x3f, 0x1f, 0x80, 0x07, 0xc7, 0xf0, 0x00, // ----------OOOOOO---OOOOOO------------OOOOO---OOOOOOO---------... - 0x00, 0x3f, 0x1f, 0x00, 0x07, 0xc7, 0xe0, 0x00, // ----------OOOOOO---OOOOO-------------OOOOO---OOOOOO----------... - 0x00, 0x3f, 0x1f, 0x00, 0x07, 0xc7, 0xe0, 0x00, // ----------OOOOOO---OOOOO-------------OOOOO---OOOOOO----------... - 0x00, 0x1f, 0x9f, 0x00, 0x03, 0xe7, 0xe0, 0x00, // -----------OOOOOO--OOOOO--------------OOOOO--OOOOOO----------... - 0x00, 0x1f, 0x9f, 0x00, 0x03, 0xef, 0xe0, 0x00, // -----------OOOOOO--OOOOO--------------OOOOO-OOOOOOO----------... - 0x00, 0x1f, 0xbe, 0x00, 0x03, 0xef, 0xc0, 0x00, // -----------OOOOOO-OOOOO---------------OOOOO-OOOOOO-----------... - 0x00, 0x1f, 0xbe, 0x00, 0x03, 0xef, 0xc0, 0x00, // -----------OOOOOO-OOOOO---------------OOOOO-OOOOOO-----------... - 0x00, 0x1f, 0xfe, 0x00, 0x03, 0xff, 0xc0, 0x00, // -----------OOOOOOOOOOOO---------------OOOOOOOOOOOO-----------... - 0x00, 0x0f, 0xfe, 0x00, 0x01, 0xff, 0xc0, 0x00, // ------------OOOOOOOOOOO----------------OOOOOOOOOOO-----------... - 0x00, 0x0f, 0xfe, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOOOOO----------------OOOOOOOOOO------------... - 0x00, 0x0f, 0xfc, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOOOO-----------------OOOOOOOOOO------------... - 0x00, 0x0f, 0xfc, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOOOO-----------------OOOOOOOOOO------------... - 0x00, 0x07, 0xfc, 0x00, 0x00, 0xff, 0x80, 0x00, // -------------OOOOOOOOO------------------OOOOOOOOO------------... - 0x00, 0x07, 0xfc, 0x00, 0x00, 0xff, 0x80, 0x00, // -------------OOOOOOOOO------------------OOOOOOOOO------------... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, // -------------OOOOOOOO-------------------OOOOOOOO-------------... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, // -------------OOOOOOOO-------------------OOOOOOOO-------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - - // ASCII: 88, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------OOOOOO----..................... - 0x07, 0xf0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------OOOOOOO----..................... - 0x03, 0xf0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOO-----..................... - 0x03, 0xf8, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOO------------------OOOOOO------..................... - 0x01, 0xf8, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // -------OOOOOO-----------------OOOOOOO------..................... - 0x01, 0xfc, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOO----------------OOOOOO-------..................... - 0x00, 0xfe, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOO--------------OOOOOOO-------..................... - 0x00, 0x7e, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOOO--------..................... - 0x00, 0x7f, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOO------------OOOOOO---------..................... - 0x00, 0x3f, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOOO---------..................... - 0x00, 0x3f, 0x80, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO----------OOOOOO----------..................... - 0x00, 0x1f, 0xc0, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOO--------OOOOOOO----------..................... - 0x00, 0x0f, 0xc0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOOO-----------..................... - 0x00, 0x0f, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOO------------..................... - 0x00, 0x07, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOOO------------..................... - 0x00, 0x07, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO---OOOOOOO-------------..................... - 0x00, 0x03, 0xf9, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO--OOOOOOO-------------..................... - 0x00, 0x01, 0xfb, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOOO--------------..................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO---------------..................... - 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOO---------------..................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO----------------..................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO------------------..................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO------------------..................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO-----------------..................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO----------------..................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO----------------..................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO---------------..................... - 0x00, 0x03, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO-OOOOOO---------------..................... - 0x00, 0x03, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOOO--------------..................... - 0x00, 0x07, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO---OOOOOOO-------------..................... - 0x00, 0x0f, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOO-------------..................... - 0x00, 0x0f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOOO------------..................... - 0x00, 0x1f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------OOOOOO------------..................... - 0x00, 0x1f, 0x80, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOOO-----------..................... - 0x00, 0x3f, 0x80, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOO---------OOOOOOO----------..................... - 0x00, 0x7f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------OOOOOO----------..................... - 0x00, 0x7e, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOOO---------..................... - 0x00, 0xfe, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOO-------------OOOOOO---------..................... - 0x00, 0xfc, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOOO--------..................... - 0x01, 0xfc, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOOO-------..................... - 0x03, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOO-------..................... - 0x03, 0xf0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOO------..................... - 0x07, 0xf0, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOO------..................... - 0x07, 0xe0, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO--------------------OOOOOOO-----..................... - 0x0f, 0xe0, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOOO----..................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO----..................... - 0x1f, 0x80, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOOO---..................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO---..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 89, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0xfe, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // OOOOOOO------------------------OOOOOOO.......................... - 0x7f, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // -OOOOOOO----------------------OOOOOOO-.......................... - 0x3f, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --OOOOOO----------------------OOOOOO--.......................... - 0x3f, 0x80, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // --OOOOOOO--------------------OOOOOOO--.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOO------------------OOOOOOO---.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------OOOOOOO-------.......................... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......................... - 0x00, 0xfe, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------OOOOOOO--------.......................... - 0x00, 0x7e, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO--------OOOOOO---------.......................... - 0x00, 0x3f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO------OOOOOOO---------.......................... - 0x00, 0x3f, 0x87, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----OOOOOOO----------.......................... - 0x00, 0x1f, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----OOOOOO-----------.......................... - 0x00, 0x1f, 0xcf, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO--OOOOOOO-----------.......................... - 0x00, 0x0f, 0xcf, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--OOOOOO------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 90, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, // -------------------------------OOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -------------------------------OOOOOOO-----..................... - 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ------------------------------OOOOOOO------..................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ----------------------------OOOOOOO--------..................... - 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------------------OOOOOOO---------..................... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO---------..................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO----------..................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-----------..................... - 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOOO------------..................... - 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOO------------..................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO-------------..................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO--------------..................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO---------------..................... - 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOO---------------..................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO----------------..................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-----------------..................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO------------------..................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO-------------------..................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO--------------------..................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------------..................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------------..................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO----------------------..................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----------------------..................... - 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOO-----------------------..................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------------------------..................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------------..................... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOO-------------------------..................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO--------------------------..................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------------------------..................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO----------------------------..................... - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------------------..................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO-------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 91, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 92, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO----------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO---------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------------........................................... - 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------........................................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------........................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-------........................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO----........................................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--........................................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-........................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 93, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO-----........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 94, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOO------------------............ - 0x00, 0x00, 0x7f, 0x9f, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOOO--OOOOOOOO-----------------............ - 0x00, 0x00, 0xff, 0x0f, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOOOOOO----OOOOOOOO----------------............ - 0x00, 0x01, 0xfe, 0x07, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOOO------OOOOOOOO---------------............ - 0x00, 0x03, 0xfc, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------OOOOOOOO--------------............ - 0x00, 0x03, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOO----------OOOOOOO--------------............ - 0x00, 0x07, 0xf0, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOO------------OOOOOOO-------------............ - 0x00, 0x0f, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------OOOOOOO------------............ - 0x00, 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, // -----------OOOOOOO----------------OOOOOOO-----------............ - 0x00, 0x3f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ----------OOOOOOO------------------OOOOOOO----------............ - 0x00, 0x7f, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOO--------------------OOOOOOO---------............ - 0x00, 0xfe, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // --------OOOOOOO----------------------OOOOOOO--------............ - 0x01, 0xfc, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // -------OOOOOOO------------------------OOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 95, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................................ - - // ASCII: 96, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------................................. - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO------------------................................. - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------------................................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------------................................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------------................................. - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO---------------................................. - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------------................................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO--------------................................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------------................................. - 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-------------................................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 97, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 98, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OO----------------......................... - 0x03, 0xe0, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOO------------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO--------OOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------OOOOOOOO------......................... - 0x03, 0xef, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOO-----OOOOOOOOO-------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe3, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOO----------......................... - 0x03, 0xe0, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOOOOOO-----------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 99, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-----------.............................. - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO-------.............................. - 0x00, 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO----.............................. - 0x01, 0xff, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO----------OOOO----.............................. - 0x01, 0xfc, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------------OO----.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x03, 0xfc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO---------------O----.............................. - 0x01, 0xfe, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO------------OOO----.............................. - 0x00, 0xff, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-----OOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x1f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO------.............................. - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO---------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - - // ASCII: 100, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0xc0, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------OO----------OOOOOO-----......................... - 0x00, 0x0f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xfe, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-----OOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 101, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 102, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO......................................... - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO......................................... - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO......................................... - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO......................................... - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO......................................... - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO--------.......................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------.......................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------.......................................... - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO---------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOO.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - - // ASCII: 103, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OO---------------------......................... - 0x00, 0x0f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xfe, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOOOO-----......................... - 0x03, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-----OOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x03, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOO-------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----------------------------OOOOO------......................... - 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----------------------------OOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // --------------------------OOOOOOO------......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO-------......................... - 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOOOO-------......................... - 0x00, 0xc0, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OO--------------OOOOOOO--------......................... - 0x00, 0xf0, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOO----------OOOOOOOOO--------......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO------------......................... - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 104, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOO---------------......................... - 0x03, 0xe0, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOOO-----------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OOOOOOOO-------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 105, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 106, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------............................................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------............................................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO------............................................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-------............................................... - 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOO-------............................................... - 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO--------............................................... - 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO--------............................................... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOO---------............................................... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 107, char width: 36 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------------------............................ - 0x03, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOOO-............................ - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO--............................ - 0x03, 0xe0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO---------------OOOOOOO---............................ - 0x03, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOOO----............................ - 0x03, 0xe0, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------OOOOOOO-----............................ - 0x03, 0xe0, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOO------............................ - 0x03, 0xe0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOO-------............................ - 0x03, 0xe0, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOOO--------............................ - 0x03, 0xe0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOOO---------............................ - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO----------............................ - 0x03, 0xe0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOO-----------............................ - 0x03, 0xe0, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOO------------............................ - 0x03, 0xe1, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOO-------------............................ - 0x03, 0xe3, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOO--------------............................ - 0x03, 0xe7, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOO---------------............................ - 0x03, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOO----------------............................ - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------------............................ - 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-------------------............................ - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------------............................ - 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO------------------............................ - 0x03, 0xef, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOO-----------------............................ - 0x03, 0xe7, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOO----------------............................ - 0x03, 0xe3, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOO---------------............................ - 0x03, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOO--------------............................ - 0x03, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOO-------------............................ - 0x03, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOO------------............................ - 0x03, 0xe0, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOO-----------............................ - 0x03, 0xe0, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOO----------............................ - 0x03, 0xe0, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOO---------............................ - 0x03, 0xe0, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOO--------............................ - 0x03, 0xe0, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOO-------............................ - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO------............................ - 0x03, 0xe0, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOO-----............................ - 0x03, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------OOOOOOOO----............................ - 0x03, 0xe0, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOOOO---............................ - 0x03, 0xe0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO---------------OOOOOOO---............................ - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO--............................ - 0x03, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOOO-............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------............................ - - // ASCII: 108, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 109, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x38, 0x00, 0x00, // ---------------------OOO------------------OOO---------------.... - 0x03, 0xe0, 0x7f, 0xe0, 0x01, 0xff, 0x80, 0x00, // ------OOOOO------OOOOOOOOOO------------OOOOOOOOOO-----------.... - 0x03, 0xe1, 0xff, 0xf8, 0x07, 0xff, 0xc0, 0x00, // ------OOOOO----OOOOOOOOOOOOOO--------OOOOOOOOOOOOO----------.... - 0x03, 0xe3, 0xff, 0xfc, 0x0f, 0xff, 0xf0, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOO--------.... - 0x03, 0xe7, 0xff, 0xfc, 0x1f, 0xff, 0xf0, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO--------.... - 0x03, 0xef, 0xff, 0xfe, 0x3f, 0xff, 0xf8, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xef, 0x80, 0xfe, 0x7e, 0x03, 0xf8, 0x00, // ------OOOOO-OOOOO-------OOOOOOO--OOOOOO-------OOOOOOO-------.... - 0x03, 0xfe, 0x00, 0x7f, 0x78, 0x01, 0xfc, 0x00, // ------OOOOOOOOO----------OOOOOOO-OOOO----------OOOOOOO------.... - 0x03, 0xfc, 0x00, 0x3f, 0xf0, 0x00, 0xfc, 0x00, // ------OOOOOOOO------------OOOOOOOOOO------------OOOOOO------.... - 0x03, 0xf8, 0x00, 0x3f, 0xe0, 0x00, 0xfc, 0x00, // ------OOOOOOO-------------OOOOOOOOO-------------OOOOOO------.... - 0x03, 0xf8, 0x00, 0x1f, 0xe0, 0x00, 0x7e, 0x00, // ------OOOOOOO--------------OOOOOOOO--------------OOOOOO-----.... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, // ------OOOOOO---------------OOOOOOO---------------OOOOOO-----.... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, // ------OOOOOO---------------OOOOOOO---------------OOOOOO-----.... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, // ------OOOOOO---------------OOOOOOO---------------OOOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x03, 0xe0, 0x00, 0x0f, 0x80, 0x00, 0x3e, 0x00, // ------OOOOO-----------------OOOOO-----------------OOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 110, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x03, 0xe0, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOOO-----------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OOOOOOOO-------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 111, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 112, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OO----------------......................... - 0x03, 0xe0, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOO------------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO--------OOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------OOOOOOOO------......................... - 0x03, 0xef, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOO-----OOOOOOOOO-------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe3, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOO----------......................... - 0x03, 0xe0, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOOOOOO-----------......................... - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO-------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 113, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OO---------------------......................... - 0x00, 0x0f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x01, 0xfe, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-----OOOOOOOOOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xff, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----OOOOOO-----......................... - 0x00, 0x03, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOO-------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----------------------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 114, char width: 26 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO--...................................... - 0x03, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOO...................................... - 0x03, 0xe1, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOO...................................... - 0x03, 0xe3, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOO...................................... - 0x03, 0xe7, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOO...................................... - 0x03, 0xef, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOO...................................... - 0x03, 0xef, 0x80, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OO...................................... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO----------...................................... - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO------------...................................... - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO------------...................................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-------------...................................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-------------...................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------...................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------...................................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------...................................... - - // ASCII: 115, char width: 32 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO------------................................ - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO-------................................ - 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO----................................ - 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOO----................................ - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----................................ - 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO----................................ - 0x07, 0xf0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----------OOOOO----................................ - 0x0f, 0xc0, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OO----................................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------................................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------................................ - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------................................ - 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO--------------------................................ - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO-----------------................................ - 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-------------................................ - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO----------................................ - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO--------................................ - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO------................................ - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----................................ - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO----................................ - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO----................................ - 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOO---................................ - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO---................................ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---................................ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---................................ - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO---................................ - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO---................................ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---................................ - 0x10, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---O-------------------OOOOOO---................................ - 0x1c, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---OOO----------------OOOOOOO---................................ - 0x1f, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOOOO----................................ - 0x1f, 0xf0, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOO------OOOOOOOOOO----................................ - 0x1f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOO-----................................ - 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOO------................................ - 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOO-------................................ - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO---------................................ - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------................................ - - // ASCII: 116, char width: 24 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x3f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOO-........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------------........................................ - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------........................................ - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------........................................ - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-........................................ - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-........................................ - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-........................................ - 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO-........................................ - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------........................................ - - // ASCII: 117, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 118, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x1f, 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOO--------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x1f, 0x9f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOO---------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 119, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x1f, 0x00, 0x03, 0xf8, 0x00, 0x1f, 0x00, 0x00, // ---OOOOO--------------OOOOOOO--------------OOOOO---............. - 0x1f, 0x00, 0x03, 0xf8, 0x00, 0x3f, 0x00, 0x00, // ---OOOOO--------------OOOOOOO-------------OOOOOO---............. - 0x1f, 0x80, 0x03, 0xf8, 0x00, 0x3f, 0x00, 0x00, // ---OOOOOO-------------OOOOOOO-------------OOOOOO---............. - 0x1f, 0x80, 0x07, 0xf8, 0x00, 0x3e, 0x00, 0x00, // ---OOOOOO------------OOOOOOOO-------------OOOOO----............. - 0x0f, 0x80, 0x07, 0xfc, 0x00, 0x3e, 0x00, 0x00, // ----OOOOO------------OOOOOOOOO------------OOOOO----............. - 0x0f, 0x80, 0x07, 0xfc, 0x00, 0x7e, 0x00, 0x00, // ----OOOOO------------OOOOOOOOO-----------OOOOOO----............. - 0x0f, 0xc0, 0x07, 0xfc, 0x00, 0x7e, 0x00, 0x00, // ----OOOOOO-----------OOOOOOOOO-----------OOOOOO----............. - 0x0f, 0xc0, 0x0f, 0xfc, 0x00, 0x7c, 0x00, 0x00, // ----OOOOOO----------OOOOOOOOOO-----------OOOOO-----............. - 0x07, 0xc0, 0x0f, 0xbe, 0x00, 0x7c, 0x00, 0x00, // -----OOOOO----------OOOOO-OOOOO----------OOOOO-----............. - 0x07, 0xc0, 0x0f, 0xbe, 0x00, 0xfc, 0x00, 0x00, // -----OOOOO----------OOOOO-OOOOO---------OOOOOO-----............. - 0x07, 0xe0, 0x0f, 0xbe, 0x00, 0xfc, 0x00, 0x00, // -----OOOOOO---------OOOOO-OOOOO---------OOOOOO-----............. - 0x07, 0xe0, 0x1f, 0x3e, 0x00, 0xfc, 0x00, 0x00, // -----OOOOOO--------OOOOO--OOOOO---------OOOOOO-----............. - 0x07, 0xe0, 0x1f, 0x1f, 0x00, 0xf8, 0x00, 0x00, // -----OOOOOO--------OOOOO---OOOOO--------OOOOO------............. - 0x03, 0xe0, 0x1f, 0x1f, 0x01, 0xf8, 0x00, 0x00, // ------OOOOO--------OOOOO---OOOOO-------OOOOOO------............. - 0x03, 0xf0, 0x1f, 0x1f, 0x01, 0xf8, 0x00, 0x00, // ------OOOOOO-------OOOOO---OOOOO-------OOOOOO------............. - 0x03, 0xf0, 0x3e, 0x1f, 0x01, 0xf8, 0x00, 0x00, // ------OOOOOO------OOOOO----OOOOO-------OOOOOO------............. - 0x03, 0xf0, 0x3e, 0x0f, 0x81, 0xf0, 0x00, 0x00, // ------OOOOOO------OOOOO-----OOOOO------OOOOO-------............. - 0x01, 0xf0, 0x3e, 0x0f, 0x81, 0xf0, 0x00, 0x00, // -------OOOOO------OOOOO-----OOOOO------OOOOO-------............. - 0x01, 0xf8, 0x3e, 0x0f, 0x83, 0xf0, 0x00, 0x00, // -------OOOOOO-----OOOOO-----OOOOO-----OOOOOO-------............. - 0x01, 0xf8, 0x3c, 0x0f, 0x83, 0xf0, 0x00, 0x00, // -------OOOOOO-----OOOO------OOOOO-----OOOOOO-------............. - 0x01, 0xf8, 0x7c, 0x07, 0x83, 0xe0, 0x00, 0x00, // -------OOOOOO----OOOOO-------OOOO-----OOOOO--------............. - 0x00, 0xf8, 0x7c, 0x07, 0xc3, 0xe0, 0x00, 0x00, // --------OOOOO----OOOOO-------OOOOO----OOOOO--------............. - 0x00, 0xf8, 0x7c, 0x07, 0xc7, 0xe0, 0x00, 0x00, // --------OOOOO----OOOOO-------OOOOO---OOOOOO--------............. - 0x00, 0xfc, 0x7c, 0x07, 0xc7, 0xe0, 0x00, 0x00, // --------OOOOOO---OOOOO-------OOOOO---OOOOOO--------............. - 0x00, 0xfc, 0xf8, 0x03, 0xc7, 0xc0, 0x00, 0x00, // --------OOOOOO--OOOOO---------OOOO---OOOOO---------............. - 0x00, 0x7c, 0xf8, 0x03, 0xe7, 0xc0, 0x00, 0x00, // ---------OOOOO--OOOOO---------OOOOO--OOOOO---------............. - 0x00, 0x7c, 0xf8, 0x03, 0xef, 0xc0, 0x00, 0x00, // ---------OOOOO--OOOOO---------OOOOO-OOOOOO---------............. - 0x00, 0x7e, 0xf8, 0x03, 0xef, 0xc0, 0x00, 0x00, // ---------OOOOOO-OOOOO---------OOOOO-OOOOOO---------............. - 0x00, 0x7f, 0xf0, 0x03, 0xef, 0xc0, 0x00, 0x00, // ---------OOOOOOOOOOO----------OOOOO-OOOOOO---------............. - 0x00, 0x7f, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOOOOO-----------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOO-----------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOO-----------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xe0, 0x01, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOO------------OOOOOOOOOO----------............. - 0x00, 0x3f, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOO-------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xe0, 0x00, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOO--------------OOOOOOOO-----------............. - 0x00, 0x1f, 0xc0, 0x00, 0x7e, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------OOOOOO------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 120, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x1f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOOO---........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xe0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOOO---------------OOOOOOO----........................... - 0x07, 0xf0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------OOOOOOO-----........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf8, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOO------........................... - 0x01, 0xfc, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOO-------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfe, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO-------OOOOOOO--------........................... - 0x00, 0x7f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x8f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---OOOOOOO----------........................... - 0x00, 0x1f, 0xdf, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-OOOOOOO-----------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOO---------------........................... - 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO--------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-------------........................... - 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOO------------........................... - 0x00, 0x1f, 0x9f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--OOOOOOO-----------........................... - 0x00, 0x3f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---OOOOOO-----------........................... - 0x00, 0x7f, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO----OOOOOOO----------........................... - 0x00, 0x7e, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO------OOOOOOO---------........................... - 0x00, 0xfe, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO-------OOOOOO---------........................... - 0x01, 0xfc, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------OOOOOOO--------........................... - 0x01, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOOO-------........................... - 0x03, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOO-------........................... - 0x07, 0xf0, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------OOOOOOO------........................... - 0x07, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------OOOOOOO-----........................... - 0x0f, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO---------------OOOOOO-----........................... - 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOOO----------------OOOOOOO----........................... - 0x1f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOOO---........................... - 0x3f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --OOOOOOO-------------------OOOOOO---........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 121, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0x7c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------------------........................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------........................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------------........................... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 122, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOO---............................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----............................... - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----............................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-----............................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO------............................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------............................... - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------............................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------............................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------............................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------............................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------............................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------............................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------............................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------............................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO--------------............................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------............................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------............................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----------------............................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------............................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------............................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------............................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------............................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------............................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------............................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------............................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO------------------------............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOO---............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - - // ASCII: 123, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOO-------......................... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOO----------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO----------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOO------------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO--------------......................... - 0x00, 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOO-------......................... - 0x00, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOO-------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 124, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - - // ASCII: 125, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO----------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-------------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO------------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOO-------......................... - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-------......................... - 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOO-------------......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO---------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO-----------------......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO------------------......................... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-------------------......................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--------------------......................... - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-----------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 126, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x08, 0x00, 0x00, // ----------------OOOO------------------------O-------............ - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x18, 0x00, 0x00, // ------------OOOOOOOOOOOO-------------------OO-------............ - 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x38, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOO----------------OOO-------............ - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0xf8, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO-----------OOOOO-------............ - 0x00, 0xff, 0xff, 0xff, 0x07, 0xf8, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO-----OOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xfc, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOO-------OOOOOOOOOOOOOOOOOOOOOOO--------............ - 0x01, 0xf0, 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, // -------OOOOO------------OOOOOOOOOOOOOOOOOOO---------............ - 0x01, 0xc0, 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, // -------OOO----------------OOOOOOOOOOOOOOO-----------............ - 0x01, 0x80, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // -------OO--------------------OOOOOOOOOO-------------............ - 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O---------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // No glyph for ASCII: 127, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 128, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 129, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 130, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 131, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 132, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 133, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 134, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 135, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 136, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 137, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 138, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 139, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 140, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 141, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 142, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 143, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 144, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 145, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 146, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 147, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 148, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 149, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 150, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 151, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 152, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 153, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 154, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 155, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 156, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 157, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 158, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // No glyph for ASCII: 159, using substitute: - // ASCII: 32, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 160, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 161, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO---------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 162, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO---------------......................... - 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOO----------......................... - 0x00, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x3f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x7f, 0xc7, 0x0f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO---OOO----OOOO-------......................... - 0x00, 0xff, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-----OOO------OO-------......................... - 0x00, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOO---------------......................... - 0x01, 0xfc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------OOO---------------......................... - 0x01, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------OOO---------------......................... - 0x03, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x07, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------OOO---------------......................... - 0x03, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------OOO---------------......................... - 0x01, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO--------OOO---------------......................... - 0x01, 0xfc, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------OOO---------------......................... - 0x00, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOO---------------......................... - 0x00, 0xff, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-----OOO-------O-------......................... - 0x00, 0x7f, 0x87, 0x07, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOO----OOO-----OOO-------......................... - 0x00, 0x3f, 0xf7, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO-OOO-OOOOOOO-------......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOO---------......................... - 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOO------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 163, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO----------......................... - 0x00, 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOO------......................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO------......................... - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x07, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO-----OOOOO------......................... - 0x00, 0x07, 0xf0, 0x01, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOO-----------OO------......................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x07, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x0f, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 164, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x02, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, // ------O-------------------------OO-----......................... - 0x07, 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, // -----OOO-----------------------OOOO----......................... - 0x0f, 0x80, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------------------OOOOO---......................... - 0x1f, 0xc0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOOO--------------------OOOOOOO--......................... - 0x0f, 0xe0, 0x7e, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOOO------OOOOOO------OOOOOOO---......................... - 0x07, 0xf3, 0xff, 0x8f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOOO--OOOOOOOOOOO---OOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x00, 0xff, 0xe7, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO--OOOOOOOOOO--------......................... - 0x00, 0x7f, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO--------OOOOOOO--------......................... - 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------OOOOOO--------......................... - 0x00, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------OOOOOO-------......................... - 0x00, 0xf8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------------OOOOO-------......................... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOO-------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOO----------------OOOOO------......................... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......................... - 0x01, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOO---------------OOOOO-------......................... - 0x00, 0xf8, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------------OOOOO-------......................... - 0x00, 0xfc, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------OOOOO--------......................... - 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO----------OOOOOO--------......................... - 0x00, 0x7f, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-------OOOOOOOO--------......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO--------......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x07, 0xf7, 0xff, 0xdf, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO-OOOOOOOOOOOOO-OOOOOOO-----......................... - 0x07, 0xe1, 0xff, 0x8f, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO----OOOOOOOOOO---OOOOOOO----......................... - 0x0f, 0xe0, 0x3c, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOOO-------OOOO-------OOOOOOO---......................... - 0x1f, 0xc0, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOOO--------------------OOOOOOO--......................... - 0x0f, 0x80, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ----OOOOO----------------------OOOOO---......................... - 0x07, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, // -----OOO------------------------OOO----......................... - 0x02, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------O--------------------------O-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 165, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x1f, 0x80, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // ---OOOOOO----------------------OOOOOO--......................... - 0x1f, 0x80, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ---OOOOOO---------------------OOOOOO---......................... - 0x0f, 0xc0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOO--------------------OOOOOO---......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -----OOOOOO------------------OOOOOO----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO------......................... - 0x01, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOO--------------OOOOOO------......................... - 0x01, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOOO-------......................... - 0x00, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO------------OOOOOO-------......................... - 0x00, 0xfc, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-----------OOOOOO--------......................... - 0x00, 0x7c, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------OOOOOO--------......................... - 0x00, 0x7e, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---------OOOOOO---------......................... - 0x00, 0x3e, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOOO---------......................... - 0x00, 0x3f, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO--------OOOOO----------......................... - 0x00, 0x1f, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-------OOOOOO----------......................... - 0x00, 0x1f, 0x81, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO------OOOOO-----------......................... - 0x00, 0x0f, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOOO-----------......................... - 0x0f, 0xff, 0xc3, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO----OOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xc7, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO---OOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xe7, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO--OOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xef, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO-OOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO--------------......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......................... - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOO---------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 166, char width: 21 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO--------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------........................................... - - // ASCII: 167, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO----------................................. - 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOO-------................................. - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------................................. - 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xf8, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------OOOO------................................. - 0x07, 0xe0, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------------O------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------------................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------................................. - 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------................................. - 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------................................. - 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO---------------................................. - 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-------------................................. - 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO------------................................. - 0x07, 0xef, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOO----------................................. - 0x07, 0xc7, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---OOOOOOOOO---------................................. - 0x0f, 0x81, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOOOO-------................................. - 0x0f, 0x80, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------OOOOOOOOO------................................. - 0x1f, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------OOOOOOOO-----................................. - 0x1f, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOOOOO----................................. - 0x1f, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------OOOOOOO----................................. - 0x1f, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOOOO---................................. - 0x1f, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOOOO---................................. - 0x1f, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------------OOOOO---................................. - 0x1f, 0x80, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO--------------OOOOO---................................. - 0x1f, 0xc0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-------------OOOOO---................................. - 0x0f, 0xe0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOO---................................. - 0x07, 0xf0, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----------OOOOO---................................. - 0x07, 0xfc, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO---------OOOOO---................................. - 0x03, 0xfe, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------OOOOO----................................. - 0x00, 0xff, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO----OOOOOO----................................. - 0x00, 0x7f, 0xcf, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO--OOOOOO-----................................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO------................................. - 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOO-------................................. - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------................................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO-------................................. - 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOO-------................................. - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO------................................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO------................................. - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----................................. - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----................................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----................................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----................................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----................................. - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----................................. - 0x04, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----O--------------OOOOOO-----................................. - 0x07, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOO-----------OOOOOO------................................. - 0x07, 0xf0, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----OOOOOOOOO------................................. - 0x07, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOO-------................................. - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO--------................................. - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------................................. - 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOO-----------................................. - 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OO---------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 168, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x01, 0xf8, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----OOOOOOO------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 169, char width: 62 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x07, 0x80, 0x00, // -------------OOOOO---------------------------OOOO-------------.. - 0x00, 0x07, 0x80, 0x1f, 0xf8, 0x07, 0x80, 0x00, // -------------OOOO----------OOOOOOOOOO--------OOOO-------------.. - 0x00, 0x0f, 0x00, 0x7f, 0xff, 0x03, 0xc0, 0x00, // ------------OOOO---------OOOOOOOOOOOOOOO------OOOO------------.. - 0x00, 0x0e, 0x01, 0xff, 0xff, 0x01, 0xe0, 0x00, // ------------OOO--------OOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x1e, 0x03, 0xff, 0xff, 0x01, 0xe0, 0x00, // -----------OOOO-------OOOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x1c, 0x07, 0xf0, 0x0f, 0x00, 0xe0, 0x00, // -----------OOO-------OOOOOOO--------OOOO--------OOO-----------.. - 0x00, 0x3c, 0x0f, 0xe0, 0x01, 0x00, 0xf0, 0x00, // ----------OOOO------OOOOOOO------------O--------OOOO----------.. - 0x00, 0x38, 0x0f, 0x80, 0x00, 0x00, 0x70, 0x00, // ----------OOO-------OOOOO------------------------OOO----------.. - 0x00, 0x38, 0x1f, 0x80, 0x00, 0x00, 0x70, 0x00, // ----------OOO------OOOOOO------------------------OOO----------.. - 0x00, 0x78, 0x1f, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOOO------OOOOO--------------------------OOO---------.. - 0x00, 0x70, 0x3f, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOOO--------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x3e, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO------OOOOO---------------------------OOO---------.. - 0x00, 0x70, 0x1f, 0x00, 0x00, 0x00, 0x38, 0x00, // ---------OOO-------OOOOO--------------------------OOO---------.. - 0x00, 0x38, 0x1f, 0x80, 0x00, 0x00, 0x78, 0x00, // ----------OOO------OOOOOO------------------------OOOO---------.. - 0x00, 0x38, 0x0f, 0x80, 0x00, 0x00, 0x70, 0x00, // ----------OOO-------OOOOO------------------------OOO----------.. - 0x00, 0x3c, 0x0f, 0xc0, 0x01, 0x00, 0xf0, 0x00, // ----------OOOO------OOOOOO-------------O--------OOOO----------.. - 0x00, 0x1c, 0x07, 0xf0, 0x07, 0x00, 0xe0, 0x00, // -----------OOO-------OOOOOOO---------OOO--------OOO-----------.. - 0x00, 0x1e, 0x03, 0xff, 0xff, 0x01, 0xe0, 0x00, // -----------OOOO-------OOOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x1e, 0x01, 0xff, 0xff, 0x01, 0xe0, 0x00, // -----------OOOO--------OOOOOOOOOOOOOOOOO-------OOOO-----------.. - 0x00, 0x0f, 0x00, 0xff, 0xff, 0x03, 0xc0, 0x00, // ------------OOOO--------OOOOOOOOOOOOOOOO------OOOO------------.. - 0x00, 0x07, 0x80, 0x1f, 0xf8, 0x07, 0x80, 0x00, // -------------OOOO----------OOOOOOOOOO--------OOOO-------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x0f, 0x80, 0x00, // -------------OOOOO--------------------------OOOOO-------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - - // ASCII: 170, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO----------................................... - 0x03, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOO--------................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO-------................................... - 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO------................................... - 0x07, 0x80, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO---------OOOOO------................................... - 0x04, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----O-------------OOOOO-----................................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO-----................................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO----................................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO----................................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO----................................... - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO----................................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO----................................... - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO----................................... - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO----................................... - 0x07, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------OOOOO----................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------OOOOO----................................... - 0x0f, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------OOOOO----................................... - 0x1f, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOO------------OOOOO----................................... - 0x1f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------OOOOOO----................................... - 0x0f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOO-----------OOOOOO----................................... - 0x0f, 0x80, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------OOOOOOO----................................... - 0x0f, 0xc0, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-------OOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x07, 0xff, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOO-OOOOO----................................... - 0x03, 0xff, 0xcf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO--OOOOO----................................... - 0x00, 0xff, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO---OOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - - // ASCII: 171, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, // ------------------O------------O------.......................... - 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x00, 0x00, // -----------------OO-----------OO------.......................... - 0x00, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, // ----------------OOO----------OOO------.......................... - 0x00, 0x01, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------OOOO------.......................... - 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------OOOOO------.......................... - 0x00, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------OOOOOO------.......................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-------.......................... - 0x00, 0x1f, 0x80, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------OOOOOO--------.......................... - 0x00, 0x3f, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-------OOOOOO---------.......................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO----------.......................... - 0x00, 0xfc, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-------OOOOOO-----------.......................... - 0x01, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------OOOOOO------------.......................... - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO-------------.......................... - 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOOO--------------.......................... - 0x07, 0xc0, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------OOOOO---------------.......................... - 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOOO--------------.......................... - 0x07, 0xf0, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------OOOOOOO-------------.......................... - 0x03, 0xf8, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------OOOOOOO------------.......................... - 0x01, 0xfc, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------OOOOOOO-----------.......................... - 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOOOOOO----------.......................... - 0x00, 0x7f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO------OOOOOOO---------.......................... - 0x00, 0x3f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO------OOOOOOO--------.......................... - 0x00, 0x1f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO------OOOOOOO-------.......................... - 0x00, 0x0f, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOOO------.......................... - 0x00, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------OOOOOO------.......................... - 0x00, 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------OOOOO------.......................... - 0x00, 0x01, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------OOOO------.......................... - 0x00, 0x00, 0xe0, 0x07, 0x00, 0x00, 0x00, 0x00, // ----------------OOO----------OOO------.......................... - 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x00, 0x00, // -----------------OO-----------OO------.......................... - 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x00, 0x00, // ------------------O------------O------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 172, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----------------------------------------OOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 173, char width: 22 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO---.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------.......................................... - - // ASCII: 174, char width: 62 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x07, 0x80, 0x00, // -------------OOOOO---------------------------OOOO-------------.. - 0x00, 0x07, 0x83, 0xfe, 0x00, 0x07, 0x80, 0x00, // -------------OOOO-----OOOOOOOOO--------------OOOO-------------.. - 0x00, 0x0f, 0x03, 0xff, 0xf8, 0x03, 0xc0, 0x00, // ------------OOOO------OOOOOOOOOOOOOOO---------OOOO------------.. - 0x00, 0x0e, 0x03, 0xff, 0xfc, 0x01, 0xe0, 0x00, // ------------OOO-------OOOOOOOOOOOOOOOO---------OOOO-----------.. - 0x00, 0x1e, 0x03, 0xff, 0xfe, 0x01, 0xe0, 0x00, // -----------OOOO-------OOOOOOOOOOOOOOOOO--------OOOO-----------.. - 0x00, 0x1c, 0x03, 0xe0, 0x3f, 0x00, 0xe0, 0x00, // -----------OOO--------OOOOO-------OOOOOO--------OOO-----------.. - 0x00, 0x3c, 0x03, 0xe0, 0x1f, 0x80, 0xf0, 0x00, // ----------OOOO--------OOOOO--------OOOOOO-------OOOO----------.. - 0x00, 0x38, 0x03, 0xe0, 0x0f, 0x80, 0x70, 0x00, // ----------OOO---------OOOOO---------OOOOO--------OOO----------.. - 0x00, 0x38, 0x03, 0xe0, 0x0f, 0x80, 0x70, 0x00, // ----------OOO---------OOOOO---------OOOOO--------OOO----------.. - 0x00, 0x78, 0x03, 0xe0, 0x0f, 0x80, 0x38, 0x00, // ---------OOOO---------OOOOO---------OOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x0f, 0x80, 0x38, 0x00, // ---------OOO----------OOOOO---------OOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x0f, 0x80, 0x38, 0x00, // ---------OOO----------OOOOO---------OOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x1f, 0x80, 0x38, 0x00, // ---------OOO----------OOOOO--------OOOOOO---------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x3f, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO-------OOOOOO----------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xfe, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOOOOO-----------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xfc, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOOOO------------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xf0, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOO--------------OOO---------.. - 0x00, 0x70, 0x03, 0xff, 0xf0, 0x00, 0x38, 0x00, // ---------OOO----------OOOOOOOOOOOOOO--------------OOO---------.. - 0x00, 0x70, 0x03, 0xe1, 0xf8, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO----OOOOOO-------------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0xfc, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO-----OOOOOO------------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x7c, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO------OOOOO------------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x7e, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO------OOOOOO-----------OOO---------.. - 0x00, 0x70, 0x03, 0xe0, 0x3e, 0x00, 0x38, 0x00, // ---------OOO----------OOOOO-------OOOOO-----------OOO---------.. - 0x00, 0x38, 0x03, 0xe0, 0x1f, 0x00, 0x78, 0x00, // ----------OOO---------OOOOO--------OOOOO---------OOOO---------.. - 0x00, 0x38, 0x03, 0xe0, 0x1f, 0x00, 0x70, 0x00, // ----------OOO---------OOOOO--------OOOOO---------OOO----------.. - 0x00, 0x3c, 0x03, 0xe0, 0x0f, 0x80, 0xf0, 0x00, // ----------OOOO--------OOOOO---------OOOOO-------OOOO----------.. - 0x00, 0x1c, 0x03, 0xe0, 0x0f, 0xc0, 0xe0, 0x00, // -----------OOO--------OOOOO---------OOOOOO------OOO-----------.. - 0x00, 0x1e, 0x03, 0xe0, 0x07, 0xc1, 0xe0, 0x00, // -----------OOOO-------OOOOO----------OOOOO-----OOOO-----------.. - 0x00, 0x1e, 0x03, 0xe0, 0x07, 0xe1, 0xe0, 0x00, // -----------OOOO-------OOOOO----------OOOOOO----OOOO-----------.. - 0x00, 0x0f, 0x03, 0xe0, 0x03, 0xe3, 0xc0, 0x00, // ------------OOOO------OOOOO-----------OOOOO---OOOO------------.. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x07, 0x80, 0x00, // -------------OOOO----------------------------OOOO-------------.. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x0f, 0x80, 0x00, // -------------OOOOO--------------------------OOOOO-------------.. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x0f, 0x00, 0x00, // --------------OOOOO-------------------------OOOO--------------.. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x3e, 0x00, 0x00, // ---------------OOOOO----------------------OOOOO---------------.. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----------------OOOOO--------------------OOOOO----------------.. - 0x00, 0x00, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // -----------------OOOOOO----------------OOOOOO-----------------.. - 0x00, 0x00, 0x3f, 0x80, 0x07, 0xf0, 0x00, 0x00, // ------------------OOOOOOO------------OOOOOOO------------------.. - 0x00, 0x00, 0x1f, 0xfc, 0xff, 0xe0, 0x00, 0x00, // -------------------OOOOOOOOOOO--OOOOOOOOOOO-------------------.. - 0x00, 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOO---------------------.. - 0x00, 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOO-----------------------.. - 0x00, 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOO--------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------------------------------.. - - // ASCII: 175, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 176, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------------................................. - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO----------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x00, 0xfc, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---OOOOOO--------................................. - 0x01, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------OOOOO-------................................. - 0x01, 0xe0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO---------OOOO-------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x03, 0xc0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOO-----------OOOO------................................. - 0x01, 0xe0, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOO---------OOOOO------................................. - 0x01, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------OOOOO-------................................. - 0x01, 0xfc, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----OOOOOO-------................................. - 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO--------................................. - 0x00, 0x7f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO---------................................. - 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOO----------................................. - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 177, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO-----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 178, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------....................................... - 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOO--------....................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------....................................... - 0x1f, 0xdf, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO-OOOOOOOO------....................................... - 0x1c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOO--------OOOOOO-----....................................... - 0x10, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---O-----------OOOOO-----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----....................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO------....................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------....................................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------....................................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO--------....................................... - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO---------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO-----------....................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------....................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-------------....................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------....................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------------....................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------....................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-----------------....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO----....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 179, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------....................................... - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOO-------....................................... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOO------....................................... - 0x0f, 0xdf, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOOOOOO-----....................................... - 0x08, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O----------OOOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----....................................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------....................................... - 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-------....................................... - 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOO--------....................................... - 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------....................................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----....................................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---....................................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----....................................... - 0x18, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OO---------OOOOOOO----....................................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----....................................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------....................................... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOO-------....................................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 180, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO------................................. - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-------................................. - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO-------................................. - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO--------................................. - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---------................................. - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------................................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------................................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----------................................. - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO------------................................. - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------------................................. - 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOO--------------................................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO--------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 181, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOOOO-----......................... - 0x07, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOOO-----......................... - 0x07, 0xf8, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOO------------OOOOOOOOO-----......................... - 0x07, 0xfe, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOOOOOO---------OOOOOOOOOO-----......................... - 0x07, 0xff, 0xcf, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOO--OOOOOOOOOOOOOOOOOO-......................... - 0x07, 0xff, 0xff, 0xf7, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOO-OOOOOOOOO-......................... - 0x07, 0xef, 0xff, 0xe7, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOOOOOOOO--OOOOOOOOO-......................... - 0x07, 0xe7, 0xff, 0xc7, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO--OOOOOOOOOOOOO---OOOOOOOOO-......................... - 0x07, 0xe3, 0xff, 0x83, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---OOOOOOOOOOO-----OOOOOOOO-......................... - 0x07, 0xe0, 0xfe, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----OOOOOO-----OOOOOOO--------OOOOO---......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 182, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x3f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOO------......................... - 0x00, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x07, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x03, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x01, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0xff, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x7f, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x3f, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x0f, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----OOOOO------......................... - 0x00, 0x01, 0xfe, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, // ------------------OOOOO-----OOOOO------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 183, char width: 20 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------............................................ - - // ASCII: 184, char width: 31 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOO-------------................................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO------------................................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----------................................. - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO----------................................. - 0x00, 0x40, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------O------OOOOO----------................................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO----------................................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO----------................................. - 0x00, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOO-----------................................. - 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOO-------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------................................. - - // ASCII: 185, char width: 25 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO----------....................................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------....................................... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO----------....................................... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO----------....................................... - 0x0f, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--OOOO----------....................................... - 0x08, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----O------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----------....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------....................................... - - // ASCII: 186, char width: 29 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------................................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................................... - 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOO-------................................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO------................................... - 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------OOOOOO-----................................... - 0x07, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOO---------OOOOOO----................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO--------------OOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x1f, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-------------OOOOO---................................... - 0x0f, 0x80, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOOO---................................... - 0x0f, 0x80, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------OOOOO----................................... - 0x0f, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOOO----................................... - 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-------OOOOOO-----................................... - 0x03, 0xfd, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOOOOO------................................... - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO------................................... - 0x00, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOO--------................................... - 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO---------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOO----................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------................................... - - // ASCII: 187, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O------------O------------------.......................... - 0x03, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OO-----------OO-----------------.......................... - 0x03, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOO----------OOO----------------.......................... - 0x03, 0xc0, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO---------OOOO---------------.......................... - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO--------------.......................... - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO-------------.......................... - 0x01, 0xf8, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------OOOOOO------------.......................... - 0x00, 0xfc, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO-------OOOOOO-----------.......................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO----------.......................... - 0x00, 0x3f, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-------OOOOOO---------.......................... - 0x00, 0x1f, 0x80, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-------OOOOOO--------.......................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-------.......................... - 0x00, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------OOOOOO------.......................... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO-----.......................... - 0x00, 0x01, 0xf0, 0x0f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOO--------OOOOO-----.......................... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO-----.......................... - 0x00, 0x07, 0xf0, 0x3f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOO------OOOOOOO-----.......................... - 0x00, 0x0f, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOOO------.......................... - 0x00, 0x1f, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO------OOOOOOO-------.......................... - 0x00, 0x3f, 0x81, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO------OOOOOOO--------.......................... - 0x00, 0x7f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO------OOOOOOO---------.......................... - 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------OOOOOOO----------.......................... - 0x01, 0xfc, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------OOOOOOO-----------.......................... - 0x03, 0xf8, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------OOOOOOO------------.......................... - 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO-------------.......................... - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO--------------.......................... - 0x03, 0xc0, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO---------OOOO---------------.......................... - 0x03, 0x80, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOO----------OOO----------------.......................... - 0x03, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OO-----------OO-----------------.......................... - 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, // ------O------------O------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 188, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, // ----------OOOOO---------------------------OOOO--------------.... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, // -----OOOOOOOOOO--------------------------OOOOO--------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0x9e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--OOOO------------------------OOOOO----------------.... - 0x08, 0x1e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----O------OOOO------------------------OOOOO----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // -----------OOOO---------------------OOOOO-------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // -----------OOOO---------------------OOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO--------------------OOOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------OOOO---------------OOOOO-------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xc0, 0x00, 0x7c, 0x00, // -----------OOOO---------------OOOO---------------OOOOO------.... - 0x00, 0x1e, 0x00, 0x07, 0xc0, 0x00, 0xfc, 0x00, // -----------OOOO--------------OOOOO--------------OOOOOO------.... - 0x00, 0x1e, 0x00, 0x07, 0x80, 0x01, 0xfc, 0x00, // -----------OOOO--------------OOOO--------------OOOOOOO------.... - 0x07, 0xff, 0xfc, 0x0f, 0x80, 0x01, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO------OOOOO--------------OOOOOOO------.... - 0x07, 0xff, 0xfc, 0x1f, 0x00, 0x03, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO--------------OOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x1f, 0x00, 0x07, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO-------------OOOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x3e, 0x00, 0x07, 0x7c, 0x00, // -----OOOOOOOOOOOOOOOOO----OOOOO--------------OOO-OOOOO------.... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x0e, 0x7c, 0x00, // --------------------------OOOOO-------------OOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1e, 0x7c, 0x00, // -------------------------OOOOO-------------OOOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1c, 0x7c, 0x00, // -------------------------OOOOO-------------OOO---OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x38, 0x7c, 0x00, // ------------------------OOOOO-------------OOO----OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x78, 0x7c, 0x00, // ------------------------OOOOO------------OOOO----OOOOO------.... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x70, 0x7c, 0x00, // -----------------------OOOOO-------------OOO-----OOOOO------.... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0xe0, 0x7c, 0x00, // -----------------------OOOO-------------OOO------OOOOO------.... - 0x00, 0x00, 0x03, 0xe0, 0x01, 0xe0, 0x7c, 0x00, // ----------------------OOOOO------------OOOO------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x01, 0xc0, 0x7c, 0x00, // ---------------------OOOOO-------------OOO-------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x03, 0x80, 0x7c, 0x00, // ---------------------OOOOO------------OOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x80, 0x7c, 0x00, // --------------------OOOOO------------OOOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x00, 0x7c, 0x00, // --------------------OOOOO------------OOO---------OOOOO------.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x07, 0xff, 0xff, 0xc0, // ------------------OOOOO--------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x7c, 0x00, // ------------------OOOOO--------------------------OOOOO------.... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO---------------------------OOOOO------.... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOO-----------------------------OOOOO------.... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ---------------OOOOO-----------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x7c, 0x00, // --------------OOOOO------------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 189, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, // ----------OOOOO---------------------------OOOO--------------.... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, // -----OOOOOOOOOO--------------------------OOOOO--------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0xfe, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOO-------------------------OOOOO---------------.... - 0x0f, 0x9e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----OOOOO--OOOO------------------------OOOOO----------------.... - 0x08, 0x1e, 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----O------OOOO------------------------OOOOO----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------OOOO-----------------------OOOOO-----------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, // -----------OOOO----------------------OOOOO------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // -----------OOOO---------------------OOOOO-------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // -----------OOOO---------------------OOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, // -----------OOOO--------------------OOOOO--------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, // -----------OOOO-------------------OOOOO---------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, // -----------OOOO------------------OOOOO----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------OOOO-----------------OOOOO-----------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------OOOO----------------OOOOO------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------OOOO---------------OOOOO-------------------------.... - 0x00, 0x1e, 0x00, 0x03, 0xc0, 0x7f, 0xc0, 0x00, // -----------OOOO---------------OOOO-------OOOOOOOOO----------.... - 0x00, 0x1e, 0x00, 0x07, 0xc3, 0xff, 0xf0, 0x00, // -----------OOOO--------------OOOOO----OOOOOOOOOOOOOO--------.... - 0x00, 0x1e, 0x00, 0x07, 0x83, 0xff, 0xfc, 0x00, // -----------OOOO--------------OOOO-----OOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x0f, 0x83, 0xfb, 0xfc, 0x00, // -----OOOOOOOOOOOOOOOOO------OOOOO-----OOOOOOO-OOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x1f, 0x03, 0x80, 0x7e, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO------OOO--------OOOOOO-----.... - 0x07, 0xff, 0xfc, 0x1f, 0x02, 0x00, 0x3e, 0x00, // -----OOOOOOOOOOOOOOOOO-----OOOOO------O-----------OOOOO-----.... - 0x07, 0xff, 0xfc, 0x3e, 0x00, 0x00, 0x1f, 0x00, // -----OOOOOOOOOOOOOOOOO----OOOOO--------------------OOOOO----.... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x1f, 0x00, // --------------------------OOOOO--------------------OOOOO----.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x1f, 0x00, // -------------------------OOOOO---------------------OOOOO----.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x1f, 0x00, // -------------------------OOOOO---------------------OOOOO----.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x1e, 0x00, // ------------------------OOOOO----------------------OOOO-----.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x3e, 0x00, // ------------------------OOOOO---------------------OOOOO-----.... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x7c, 0x00, // -----------------------OOOOO---------------------OOOOO------.... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0xf8, 0x00, // -----------------------OOOO---------------------OOOOO-------.... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0xf8, 0x00, // ----------------------OOOOO---------------------OOOOO-------.... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x01, 0xf0, 0x00, // ---------------------OOOOO---------------------OOOOO--------.... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x03, 0xe0, 0x00, // ---------------------OOOOO--------------------OOOOO---------.... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, // --------------------OOOOO--------------------OOOOO----------.... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x0f, 0x80, 0x00, // --------------------OOOOO-------------------OOOOO-----------.... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x1f, 0x00, 0x00, // -------------------OOOOO-------------------OOOOO------------.... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x3e, 0x00, 0x00, // -------------------OOOOO------------------OOOOO-------------.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x7c, 0x00, 0x00, // ------------------OOOOO------------------OOOOO--------------.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0xf8, 0x00, 0x00, // ------------------OOOOO-----------------OOOOO---------------.... - 0x00, 0x00, 0x7c, 0x00, 0x01, 0xf0, 0x00, 0x00, // -----------------OOOOO-----------------OOOOO----------------.... - 0x00, 0x00, 0x78, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----------------OOOO-----------------OOOOO-----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x03, 0xff, 0xff, 0x00, // ----------------OOOOO-----------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0xf0, 0x00, 0x03, 0xff, 0xff, 0x00, // ----------------OOOO------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x01, 0xf0, 0x00, 0x03, 0xff, 0xff, 0x00, // ---------------OOOOO------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x03, 0xe0, 0x00, 0x03, 0xff, 0xff, 0x00, // --------------OOOOO-------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 190, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x03, 0xff, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, // ------OOOOOOOOOO--------------------------OOOO--------------.... - 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x7c, 0x00, 0x00, // ----OOOOOOOOOOOOOO-----------------------OOOOO--------------.... - 0x0f, 0xff, 0xe0, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---------------------OOOOO---------------.... - 0x0f, 0xdf, 0xf0, 0x00, 0x00, 0xf8, 0x00, 0x00, // ----OOOOOO-OOOOOOOOO--------------------OOOOO---------------.... - 0x08, 0x01, 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----O----------OOOOOO------------------OOOOO----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x01, 0xf0, 0x00, 0x00, // ----------------OOOOO------------------OOOOO----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------OOOOO-----------------OOOOO-----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----------------OOOOO-----------------OOOOO-----------------.... - 0x00, 0x00, 0xf8, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----------------OOOOO----------------OOOOO------------------.... - 0x00, 0x00, 0xf8, 0x00, 0x07, 0xc0, 0x00, 0x00, // ----------------OOOOO----------------OOOOO------------------.... - 0x00, 0x01, 0xf0, 0x00, 0x0f, 0x80, 0x00, 0x00, // ---------------OOOOO----------------OOOOO-------------------.... - 0x00, 0x0f, 0xe0, 0x00, 0x0f, 0x00, 0x00, 0x00, // ------------OOOOOOO-----------------OOOO--------------------.... - 0x00, 0xff, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-----------------OOOOO--------------------.... - 0x00, 0xff, 0x80, 0x00, 0x3e, 0x00, 0x00, 0x00, // --------OOOOOOOOO-----------------OOOOO---------------------.... - 0x00, 0xff, 0xe0, 0x00, 0x3e, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO---------------OOOOO---------------------.... - 0x00, 0x07, 0xf0, 0x00, 0x7c, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------OOOOO----------------------.... - 0x00, 0x01, 0xf8, 0x00, 0x7c, 0x00, 0x00, 0x00, // ---------------OOOOOO------------OOOOO----------------------.... - 0x00, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, // ----------------OOOOO-----------OOOOO-----------------------.... - 0x00, 0x00, 0x7c, 0x00, 0xf8, 0x00, 0x00, 0x00, // -----------------OOOOO----------OOOOO-----------------------.... - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO------------------------.... - 0x00, 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, // -----------------OOOOO---------OOOOO------------------------.... - 0x00, 0x00, 0x7c, 0x03, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOO--------OOOOO-------------------------.... - 0x00, 0x00, 0x7c, 0x03, 0xc0, 0x00, 0x7c, 0x00, // -----------------OOOOO--------OOOO---------------OOOOO------.... - 0x00, 0x00, 0xf8, 0x07, 0xc0, 0x00, 0xfc, 0x00, // ----------------OOOOO--------OOOOO--------------OOOOOO------.... - 0x18, 0x03, 0xf8, 0x07, 0x80, 0x01, 0xfc, 0x00, // ---OO---------OOOOOOO--------OOOO--------------OOOOOOO------.... - 0x1f, 0xff, 0xf0, 0x0f, 0x80, 0x01, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOO--------OOOOO--------------OOOOOOO------.... - 0x1f, 0xff, 0xe0, 0x1f, 0x00, 0x03, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOO--------OOOOO--------------OOOOOOOO------.... - 0x1f, 0xff, 0xc0, 0x1f, 0x00, 0x07, 0xfc, 0x00, // ---OOOOOOOOOOOOOOO---------OOOOO-------------OOOOOOOOO------.... - 0x03, 0xfe, 0x00, 0x3e, 0x00, 0x07, 0x7c, 0x00, // ------OOOOOOOOO-----------OOOOO--------------OOO-OOOOO------.... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x0e, 0x7c, 0x00, // --------------------------OOOOO-------------OOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1e, 0x7c, 0x00, // -------------------------OOOOO-------------OOOO--OOOOO------.... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x1c, 0x7c, 0x00, // -------------------------OOOOO-------------OOO---OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x38, 0x7c, 0x00, // ------------------------OOOOO-------------OOO----OOOOO------.... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x78, 0x7c, 0x00, // ------------------------OOOOO------------OOOO----OOOOO------.... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x70, 0x7c, 0x00, // -----------------------OOOOO-------------OOO-----OOOOO------.... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0xe0, 0x7c, 0x00, // -----------------------OOOO-------------OOO------OOOOO------.... - 0x00, 0x00, 0x03, 0xe0, 0x01, 0xe0, 0x7c, 0x00, // ----------------------OOOOO------------OOOO------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x01, 0xc0, 0x7c, 0x00, // ---------------------OOOOO-------------OOO-------OOOOO------.... - 0x00, 0x00, 0x07, 0xc0, 0x03, 0x80, 0x7c, 0x00, // ---------------------OOOOO------------OOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x80, 0x7c, 0x00, // --------------------OOOOO------------OOOO--------OOOOO------.... - 0x00, 0x00, 0x0f, 0x80, 0x07, 0x00, 0x7c, 0x00, // --------------------OOOOO------------OOO---------OOOOO------.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x1f, 0x00, 0x07, 0xff, 0xff, 0xc0, // -------------------OOOOO-------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x07, 0xff, 0xff, 0xc0, // ------------------OOOOO--------------OOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x7c, 0x00, // ------------------OOOOO--------------------------OOOOO------.... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO---------------------------OOOOO------.... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x7c, 0x00, // -----------------OOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOOO----------------------------OOOOO------.... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ----------------OOOO-----------------------------OOOOO------.... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x7c, 0x00, // ---------------OOOOO-----------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x7c, 0x00, // --------------OOOOO------------------------------OOOOO------.... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 191, char width: 33 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------............................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------............................... - 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------------............................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------............................... - 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------............................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO---------------............................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----------------............................... - 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOO-----------------............................... - 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO------------------............................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------............................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------............................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------............................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------------............................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------............................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO----------------------............................... - 0x07, 0xe0, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------O----............................... - 0x07, 0xf0, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOO----............................... - 0x07, 0xf0, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO------------OOOOO----............................... - 0x07, 0xfc, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO--------OOOOOOO----............................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO----............................... - 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOO----............................... - 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOO-----............................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-------............................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO---------............................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------............................... - - // ASCII: 192, char width: 42 - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO----------------------...................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO---------------------...................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO--------------------...................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO--------------------...................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO-------------------...................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO------------------...................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO------------------...................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-----------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 193, char width: 42 - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO--------------...................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO---------------...................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO---------------...................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO----------------...................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-----------------...................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO------------------...................... - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-------------------...................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO-------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 194, char width: 42 - 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0x7b, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-OOOO----------------...................... - 0x00, 0x00, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----OOOOO-------------...................... - 0x00, 0x03, 0xc0, 0x78, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-------OOOO-------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 195, char width: 42 - 0x00, 0x01, 0xf0, 0x0e, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO--------OOO-----------...................... - 0x00, 0x03, 0xfc, 0x0e, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOO------OOO-----------...................... - 0x00, 0x07, 0xfe, 0x1e, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOO----OOOO-----------...................... - 0x00, 0x0f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOO-----------...................... - 0x00, 0x0f, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---OOOOOOOOOOO------------...................... - 0x00, 0x0f, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-----OOOOOOOOO------------...................... - 0x00, 0x0e, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOO-------OOOOOOO-------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 196, char width: 42 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x0f, 0xe0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-----OOOOOOO-----------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOO-----------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 197, char width: 42 - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO------------------...................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO----------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO--------------...................... - 0x00, 0x03, 0xe1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO----OOOOO--------------...................... - 0x00, 0x03, 0xc0, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOO------OOOOO-------------...................... - 0x00, 0x07, 0x80, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OOOO--------OOOO-------------...................... - 0x00, 0x07, 0x80, 0x38, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOO-------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x07, 0x80, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------------OOOO---------OOOO------------...................... - 0x00, 0x07, 0x80, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OOOO--------OOOO-------------...................... - 0x00, 0x07, 0xc0, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-------OOOO-------------...................... - 0x00, 0x03, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-----OOOOO-------------...................... - 0x00, 0x03, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOO--------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----------------...................... - 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOO---------------...................... - 0x00, 0x01, 0xfb, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-OOOOOO--------------...................... - 0x00, 0x03, 0xf3, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO--OOOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOO--------------...................... - 0x00, 0x03, 0xf1, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO---OOOOOO-------------...................... - 0x00, 0x07, 0xe1, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOO-------------...................... - 0x00, 0x07, 0xe0, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-----OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO------OOOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOO------------...................... - 0x00, 0x0f, 0xc0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x7e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO--------OOOOOO-----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------OOOOOO----------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x3f, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------OOOOOO-----------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0x7e, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOO-------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOO--------------OOOOOO--------...................... - 0x00, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --------OOOOOO---------------OOOOOO-------...................... - 0x01, 0xfc, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO---------------OOOOOO-------...................... - 0x01, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOO----------------OOOOOO-------...................... - 0x01, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------...................... - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----...................... - 0x07, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -----OOOOOO---------------------OOOOOO----...................... - 0x0f, 0xe0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOOO---------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // ----OOOOOO----------------------OOOOOO----...................... - 0x0f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ----OOOOOO-----------------------OOOOOO---...................... - 0x1f, 0xc0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---OOOOOO------------------------OOOOOO---...................... - 0x1f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x80, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOOO-------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // --OOOOOO--------------------------OOOOOO--...................... - 0x3f, 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --OOOOOO--------------------------OOOOOOO-...................... - 0x7f, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOOO---------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, // -OOOOOO----------------------------OOOOOO-...................... - 0x7e, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -OOOOOO----------------------------OOOOOOO...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------...................... - - // ASCII: 198, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x7e, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOOO----OOOOOO---------------------------.... - 0x00, 0x00, 0x7e, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOOO----OOOOOO---------------------------.... - 0x00, 0x00, 0xfc, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOO-----OOOOOO---------------------------.... - 0x00, 0x00, 0xfc, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOO-----OOOOOO---------------------------.... - 0x00, 0x01, 0xfc, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOO---------------------------.... - 0x00, 0x01, 0xf8, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOO------OOOOOO---------------------------.... - 0x00, 0x01, 0xf8, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOO------OOOOOO---------------------------.... - 0x00, 0x03, 0xf8, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOO------OOOOOO---------------------------.... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO---------------------------.... - 0x00, 0x03, 0xf0, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOO-------OOOOOO---------------------------.... - 0x00, 0x07, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOO--------OOOOOO---------------------------.... - 0x00, 0x07, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOO--------OOOOOO---------------------------.... - 0x00, 0x0f, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOOO--------OOOOOO---------------------------.... - 0x00, 0x0f, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOO---------OOOOOO---------------------------.... - 0x00, 0x0f, 0xc0, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------------OOOOOO---------OOOOOO---------------------------.... - 0x00, 0x1f, 0xc0, 0x1f, 0xff, 0xff, 0xfe, 0x00, // -----------OOOOOOO---------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x1f, 0x80, 0x1f, 0xff, 0xff, 0xfe, 0x00, // -----------OOOOOO----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x1f, 0x80, 0x1f, 0xff, 0xff, 0xfe, 0x00, // -----------OOOOOO----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x3f, 0x00, 0x1f, 0xff, 0xff, 0xfe, 0x00, // ----------OOOOOO-----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x3f, 0x00, 0x1f, 0xff, 0xff, 0xfe, 0x00, // ----------OOOOOO-----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x7f, 0x00, 0x1f, 0xff, 0xff, 0xfe, 0x00, // ---------OOOOOOO-----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------------------------.... - 0x00, 0x7e, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOO------------OOOOOO---------------------------.... - 0x00, 0xfe, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOOO------------OOOOOO---------------------------.... - 0x00, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOO-------------OOOOOO---------------------------.... - 0x00, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // --------OOOOOO-------------OOOOOO---------------------------.... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------------.... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO---------------------------.... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO---------------------------.... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO---------------------------.... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO---------------------------.... - 0x1f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOOO-----------------OOOOOO---------------------------.... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO---------------------------.... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO---------------------------.... - 0x3f, 0x80, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // --OOOOOOO------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // --OOOOOO-------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // --OOOOOO-------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x7e, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // -OOOOOO--------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x7e, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // -OOOOOO--------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0xfe, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, // OOOOOOO--------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 199, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOO------..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0x9f, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOO--OOOOOOOOOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x01, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // -------OOOOOOOO----------------------OOO---..................... - 0x01, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // -------OOOOOOO-------------------------O---..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO---------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--------------------------------..................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO--------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-------------------------------..................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------------------------..................... - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------------------------..................... - 0x03, 0xfc, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------------------O---..................... - 0x01, 0xfc, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, // -------OOOOOOO------------------------OO---..................... - 0x00, 0xfe, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, // --------OOOOOOO----------------------OOO---..................... - 0x00, 0xff, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------------OOOO---..................... - 0x00, 0x7f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ---------OOOOOOOOO----------------OOOOOO---..................... - 0x00, 0x3f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO------------OOOOOOOO---..................... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---..................... - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOO-------------..................... - 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOO---------------..................... - 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOO--------------..................... - 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOO--------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOO-------------..................... - 0x00, 0x00, 0x20, 0x7c, 0x00, 0x00, 0x00, 0x00, // ------------------O------OOOOO-------------..................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO-------------..................... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO-------------..................... - 0x00, 0x00, 0x3f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOO--------------..................... - 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOO----------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 200, char width: 39 - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------------------......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-------------------......................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO------------------......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO----------------......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 201, char width: 39 - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO------------......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-------------......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 202, char width: 39 - 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOO---------------......................... - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO--------------......................... - 0x00, 0x00, 0xf7, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-OOOO--------------......................... - 0x00, 0x01, 0xf7, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-OOOOO-------------......................... - 0x00, 0x03, 0xe3, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO---OOOOO------------......................... - 0x00, 0x07, 0xc1, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-----OOOOO-----------......................... - 0x00, 0x07, 0x80, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-------OOOO-----------......................... - 0x00, 0x0f, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // ------------OOOO---------OOOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 203, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x1f, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-----OOOOOOO---------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------------------......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 204, char width: 18 - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----------.............................................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO---------.............................................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------.............................................. - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO--------.............................................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------.............................................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------.............................................. - 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOO------.............................................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 205, char width: 18 - 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO--.............................................. - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---.............................................. - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO---.............................................. - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO----.............................................. - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO-----.............................................. - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO------.............................................. - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO-------.............................................. - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 206, char width: 18 - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-----.............................................. - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO----.............................................. - 0x07, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOO-OOOO----.............................................. - 0x0f, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-OOOOO---.............................................. - 0x1f, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---OOOOO--.............................................. - 0x3e, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO-----OOOOO-.............................................. - 0x3c, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO-------OOOO-.............................................. - 0x78, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO---------OOOO.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 207, char width: 18 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0xfe, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-----OOOOOOO............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------.............................................. - - // ASCII: 208, char width: 48 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO---------------------................ - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO-----------------................ - 0x03, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................ - 0x03, 0xf8, 0x01, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOO----------OOOOOOOOOOOOOOO----------................ - 0x03, 0xf8, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOOOOOO---------................ - 0x03, 0xf8, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-------------------OOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOOOO-------................ - 0x03, 0xf8, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, // ------OOOOOOO---------------------OOOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0xff, 0xff, 0xfe, 0x00, 0x03, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOO---------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ------OOOOOOO-------------------------OOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOOO----................ - 0x03, 0xf8, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ------OOOOOOO------------------------OOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO-----................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOO------................ - 0x03, 0xf8, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // ------OOOOOOO---------------------OOOOOOO-------................ - 0x03, 0xf8, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOOOO-------................ - 0x03, 0xf8, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-------------------OOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOOO-----------------OOOOOOOOOO--------................ - 0x03, 0xf8, 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOOOOOOOO---------................ - 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------................ - 0x03, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------................ - 0x03, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------................ - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------................ - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO------------------................ - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO----------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------................ - - // ASCII: 209, char width: 46 - 0x00, 0x00, 0x7c, 0x03, 0x80, 0x00, 0x00, 0x00, // -----------------OOOOO--------OOO-------------.................. - 0x00, 0x00, 0xff, 0x03, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOO------OOO-------------.................. - 0x00, 0x01, 0xff, 0x87, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO----OOOO-------------.................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO-------------.................. - 0x00, 0x03, 0xc7, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------OOOO---OOOOOOOOOOO--------------.................. - 0x00, 0x03, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-----OOOOOOOOO--------------.................. - 0x00, 0x03, 0x80, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOO-------OOOOOOO---------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xfe, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOO-------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOO------------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO-----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOO----------------OOOOOO------.................. - 0x03, 0xff, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOO---------------OOOOOO------.................. - 0x03, 0xf7, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-OOOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf3, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--OOOOOO--------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf1, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---OOOOOO-------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----OOOOOO------------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x7e, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----OOOOOO-----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x3f, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------OOOOOO----------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0x80, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOO---------OOOOOO------.................. - 0x03, 0xf0, 0x1f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------OOOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xc0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOO--------OOOOOO------.................. - 0x03, 0xf0, 0x0f, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------OOOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xe0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOO-------OOOOOO------.................. - 0x03, 0xf0, 0x07, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO---------OOOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf0, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOO------OOOOOO------.................. - 0x03, 0xf0, 0x03, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------OOOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xf8, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOO-----OOOOOO------.................. - 0x03, 0xf0, 0x01, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO------------OOOOOO----OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x7e, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO---OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x3f, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO--OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x1f, 0xbf, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-OOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO-------------------OOOOOOOOO------.................. - 0x03, 0xf0, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // ------OOOOOO--------------------OOOOOOOO------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------.................. - - // ASCII: 210, char width: 49 - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO--------------------------............... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-------------------------............... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO------------------------............... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO------------------------............... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----------------------............... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO----------------------............... - 0x00, 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOO----------------------............... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO---------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 211, char width: 49 - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO------------------............... - 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, // -------------------------OOOOO-------------------............... - 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOOO-------------------............... - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO--------------------............... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO---------------------............... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO----------------------............... - 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOO-----------------------............... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-----------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 212, char width: 49 - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO---------------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x0f, 0x78, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO-OOOO--------------------............... - 0x00, 0x00, 0x1f, 0x7c, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-OOOOO-------------------............... - 0x00, 0x00, 0x3e, 0x3e, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---OOOOO------------------............... - 0x00, 0x00, 0x7c, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----OOOOO-----------------............... - 0x00, 0x00, 0x78, 0x0f, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-------OOOO-----------------............... - 0x00, 0x00, 0xf0, 0x07, 0x80, 0x00, 0x00, 0x00, // ----------------OOOO---------OOOO----------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 213, char width: 49 - 0x00, 0x00, 0x3e, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOO--------OOO---------------............... - 0x00, 0x00, 0x7f, 0x81, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOO------OOO---------------............... - 0x00, 0x00, 0xff, 0xc3, 0xc0, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOO----OOOO---------------............... - 0x00, 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x01, 0xe3, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOO---OOOOOOOOOOO----------------............... - 0x00, 0x01, 0xe0, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOO-----OOOOOOOOO----------------............... - 0x00, 0x01, 0xc0, 0x7f, 0x00, 0x00, 0x00, 0x00, // ---------------OOO-------OOOOOOO-----------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 214, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x01, 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ---------------OOOOOOO-----OOOOOOO---------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOO-------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOO-----------............... - 0x00, 0x7f, 0xe0, 0x03, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOO----------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOO---------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x1f, 0xe0, 0x00, 0x00, // ------OOOOOOO----------------------OOOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOO------............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO--------------------------OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x1f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------------------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO----------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOOO----............... - 0x0f, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO---------------------------OOOOOO-----............... - 0x07, 0xe0, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---------------------------OOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x07, 0xf0, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-------------------------OOOOOOO-----............... - 0x03, 0xf0, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOO------------------------OOOOOOO------............... - 0x03, 0xf8, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOO-----------------------OOOOOOO------............... - 0x03, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfc, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOO---------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0x7f, 0x80, 0x01, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOO--------------OOOOOOOOO---------............... - 0x00, 0x3f, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOO----------OOOOOOOOOO----------............... - 0x00, 0x1f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x07, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO---------------............... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO-----------------............... - 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 215, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, // ------------O--------------------------O------------............ - 0x00, 0x1c, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, // -----------OOO------------------------OOO-----------............ - 0x00, 0x3c, 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----------OOOO------------------------OOOO----------............ - 0x00, 0x7e, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------OOOOOO----------------------OOOOOO---------............ - 0x00, 0x7f, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOO--------------------OOOOOOO---------............ - 0x00, 0x3f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ----------OOOOOOO------------------OOOOOOO----------............ - 0x00, 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, // -----------OOOOOOO----------------OOOOOOO-----------............ - 0x00, 0x0f, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------------OOOOOOO--------------OOOOOOO------------............ - 0x00, 0x07, 0xf0, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOO------------OOOOOOO-------------............ - 0x00, 0x07, 0xf8, 0x01, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOOO----------OOOOOOOO-------------............ - 0x00, 0x03, 0xfc, 0x03, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOOO--------OOOOOOOO--------------............ - 0x00, 0x01, 0xfe, 0x07, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOOO------OOOOOOOO---------------............ - 0x00, 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOOOOO------OOOOOOO----------------............ - 0x00, 0x00, 0x7f, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOO----OOOOOOO-----------------............ - 0x00, 0x00, 0x3f, 0x9f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOOOO--OOOOOOO------------------............ - 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOO---------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO---------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOO--------------------............ - 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOO-------------------............ - 0x00, 0x00, 0x3f, 0x9f, 0xc0, 0x00, 0x00, 0x00, // ------------------OOOOOOO--OOOOOOO------------------............ - 0x00, 0x00, 0x7f, 0x0f, 0xe0, 0x00, 0x00, 0x00, // -----------------OOOOOOO----OOOOOOO-----------------............ - 0x00, 0x00, 0xfe, 0x07, 0xf0, 0x00, 0x00, 0x00, // ----------------OOOOOOO------OOOOOOO----------------............ - 0x00, 0x01, 0xfc, 0x03, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOO--------OOOOOOO---------------............ - 0x00, 0x03, 0xf8, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------------OOOOOOO----------OOOOOOO--------------............ - 0x00, 0x07, 0xf8, 0x01, 0xfe, 0x00, 0x00, 0x00, // -------------OOOOOOOO----------OOOOOOOO-------------............ - 0x00, 0x0f, 0xf0, 0x00, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOOO------------OOOOOOOO------------............ - 0x00, 0x1f, 0xe0, 0x00, 0x7f, 0x80, 0x00, 0x00, // -----------OOOOOOOO--------------OOOOOOOO-----------............ - 0x00, 0x1f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, // -----------OOOOOOO----------------OOOOOOO-----------............ - 0x00, 0x3f, 0x80, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ----------OOOOOOO------------------OOOOOOO----------............ - 0x00, 0x7f, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ---------OOOOOOO--------------------OOOOOOO---------............ - 0x00, 0x7e, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, // ---------OOOOOO----------------------OOOOOO---------............ - 0x00, 0x3c, 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, // ----------OOOO------------------------OOOO----------............ - 0x00, 0x18, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, // -----------OO--------------------------OO-----------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 216, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, // ------------------------------------------OO-----............... - 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x78, 0x00, 0x00, // -------------------OOOOOOOOOOO-----------OOOO----............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0xfc, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO-------OOOOOO---............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0xf8, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO-----OOOOO----............... - 0x00, 0x07, 0xff, 0xff, 0xf1, 0xf0, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOO---OOOOO-----............... - 0x00, 0x1f, 0xff, 0xff, 0xfb, 0xe0, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO-OOOOO------............... - 0x00, 0x3f, 0xfe, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----------OOOOOOOOOOOOO---OOOOOOOOOOOOOOOOO------............... - 0x00, 0x7f, 0xe0, 0x03, 0xff, 0xc0, 0x00, 0x00, // ---------OOOOOOOOOO-----------OOOOOOOOOOOO-------............... - 0x00, 0x7f, 0x80, 0x00, 0xff, 0x80, 0x00, 0x00, // ---------OOOOOOOO---------------OOOOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x01, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // -------OOOOOOOO-------------------OOOOOOO--------............... - 0x01, 0xfc, 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, // -------OOOOOOO-------------------OOOOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOOOOO-------............... - 0x03, 0xf8, 0x00, 0x00, 0xff, 0xe0, 0x00, 0x00, // ------OOOOOOO-------------------OOOOOOOOOOO------............... - 0x07, 0xf0, 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOO-------------------OOOOOOOOOOOO------............... - 0x07, 0xf0, 0x00, 0x03, 0xf7, 0xf0, 0x00, 0x00, // -----OOOOOOO------------------OOOOOO-OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x03, 0xe7, 0xf0, 0x00, 0x00, // -----OOOOOO-------------------OOOOO--OOOOOOO-----............... - 0x07, 0xe0, 0x00, 0x07, 0xc3, 0xf0, 0x00, 0x00, // -----OOOOOO------------------OOOOO----OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x0f, 0xc3, 0xf0, 0x00, 0x00, // ----OOOOOOO-----------------OOOOOO----OOOOOO-----............... - 0x0f, 0xe0, 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, // ----OOOOOOO----------------OOOOOO-----OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x1f, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------OOOOOOO----............... - 0x0f, 0xc0, 0x00, 0x3e, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO----------------OOOOO--------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0x7e, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO---------------OOOOOO--------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO--------------OOOOOO---------OOOOOO----............... - 0x0f, 0xc0, 0x00, 0xf8, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO--------------OOOOO----------OOOOOO----............... - 0x1f, 0xc0, 0x01, 0xf0, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-------------OOOOO-----------OOOOOO----............... - 0x1f, 0xc0, 0x03, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO------------OOOOO------------OOOOOO----............... - 0x1f, 0xc0, 0x07, 0xe0, 0x01, 0xf8, 0x00, 0x00, // ---OOOOOOO-----------OOOOOO------------OOOOOO----............... - 0x0f, 0xc0, 0x07, 0xc0, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-----------OOOOO-------------OOOOOO----............... - 0x0f, 0xc0, 0x0f, 0x80, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO----------OOOOO--------------OOOOOO----............... - 0x0f, 0xc0, 0x1f, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO---------OOOOO---------------OOOOOO----............... - 0x0f, 0xc0, 0x3f, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO--------OOOOOO---------------OOOOOO----............... - 0x0f, 0xc0, 0x7e, 0x00, 0x01, 0xf8, 0x00, 0x00, // ----OOOOOO-------OOOOOO----------------OOOOOO----............... - 0x0f, 0xc0, 0x7c, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOO-------OOOOO----------------OOOOOOO----............... - 0x0f, 0xe0, 0xf8, 0x00, 0x03, 0xf8, 0x00, 0x00, // ----OOOOOOO-----OOOOO-----------------OOOOOOO----............... - 0x0f, 0xe1, 0xf8, 0x00, 0x03, 0xf0, 0x00, 0x00, // ----OOOOOOO----OOOOOO-----------------OOOOOO-----............... - 0x07, 0xe3, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, // -----OOOOOO---OOOOOO------------------OOOOOO-----............... - 0x07, 0xe3, 0xe0, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOO---OOOOO------------------OOOOOOO-----............... - 0x07, 0xf7, 0xc0, 0x00, 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-OOOOO-------------------OOOOOOO-----............... - 0x03, 0xff, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOOO------------------OOOOOOO------............... - 0x03, 0xff, 0x80, 0x00, 0x0f, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOO-------------------OOOOOOO------............... - 0x03, 0xff, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // ------OOOOOOOOOO-------------------OOOOOOO-------............... - 0x01, 0xfe, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -------OOOOOOOO--------------------OOOOOOO-------............... - 0x00, 0xfe, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x00, // --------OOOOOOO-------------------OOOOOOO--------............... - 0x00, 0xff, 0x00, 0x00, 0x7f, 0x80, 0x00, 0x00, // --------OOOOOOOO-----------------OOOOOOOO--------............... - 0x00, 0xff, 0xc0, 0x01, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-------------OOOOOOOOO---------............... - 0x01, 0xff, 0xf0, 0x07, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOO---------OOOOOOOOOO----------............... - 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x07, 0xef, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----OOOOOO-OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x07, 0xc7, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----OOOOO---OOOOOOOOOOOOOOOOOOOOOOO-------------............... - 0x0f, 0x81, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------OOOOOOOOOOOOOOOOOOO---------------............... - 0x1f, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------OOOOOOOOOOOOOOO-----------------............... - 0x0f, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOO------------OOOOOOOOO--------------------............... - 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OO------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 217, char width: 45 - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------------................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------------................... - 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOO----------------------................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------------................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------------................... - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO--------------------................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 218, char width: 45 - 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOOO----------------................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO-----------------................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------------................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO------------------................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------------................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------------................... - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO---------------------................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 219, char width: 45 - 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOO-------------------................... - 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOO------------------................... - 0x00, 0x00, 0x3d, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-OOOO------------------................... - 0x00, 0x00, 0x7d, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-OOOOO-----------------................... - 0x00, 0x00, 0xf8, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO---OOOOO----------------................... - 0x00, 0x01, 0xf0, 0x7c, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----OOOOO---------------................... - 0x00, 0x01, 0xe0, 0x3c, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-------OOOO---------------................... - 0x00, 0x03, 0xc0, 0x1e, 0x00, 0x00, 0x00, 0x00, // --------------OOOO---------OOOO--------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 220, char width: 45 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x07, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-----OOOOOOO-------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x07, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, // ------OOOOOO----------------------OOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOOO-----................... - 0x03, 0xf0, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOO---------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x03, 0xf8, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------OOOOOO------................... - 0x01, 0xf8, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOO-------------------OOOOOOO------................... - 0x01, 0xfc, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, // -------OOOOOOO------------------OOOOOO-------................... - 0x00, 0xfe, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // --------OOOOOOO----------------OOOOOOO-------................... - 0x00, 0xff, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // --------OOOOOOOO--------------OOOOOOO--------................... - 0x00, 0x7f, 0x80, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOOO-----------OOOOOOOOO--------................... - 0x00, 0x7f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------................... - 0x00, 0x3f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOO----------................... - 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOO-----------................... - 0x00, 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOO------------................... - 0x00, 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOO--------------................... - 0x00, 0x00, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOO-----------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------................... - - // ASCII: 221, char width: 38 - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0xfe, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // OOOOOOO------------------------OOOOOOO.......................... - 0x7f, 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, // -OOOOOOO----------------------OOOOOOO-.......................... - 0x3f, 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // --OOOOOO----------------------OOOOOO--.......................... - 0x3f, 0x80, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // --OOOOOOO--------------------OOOOOOO--.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0xc0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOO------------------OOOOOOO---.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----------OOOOOOO-------.......................... - 0x00, 0xfc, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO----------OOOOOO--------.......................... - 0x00, 0xfe, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOO--------OOOOOOO--------.......................... - 0x00, 0x7e, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO--------OOOOOO---------.......................... - 0x00, 0x3f, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO------OOOOOOO---------.......................... - 0x00, 0x3f, 0x87, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO----OOOOOOO----------.......................... - 0x00, 0x1f, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----OOOOOO-----------.......................... - 0x00, 0x1f, 0xcf, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO--OOOOOOO-----------.......................... - 0x00, 0x0f, 0xcf, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--OOOOOO------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOO--------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 222, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOOO---.......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO----.......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO----.......................... - 0x03, 0xf0, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO-----------OOOOOOOOOO-----.......................... - 0x03, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOO-----------.......................... - 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO----------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 223, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x03, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOO--------------......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO------------......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO-----------......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO----------......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO---------......................... - 0x00, 0xff, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOO-------OOOOOOO---------......................... - 0x01, 0xfc, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------OOOOOO--------......................... - 0x01, 0xf8, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-------------OOOOO--------......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO-------......................... - 0x03, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOO-------......................... - 0x03, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOO-------......................... - 0x03, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOO-------......................... - 0x03, 0xe0, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOOO-------......................... - 0x03, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOOO-------......................... - 0x03, 0xe0, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOOOOOO------......................... - 0x03, 0xe0, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOOOO----------......................... - 0x03, 0xe0, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOO-------------......................... - 0x03, 0xe0, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOO--------------......................... - 0x03, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOO---------------......................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO----------------......................... - 0x03, 0xe0, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOO----------------......................... - 0x03, 0xe0, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOO---------------......................... - 0x03, 0xe0, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOO--------------......................... - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO-------------......................... - 0x03, 0xe0, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOOO------------......................... - 0x03, 0xe0, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOOOOOOO----------......................... - 0x03, 0xe0, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---------OOOOOOOOOO---------......................... - 0x03, 0xe0, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OOOOOOOOOO--------......................... - 0x03, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------------OOOOOOOOO-------......................... - 0x03, 0xe0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-------------OOOOOOOOO------......................... - 0x03, 0xe0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO---------------OOOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOOO----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOOO----......................... - 0x03, 0xe0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO------------------OOOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO--------------------OOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO------------------OOOOOOO---......................... - 0x03, 0xe1, 0x80, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO----OO-----------OOOOOOO----......................... - 0x03, 0xe1, 0xf8, 0x3f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOO-----OOOOOOOOO----......................... - 0x03, 0xe1, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOOOOO-----......................... - 0x03, 0xe1, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOOOO------......................... - 0x03, 0xe1, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xe1, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOOOO--------......................... - 0x00, 0x00, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOO-----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 224, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------------.......................... - 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-----------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------------------.......................... - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---------------------.......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------------------.......................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO-------------------.......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 225, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO----------.......................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO-----------.......................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 226, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO----------------.......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO----------------.......................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO---------------.......................... - 0x00, 0x03, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOO-OOOOO--------------.......................... - 0x00, 0x07, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO-OOOOO--------------.......................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO-------------.......................... - 0x00, 0x0f, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-----OOOO-------------.......................... - 0x00, 0x1f, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----OOOOO------------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x7c, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---------OOOOO----------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 227, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x06, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, // -------------OO----------OOOO---------.......................... - 0x00, 0x1f, 0xc0, 0x70, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------OOO----------.......................... - 0x00, 0x3f, 0xe0, 0x70, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOO------OOO----------.......................... - 0x00, 0x3f, 0xf0, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOO----OOOO----------.......................... - 0x00, 0x7f, 0xf8, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO---OOOO----------.......................... - 0x00, 0x78, 0xfd, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOO---OOOOOO-OOOOO----------.......................... - 0x00, 0x78, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOOO----OOOOOOOOOO-----------.......................... - 0x00, 0x70, 0x3f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------OOO------OOOOOOOOO-----------.......................... - 0x00, 0x70, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOO-------OOOOOOO------------.......................... - 0x00, 0x70, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------OOO---------OOOO-------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 228, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO----------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 229, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------O-------------------.......................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO----------------.......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO--------------.......................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO-------------.......................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO-----OOOOO------------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x3c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---------OOOO-----------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x1e, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO-------OOOO------------.......................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOO-------------.......................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO--------------.......................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO---------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO--------------.......................... - 0x01, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOO------------.......................... - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO----------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x03, 0xe0, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----------OOOOOOOO--------.......................... - 0x03, 0x80, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOO---------------OOOOOOO-------.......................... - 0x02, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------O------------------OOOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOO-------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // --------------------------OOOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------------------------OOOOO------.......................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOO------.......................... - 0x00, 0x7f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x03, 0xfe, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO------------OOOOO------.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOO------.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO------.......................... - 0x0f, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOO------.......................... - 0x0f, 0x80, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xc0, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOO------.......................... - 0x0f, 0xe0, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO------------OOOOOOOOO------.......................... - 0x07, 0xf0, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO---------OOOOOOOOOOO------.......................... - 0x07, 0xfe, 0x1f, 0xdf, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----OOOOOOO-OOOOO------.......................... - 0x03, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOO--OOOOO------.......................... - 0x01, 0xff, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO---OOOOO------.......................... - 0x00, 0xff, 0xfe, 0x1f, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOO----OOOOO------.......................... - 0x00, 0x7f, 0xfc, 0x1f, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOO-----OOOOO------.......................... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO-------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 230, char width: 61 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x30, 0x00, 0x00, // ---------------OOOO-----------------------OO-----------------... - 0x00, 0x3f, 0xff, 0x00, 0x07, 0xff, 0x80, 0x00, // ----------OOOOOOOOOOOOOO-------------OOOOOOOOOOOO------------... - 0x01, 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOO----------... - 0x03, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xf0, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOOOO---------... - 0x03, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xf8, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOOOOO--------... - 0x03, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOOOOOOOOO-------... - 0x03, 0xe0, 0x03, 0xff, 0xfc, 0x01, 0xfe, 0x00, // ------OOOOO-----------OOOOOOOOOOOOOOOO---------OOOOOOOO------... - 0x03, 0x80, 0x00, 0xff, 0xf8, 0x00, 0xfe, 0x00, // ------OOO---------------OOOOOOOOOOOOO-----------OOOOOOO------... - 0x02, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x7f, 0x00, // ------O------------------OOOOOOOOOOO-------------OOOOOOO-----... - 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x3f, 0x00, // --------------------------OOOOOOOOO---------------OOOOOO-----... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x1f, 0x80, // --------------------------OOOOOOOO-----------------OOOOOO----... - 0x00, 0x00, 0x00, 0x3f, 0x80, 0x00, 0x1f, 0x80, // --------------------------OOOOOOO------------------OOOOOO----... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x1f, 0x80, // ---------------------------OOOOOO------------------OOOOOO----... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x0f, 0x80, // ---------------------------OOOOOO-------------------OOOOO----... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x0f, 0x80, // ---------------------------OOOOOO-------------------OOOOO----... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x0f, 0xc0, // ---------------OOOOOOOOOOOOOOOOO--------------------OOOOOO---... - 0x00, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x0f, 0xc0, // -----------OOOOOOOOOOOOOOOOOOOOO--------------------OOOOOO---... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x03, 0xfe, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xc0, // ------OOOOOOOOO------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x07, 0xf0, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xc0, // -----OOOOOOO---------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---... - 0x07, 0xe0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOO-----------------------------... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO-----------------------------... - 0x0f, 0xc0, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOO-----------------------------... - 0x0f, 0xc0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO----------------OOOOOOO----------------------------... - 0x0f, 0x80, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOO----------------------------... - 0x0f, 0x80, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOO----------------------------... - 0x0f, 0x80, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----------------OOOOOOOO---------------------------... - 0x0f, 0x80, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----------------OOOOOOOOO---------------------------... - 0x0f, 0xc0, 0x00, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOOOOO--------------------------... - 0x0f, 0xc0, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ----OOOOOO--------------OOOOOOOOOOOO-------------------------... - 0x0f, 0xe0, 0x01, 0xff, 0xf8, 0x00, 0x03, 0x00, // ----OOOOOOO------------OOOOOOOOOOOOOO-----------------OO-----... - 0x07, 0xf0, 0x07, 0xf3, 0xfc, 0x00, 0x0f, 0x00, // -----OOOOOOO---------OOOOOOO--OOOOOOOO--------------OOOO-----... - 0x07, 0xfe, 0x1f, 0xe1, 0xff, 0x80, 0xff, 0x00, // -----OOOOOOOOOO----OOOOOOOO----OOOOOOOOOO-------OOOOOOOO-----... - 0x03, 0xff, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOO-----... - 0x01, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xff, 0x00, // -------OOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO-----... - 0x00, 0xff, 0xff, 0x00, 0x3f, 0xff, 0xfe, 0x00, // --------OOOOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOOOOOO------... - 0x00, 0x7f, 0xfc, 0x00, 0x0f, 0xff, 0xf8, 0x00, // ---------OOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO--------... - 0x00, 0x0f, 0xf0, 0x00, 0x01, 0xff, 0x80, 0x00, // ------------OOOOOOOO-------------------OOOOOOOOOO------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------------------... - - // ASCII: 231, char width: 34 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-----------.............................. - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO-------.............................. - 0x00, 0x0f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO----.............................. - 0x01, 0xff, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO----------OOOO----.............................. - 0x01, 0xfc, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO--------------OO----.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-------------------------.............................. - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO------------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO-----------------------.............................. - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO----------------------.............................. - 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO---------------------.............................. - 0x03, 0xfc, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO---------------O----.............................. - 0x01, 0xfe, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO------------OOO----.............................. - 0x00, 0xff, 0xc1, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOO-----OOOOOOO----.............................. - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x1f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOO----.............................. - 0x00, 0x07, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOO------.............................. - 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOO---------.............................. - 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOO-----------.............................. - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO----------.............................. - 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------OOOO----------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOO---------.............................. - 0x00, 0x04, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------O------OOOOO---------.............................. - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO---------.............................. - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO---------.............................. - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO----------.............................. - 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOO------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------.............................. - - // ASCII: 232, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------------------.......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--------------------.......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------------------.......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-------------------.......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO----------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 233, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---------.......................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO----------.......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO----------.......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 234, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO--------------.......................... - 0x00, 0x01, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-OOOOO-------------.......................... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-OOOOO-------------.......................... - 0x00, 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---OOOOO------------.......................... - 0x00, 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-----OOOO------------.......................... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOO-----------.......................... - 0x00, 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------OOOO-----------.......................... - 0x00, 0x1e, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------OOOO----------.......................... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 235, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOO----------------.......................... - 0x00, 0x03, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOO------------.......................... - 0x00, 0x0f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x7f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO--------OOOOOOOO------.......................... - 0x01, 0xfc, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0xc0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOO-------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOOO---.......................... - 0x0f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO-----------------------------.......................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO-----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOO----------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------------------.......................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO--------------------------.......................... - 0x03, 0xf8, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, // ------OOOOOOO--------------------O----.......................... - 0x03, 0xfc, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-----------------OOO----.......................... - 0x01, 0xff, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOO-------------OOOOO----.......................... - 0x00, 0xff, 0xe0, 0x7f, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOO------OOOOOOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOO----.......................... - 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 236, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO------------............................................... - 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOO------------............................................... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----------............................................... - 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOOO----------............................................... - 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO----------............................................... - 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO---------............................................... - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO--------............................................... - 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--------............................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOO------............................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 237, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO.............................................. - 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO............................................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO............................................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-............................................... - 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO--............................................... - 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO---............................................... - 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---............................................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO----............................................... - 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOO-----............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOO-------............................................... - 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOO-------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 238, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----............................................... - 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOO-----............................................... - 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOO----............................................... - 0x0f, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOO-OOOOO---............................................... - 0x1f, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOO-OOOOO---............................................... - 0x3e, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO---OOOOO--............................................... - 0x3c, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOO-----OOOO--............................................... - 0x7c, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOOO-----OOOOO-............................................... - 0x78, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -OOOO-------OOOO-............................................... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------OOOO............................................... - 0xf0, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------OOOOO.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 239, char width: 17 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0xfc, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOO-----OOOOOOO.............................................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------............................................... - - // ASCII: 240, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOO---------------------.......................... - 0x00, 0x1f, 0xc0, 0x0e, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO----------OOO-------.......................... - 0x00, 0x0f, 0xe0, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO------OOOOOO-------.......................... - 0x00, 0x07, 0xe1, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO----OOOOOOOO-------.......................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x03, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOO-----------.......................... - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO-------------.......................... - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO---------------.......................... - 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOO---------------.......................... - 0x01, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOO-OOOOOOO--------------.......................... - 0x01, 0xfc, 0x3f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO----OOOOOOO-------------.......................... - 0x01, 0xe0, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------OOOO--------OOOOOOO------------.......................... - 0x01, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------O------------OOOOOO------------.......................... - 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO----------.......................... - 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOO---------.......................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOO-------.......................... - 0x01, 0xff, 0x81, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO------OOOOOOOOO------.......................... - 0x01, 0xfe, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO-----------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO---------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO-----------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOO--------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 241, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x01, 0x80, 0x1e, 0x00, 0x00, 0x00, 0x00, // ---------------OO----------OOOO--------......................... - 0x00, 0x07, 0xf0, 0x1c, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOO-------OOO---------......................... - 0x00, 0x0f, 0xf8, 0x1c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOO------OOO---------......................... - 0x00, 0x0f, 0xfc, 0x3c, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOO----OOOO---------......................... - 0x00, 0x1f, 0xfe, 0x3c, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO---OOOO---------......................... - 0x00, 0x1e, 0x3f, 0x7c, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---OOOOOO-OOOOO---------......................... - 0x00, 0x1e, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOO----OOOOOOOOOO----------......................... - 0x00, 0x1c, 0x0f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOO------OOOOOOOOO----------......................... - 0x00, 0x1c, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOO-------OOOOOOO-----------......................... - 0x00, 0x1c, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOO---------OOOO------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------OOO---------------......................... - 0x03, 0xe0, 0x7f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOOO-----------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO-------OOOOOOOO-------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOO--------------OOOOOO------......................... - 0x03, 0xf8, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO-----------------OOOOOO-----......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 242, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO----------------------.......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---------------------.......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO--------------------.......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO--------------------.......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-------------------.......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO------------------.......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO------------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO----------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 243, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO---------.......................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO----------.......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO----------.......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO-----------.......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO------------.......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO-------------.......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO--------------.......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO---------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO-----------------.......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO-----------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 244, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO----------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO---------------.......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO--------------.......................... - 0x00, 0x01, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-OOOOO-------------.......................... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-OOOOO-------------.......................... - 0x00, 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---OOOOO------------.......................... - 0x00, 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-----OOOO------------.......................... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOO-----------.......................... - 0x00, 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------OOOO-----------.......................... - 0x00, 0x1e, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------OOOO----------.......................... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 245, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x03, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, // --------------OO----------OOOO--------.......................... - 0x00, 0x0f, 0xe0, 0x38, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOO-------OOO---------.......................... - 0x00, 0x1f, 0xf0, 0x38, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOO------OOO---------.......................... - 0x00, 0x1f, 0xf8, 0x78, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOO----OOOO---------.......................... - 0x00, 0x3f, 0xfc, 0x78, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOO---OOOO---------.......................... - 0x00, 0x3c, 0x7e, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOO---OOOOOO-OOOOO---------.......................... - 0x00, 0x3c, 0x3f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOO----OOOOOOOOOO----------.......................... - 0x00, 0x38, 0x1f, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOO------OOOOOOOOO----------.......................... - 0x00, 0x38, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOO-------OOOOOOO-----------.......................... - 0x00, 0x38, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------OOO---------OOOO------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 246, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO---------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OO------------------.......................... - 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-------------.......................... - 0x00, 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO-----------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x01, 0xfe, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOO-------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x0f, 0xc0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0x80, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO--------------------OOOOO----.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x1f, 0x80, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------------------OOOOOO---.......................... - 0x0f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xc0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------------OOOOOO----.......................... - 0x0f, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOO----------------OOOOOOO----.......................... - 0x07, 0xe0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOO-----.......................... - 0x07, 0xf0, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--------------OOOOOOO-----.......................... - 0x03, 0xf0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x01, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x00, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x00, 0x7f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOO---------.......................... - 0x00, 0x3f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO----------.......................... - 0x00, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOO------------.......................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO---------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 247, char width: 52 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO----------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------------------------------------------............ - - // ASCII: 248, char width: 38 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, // --------------------------------OO----.......................... - 0x00, 0x00, 0x38, 0x01, 0xe0, 0x00, 0x00, 0x00, // ------------------OOO----------OOOO---.......................... - 0x00, 0x07, 0xff, 0x83, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOO-----OOOOO---.......................... - 0x00, 0x1f, 0xff, 0xe3, 0xe0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOO---OOOOO---.......................... - 0x00, 0x3f, 0xff, 0xf7, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOO-OOOOO----.......................... - 0x00, 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOO-----.......................... - 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOO------.......................... - 0x01, 0xfe, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOO--------OOOOOOOOO------.......................... - 0x03, 0xfc, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO----------OOOOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x07, 0xf0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO------------OOOOOOOOO-----.......................... - 0x07, 0xe0, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO-------------OOOOOOOOO-----.......................... - 0x07, 0xe0, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOO------------OOOOOOOOOO-----.......................... - 0x0f, 0xc0, 0x03, 0xef, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO------------OOOOO-OOOOOO----.......................... - 0x0f, 0xc0, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------OOOOO--OOOOOO----.......................... - 0x0f, 0xc0, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-----------OOOOO--OOOOOO----.......................... - 0x0f, 0xc0, 0x0f, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO----------OOOOO---OOOOOO----.......................... - 0x0f, 0xc0, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO---------OOOOO----OOOOOO----.......................... - 0x0f, 0x80, 0x1e, 0x07, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----------OOOO------OOOOO----.......................... - 0x1f, 0x80, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO---------OOOOO------OOOOOO---.......................... - 0x1f, 0x80, 0x7c, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO--------OOOOO-------OOOOOO---.......................... - 0x1f, 0x80, 0xf8, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO-------OOOOO--------OOOOOO---.......................... - 0x1f, 0x80, 0xf0, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO-------OOOO---------OOOOOO---.......................... - 0x1f, 0x81, 0xf0, 0x07, 0xe0, 0x00, 0x00, 0x00, // ---OOOOOO------OOOOO---------OOOOOO---.......................... - 0x0f, 0x83, 0xe0, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO-----OOOOO---------OOOOOO----.......................... - 0x0f, 0xc7, 0xc0, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO---OOOOO----------OOOOOO----.......................... - 0x0f, 0xc7, 0x80, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO---OOOO-----------OOOOOO----.......................... - 0x0f, 0xcf, 0x80, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO--OOOOO-----------OOOOOO----.......................... - 0x0f, 0xdf, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOO-OOOOO------------OOOOOO----.......................... - 0x0f, 0xfe, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ----OOOOOOOOOOO------------OOOOOOO----.......................... - 0x07, 0xfe, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOOO------------OOOOOO-----.......................... - 0x07, 0xfc, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOOOO------------OOOOOOO-----.......................... - 0x03, 0xf8, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO-------------OOOOOO------.......................... - 0x03, 0xf8, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO------------OOOOOOO------.......................... - 0x01, 0xfc, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOO-------.......................... - 0x03, 0xff, 0x87, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOO----OOOOOOOOOO-------.......................... - 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOO--------.......................... - 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOO---------.......................... - 0x0f, 0x9f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO--OOOOOOOOOOOOOOOOO----------.......................... - 0x1f, 0x0f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---OOOOO----OOOOOOOOOOOOOO------------.......................... - 0x3e, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOO--------OOOOOOOO---------------.......................... - 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOO--------------------------------.......................... - 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OO--------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------------------------------.......................... - - // ASCII: 249, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----------------------......................... - 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----------------------......................... - 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO----------------------......................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO---------------------......................... - 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---------------------......................... - 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO--------------------......................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-------------------......................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-------------------......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOO-----------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 250, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOOO----------......................... - 0x00, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------------------OOOOO-----------......................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO-----------......................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO------------......................... - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO-------------......................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO--------------......................... - 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOO--------------......................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO---------------......................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO----------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOO------------------......................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 251, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO-----------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOO----------------......................... - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO---------------......................... - 0x00, 0x01, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO-OOOOO--------------......................... - 0x00, 0x03, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------OOOOO-OOOOO--------------......................... - 0x00, 0x07, 0xc7, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOOO---OOOOO-------------......................... - 0x00, 0x07, 0x83, 0xc0, 0x00, 0x00, 0x00, 0x00, // -------------OOOO-----OOOO-------------......................... - 0x00, 0x0f, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO-----OOOOO------------......................... - 0x00, 0x0f, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------------OOOO-------OOOO------------......................... - 0x00, 0x1e, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOO---------OOOO-----------......................... - 0x00, 0x3e, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO---------OOOOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 252, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x1f, 0x83, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO-----OOOOOOO----------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO-----------------OOOOOO-----......................... - 0x07, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // -----OOOOOO----------------OOOOOOO-----......................... - 0x03, 0xe0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOO----------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO---------------OOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO--------------OOOOOOOO-----......................... - 0x03, 0xf0, 0x00, 0x7f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOOOOO-----......................... - 0x03, 0xf8, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO-----------OOOOOOOOOO-----......................... - 0x01, 0xfc, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOO---------OOOOOOOOOOO-----......................... - 0x01, 0xff, 0x9f, 0xef, 0xc0, 0x00, 0x00, 0x00, // -------OOOOOOOOOO--OOOOOOOO-OOOOOO-----......................... - 0x00, 0xff, 0xff, 0xef, 0xc0, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-OOOOOO-----......................... - 0x00, 0x7f, 0xff, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--OOOOOO-----......................... - 0x00, 0x3f, 0xff, 0x8f, 0xc0, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---OOOOOO-----......................... - 0x00, 0x1f, 0xfe, 0x0f, 0xc0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----OOOOOO-----......................... - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 253, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOO---------........................... - 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOO----------........................... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO----------........................... - 0x00, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOO-----------........................... - 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOO------------........................... - 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOO-------------........................... - 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOO-------------........................... - 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOO--------------........................... - 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOO-----------------........................... - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-----------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0x7c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------------------........................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------........................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------------........................... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - - // ASCII: 254, char width: 39 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------OO----------------......................... - 0x03, 0xe0, 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO------OOOOOOOOOO------------......................... - 0x03, 0xe1, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----OOOOOOOOOOOOOO----------......................... - 0x03, 0xe3, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOOO---------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xef, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOOOOOOOOOOOOOOOO-------......................... - 0x03, 0xef, 0x80, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOO-OOOOO--------OOOOOOOO------......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xe0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOO-------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOOO---......................... - 0x03, 0xf0, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO------------------OOOOO----......................... - 0x03, 0xf0, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOO-----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO----------------OOOOOO----......................... - 0x03, 0xf8, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00, // ------OOOOOOO---------------OOOOOOO----......................... - 0x03, 0xfc, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO--------------OOOOOO-----......................... - 0x03, 0xfc, 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOOO-------------OOOOOOO-----......................... - 0x03, 0xfe, 0x00, 0x3f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOO-----------OOOOOOO------......................... - 0x03, 0xff, 0x00, 0x7f, 0x80, 0x00, 0x00, 0x00, // ------OOOOOOOOOO---------OOOOOOOO------......................... - 0x03, 0xef, 0xc1, 0xff, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-OOOOOO-----OOOOOOOOO-------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe7, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--OOOOOOOOOOOOOOOOOO--------......................... - 0x03, 0xe3, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOO---OOOOOOOOOOOOOOO----------......................... - 0x03, 0xe0, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-----OOOOOOOOOOOO-----------......................... - 0x03, 0xe0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ------OOOOO-------OOOOOOOO-------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO----------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------......................... - - // ASCII: 255, char width: 37 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x3f, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOOO---------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x3f, 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOOO--........................... - 0x3f, 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, // --OOOOOO---------------------OOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, // ---OOOOOO-------------------OOOOOO---........................... - 0x1f, 0x80, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---OOOOOO------------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x0f, 0xc0, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ----OOOOOO-----------------OOOOOO----........................... - 0x07, 0xc0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x07, 0xe0, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, // -----OOOOOO---------------OOOOOO-----........................... - 0x03, 0xe0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x03, 0xf0, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, // ------OOOOOO-------------OOOOOO------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO-----------OOOOOO-------........................... - 0x01, 0xf8, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------OOOOOO----------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0xfc, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, // --------OOOOOO---------OOOOOO--------........................... - 0x00, 0x7c, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOO--------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x7e, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOO-------OOOOOO---------........................... - 0x00, 0x3e, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOO------OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x3f, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOO-----OOOOOO----------........................... - 0x00, 0x1f, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOO----OOOOOO-----------........................... - 0x00, 0x1f, 0x8f, 0xc0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOO---OOOOOO-----------........................... - 0x00, 0x0f, 0x8f, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOO---OOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x0f, 0xdf, 0x80, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-OOOOOO------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOO-------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOO--------------........................... - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO--------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO---------------........................... - 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x03, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOO-----------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOO------------------........................... - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO-------------------........................... - 0x00, 0x1f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOO-------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOO--------------------........................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------........................... - 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOO----------------------........................... - 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOO-----------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------........................... -}; - -static const uint8_t dejavu_80_widths[224] = -{ - 20, 25, 29, 52, 39, 59, 48, 17, - 24, 24, 31, 52, 20, 22, 20, 21, - 39, 39, 39, 39, 39, 39, 39, 39, - 39, 39, 21, 21, 52, 52, 52, 33, - 62, 42, 43, 43, 48, 39, 36, 48, - 47, 18, 18, 41, 35, 54, 46, 49, - 37, 49, 43, 39, 38, 45, 42, 61, - 43, 38, 43, 24, 21, 24, 52, 31, - 31, 38, 39, 34, 39, 38, 22, 39, - 39, 17, 17, 36, 17, 60, 39, 38, - 39, 39, 26, 32, 24, 39, 37, 51, - 37, 37, 33, 39, 21, 39, 52, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 20, 20, 20, 20, 20, 20, 20, - 20, 25, 39, 39, 39, 39, 21, 31, - 31, 62, 29, 38, 52, 22, 62, 31, - 31, 52, 25, 25, 31, 39, 39, 20, - 31, 25, 29, 38, 60, 60, 60, 33, - 42, 42, 42, 42, 42, 42, 60, 43, - 39, 39, 39, 39, 18, 18, 18, 18, - 48, 46, 49, 49, 49, 49, 49, 52, - 49, 45, 45, 45, 45, 38, 38, 39, - 38, 38, 38, 38, 38, 38, 61, 34, - 38, 38, 38, 38, 17, 17, 17, 17, - 38, 39, 38, 38, 38, 38, 38, 52, - 38, 39, 39, 39, 39, 37, 39, 37, -}; - -static const font_t dejavu_80_dsc = -{ - 224, // Letter count - 32, // First ascii code - 8, // Letters width (bytes) - 80, // Letters height (row) - 0, // Fixed width or 0 if variable - dejavu_80_widths, - dejavu_80_bitmaps -}; - -const font_t * dejavu_80_get_dsc(void) -{ - return &dejavu_80_dsc; -} - - -#endif \ No newline at end of file diff --git a/lv_misc/fonts/dejavu_80.h b/lv_misc/fonts/dejavu_80.h deleted file mode 100644 index 4b4037091..000000000 --- a/lv_misc/fonts/dejavu_80.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef DEJAVU_80_H -#define DEJAVU_80_H - -/*Use ISO8859-1 encoding in the IDE*/ -#include "lv_conf.h" -#if USE_FONT_DEJAVU_80 != 0 - - -#include -#include "../font.h" -const font_t * dejavu_80_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/symbol_30.c b/lv_misc/fonts/symbol_30.c deleted file mode 100644 index 17119114f..000000000 --- a/lv_misc/fonts/symbol_30.c +++ /dev/null @@ -1,867 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_SYMBOL_30 != 0 - -#include -#include "../font.h" - -static const uint8_t symbol_30_bitmaps[3120] = -{ - // ASCII: 97, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x03, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOO------.. - 0x07, 0xff, 0xff, 0x80, // -----OOOOOOOOOOOOOOOOOOOO-----.. - 0x07, 0xff, 0xff, 0x80, // -----OOOOOOOOOOOOOOOOOOOO-----.. - 0x07, 0xff, 0xff, 0x80, // -----OOOOOOOOOOOOOOOOOOOO-----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO---.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xe0, 0x00, 0x00, 0x1c, // OOO------------------------OOO.. - 0x60, 0x00, 0x00, 0x18, // -OO------------------------OO-.. - 0x60, 0x00, 0x03, 0x18, // -OO-------------------OO---OO-.. - 0x60, 0x00, 0x03, 0x18, // -OO-------------------OO---OO-.. - 0x70, 0x00, 0x00, 0x38, // -OOO----------------------OOO-.. - 0x30, 0x00, 0x00, 0x30, // --OO----------------------OO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 98, char width: 26 - 0xff, 0xfe, 0x40, 0x00, // OOOOOOOOOOOOOOO--O--------...... - 0xff, 0xfe, 0x60, 0x00, // OOOOOOOOOOOOOOO--OO-------...... - 0xff, 0xfe, 0x70, 0x00, // OOOOOOOOOOOOOOO--OOO------...... - 0xff, 0xfe, 0x78, 0x00, // OOOOOOOOOOOOOOO--OOOO-----...... - 0xff, 0xfe, 0x7c, 0x00, // OOOOOOOOOOOOOOO--OOOOO----...... - 0xff, 0xfe, 0x7e, 0x00, // OOOOOOOOOOOOOOO--OOOOOO---...... - 0xff, 0xfe, 0x7f, 0x00, // OOOOOOOOOOOOOOO--OOOOOOO--...... - 0xff, 0xfe, 0x7f, 0x80, // OOOOOOOOOOOOOOO--OOOOOOOO-...... - 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOO-----------...... - 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOO----------...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xfe, 0x00, 0x1f, 0xc0, // OOOOOOO------------OOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO-...... - - // ASCII: 99, char width: 32 - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO--------------------- - 0x7f, 0xf0, 0x00, 0x00, // -OOOOOOOOOOO-------------------- - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO------------------- - 0xff, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOO------------------- - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO-------- - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO------- - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO------- - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xff, 0x80, 0x00, 0x00, // OOOOOOOOO----------------------- - 0xfe, 0x00, 0x00, 0x00, // OOOOOOO------------------------- - 0xfc, 0x3f, 0xff, 0xff, // OOOOOO----OOOOOOOOOOOOOOOOOOOOOO - 0xf8, 0xff, 0xff, 0xfe, // OOOOO---OOOOOOOOOOOOOOOOOOOOOOO- - 0xf1, 0xff, 0xff, 0xfe, // OOOO---OOOOOOOOOOOOOOOOOOOOOOOO- - 0xf3, 0xff, 0xff, 0xfc, // OOOO--OOOOOOOOOOOOOOOOOOOOOOOO-- - 0xe7, 0xff, 0xff, 0xf8, // OOO--OOOOOOOOOOOOOOOOOOOOOOOO--- - 0xcf, 0xff, 0xff, 0xf0, // OO--OOOOOOOOOOOOOOOOOOOOOOOO---- - 0x8f, 0xff, 0xff, 0xe0, // O---OOOOOOOOOOOOOOOOOOOOOOO----- - 0x1f, 0xff, 0xff, 0xe0, // ---OOOOOOOOOOOOOOOOOOOOOOOO----- - 0x3f, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOO------ - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO------- - 0x7f, 0xff, 0xfe, 0x00, // -OOOOOOOOOOOOOOOOOOOOOO--------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - - // ASCII: 100, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------........ - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------........ - 0x03, 0x81, 0x80, 0x00, // ------OOO------OO-------........ - 0x03, 0x01, 0xc0, 0x00, // ------OO-------OOO------........ - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........ - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x33, 0x99, 0x9c, 0x00, // --OO--OOO--OO--OO--OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x30, 0x00, 0x1c, 0x00, // --OO---------------OOO--........ - 0x38, 0x00, 0x18, 0x00, // --OOO--------------OO---........ - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---........ - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO----........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 101, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO-------...... - 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOO------...... - 0xcf, 0xe1, 0xb8, 0x00, // OO--OOOOOOO----OO-OOO-----...... - 0xcf, 0xe1, 0x9c, 0x00, // OO--OOOOOOO----OO--OOO----...... - 0xcf, 0xe1, 0x8e, 0x00, // OO--OOOOOOO----OO---OOO---...... - 0xcf, 0xe1, 0x87, 0x00, // OO--OOOOOOO----OO----OOO--...... - 0xcf, 0xe1, 0x83, 0x80, // OO--OOOOOOO----OO-----OOO-...... - 0xcf, 0xe1, 0x81, 0xc0, // OO--OOOOOOO----OO------OOO...... - 0xcf, 0xe1, 0x81, 0xc0, // OO--OOOOOOO----OO------OOO...... - 0xcf, 0xff, 0x81, 0xc0, // OO--OOOOOOOOOOOOO------OOO...... - 0xc7, 0xff, 0x81, 0xc0, // OO---OOOOOOOOOOOO------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc0, 0x00, 0x01, 0xc0, // OO---------------------OOO...... - 0xc7, 0xff, 0xf9, 0xc0, // OO---OOOOOOOOOOOOOOOO--OOO...... - 0xcf, 0xff, 0xfd, 0xc0, // OO--OOOOOOOOOOOOOOOOOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xce, 0x00, 0x1d, 0xc0, // OO--OOO------------OOO-OOO...... - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO...... - 0xff, 0xff, 0xff, 0x80, // OOOOOOOOOOOOOOOOOOOOOOOOO-...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 102, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x38, 0x00, // ------------------OOO-----...... - 0x00, 0x00, 0x7c, 0x00, // -----------------OOOOO----...... - 0x00, 0x00, 0xfe, 0x00, // ----------------OOOOOOO---...... - 0x00, 0x01, 0xff, 0x00, // ---------------OOOOOOOOO--...... - 0x00, 0x00, 0xff, 0x80, // ----------------OOOOOOOOO-...... - 0x00, 0x06, 0x7f, 0x80, // -------------OO--OOOOOOOO-...... - 0x00, 0x0f, 0x3f, 0x80, // ------------OOOO--OOOOOOO-...... - 0x00, 0x1f, 0x9f, 0x80, // -----------OOOOOO--OOOOOO-...... - 0x00, 0x3f, 0xcf, 0x00, // ----------OOOOOOOO--OOOO--...... - 0x00, 0x7b, 0xe6, 0x00, // ---------OOOO-OOOOO--OO---...... - 0x00, 0xf7, 0xf0, 0x00, // --------OOOO-OOOOOOO------...... - 0x01, 0xef, 0xf8, 0x00, // -------OOOO-OOOOOOOOO-----...... - 0x03, 0xdf, 0xf0, 0x00, // ------OOOO-OOOOOOOOO------...... - 0x07, 0xbf, 0xe0, 0x00, // -----OOOO-OOOOOOOOO-------...... - 0x0f, 0x7f, 0xc0, 0x00, // ----OOOO-OOOOOOOOO--------...... - 0x1e, 0xff, 0x80, 0x00, // ---OOOO-OOOOOOOOO---------...... - 0x3d, 0xff, 0x00, 0x00, // --OOOO-OOOOOOOOO----------...... - 0x7b, 0xfe, 0x00, 0x00, // -OOOO-OOOOOOOOO-----------...... - 0xff, 0xfc, 0x00, 0x00, // OOOOOOOOOOOOOO------------...... - 0xe7, 0xf8, 0x00, 0x00, // OOO--OOOOOOOO-------------...... - 0xc3, 0xf0, 0x00, 0x00, // OO----OOOOOO--------------...... - 0xc1, 0xe0, 0x00, 0x00, // OO-----OOOO---------------...... - 0xf1, 0xc0, 0x00, 0x00, // OOOO---OOO----------------...... - 0xf1, 0xc0, 0x00, 0x00, // OOOO---OOO----------------...... - 0xff, 0x80, 0x00, 0x00, // OOOOOOOOO-----------------...... - 0xff, 0x00, 0x00, 0x00, // OOOOOOOO------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 103, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x03, 0xc0, // ----------------------OOOO----.. - 0x00, 0x00, 0x07, 0xe0, // ---------------------OOOOOO---.. - 0x00, 0x00, 0x0f, 0xf0, // --------------------OOOOOOOO--.. - 0x00, 0x00, 0x0f, 0xf0, // --------------------OOOOOOOO--.. - 0x00, 0x00, 0x1f, 0xf0, // -------------------OOOOOOOOO--.. - 0x00, 0x00, 0x3f, 0xe0, // ------------------OOOOOOOOO---.. - 0x06, 0x00, 0x7f, 0xc0, // -----OO----------OOOOOOOOO----.. - 0x0f, 0x00, 0xff, 0x80, // ----OOOO--------OOOOOOOOO-----.. - 0x1f, 0x81, 0xff, 0x00, // ---OOOOOO------OOOOOOOOO------.. - 0x3f, 0xc3, 0xfe, 0x00, // --OOOOOOOO----OOOOOOOOO-------.. - 0x3f, 0xe7, 0xfc, 0x00, // --OOOOOOOOO--OOOOOOOOO--------.. - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---------.. - 0x0f, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOO----------.. - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----------.. - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------------.. - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------------.. - 0x00, 0xff, 0x00, 0x00, // --------OOOOOOOO--------------.. - 0x00, 0x7e, 0x00, 0x00, // ---------OOOOOO---------------.. - 0x00, 0x3c, 0x00, 0x00, // ----------OOOO----------------.. - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 104, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x0e, 0x00, 0x60, 0x00, // ----OOO----------OO-----........ - 0x0f, 0x00, 0xf0, 0x00, // ----OOOO--------OOOO----........ - 0x1f, 0x81, 0xf8, 0x00, // ---OOOOOO------OOOOOO---........ - 0x3f, 0xc3, 0xfc, 0x00, // --OOOOOOOO----OOOOOOOO--........ - 0x3f, 0xe7, 0xfc, 0x00, // --OOOOOOOOO--OOOOOOOOO--........ - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---........ - 0x0f, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOO----........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------........ - 0x01, 0xff, 0x80, 0x00, // -------OOOOOOOOOO-------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xe0, 0x00, // -----OOOOOOOOOOOOOO-----........ - 0x0f, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOO----........ - 0x1f, 0xff, 0xf8, 0x00, // ---OOOOOOOOOOOOOOOOOO---........ - 0x3f, 0xe7, 0xfc, 0x00, // --OOOOOOOOO--OOOOOOOOO--........ - 0x3f, 0xc3, 0xfc, 0x00, // --OOOOOOOO----OOOOOOOO--........ - 0x3f, 0x81, 0xf8, 0x00, // --OOOOOOO------OOOOOO---........ - 0x1f, 0x00, 0xf0, 0x00, // ---OOOOO--------OOOO----........ - 0x0e, 0x00, 0x60, 0x00, // ----OOO----------OO-----........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 105, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x0c, 0x00, 0x00, 0xc0, // ----OO------------------OO----.. - 0x1e, 0x00, 0x01, 0xe0, // ---OOOO----------------OOOO---.. - 0x3f, 0x00, 0x03, 0xf0, // --OOOOOO--------------OOOOOO--.. - 0x3f, 0x80, 0x07, 0xf8, // --OOOOOOO------------OOOOOOOO-.. - 0x7f, 0xc0, 0x0f, 0xf0, // -OOOOOOOOO----------OOOOOOOO--.. - 0x3f, 0xe0, 0x1f, 0xf0, // --OOOOOOOOO--------OOOOOOOOO--.. - 0x1f, 0xf0, 0x3f, 0xe0, // ---OOOOOOOOO------OOOOOOOOO---.. - 0x0f, 0xf8, 0x7f, 0xc0, // ----OOOOOOOOO----OOOOOOOOO----.. - 0x07, 0xfc, 0xff, 0x80, // -----OOOOOOOOO--OOOOOOOOO-----.. - 0x03, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOO------.. - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO-------.. - 0x00, 0xff, 0xfc, 0x00, // --------OOOOOOOOOOOOOO--------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------------.. - 0x00, 0x03, 0x00, 0x00, // --------------OO--------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 106, char width: 21 - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO---........... - 0x00, 0x07, 0xe0, 0x00, // -------------OOOOOO--........... - 0x00, 0x0f, 0xf0, 0x00, // ------------OOOOOOOO-........... - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---------........... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO----------........... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO----------........... - 0x0f, 0xf0, 0x00, 0x00, // ----OOOOOOOO---------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x1f, 0xf0, 0x00, // -----------OOOOOOOOO-........... - 0x00, 0x0f, 0xf0, 0x00, // ------------OOOOOOOO-........... - 0x00, 0x07, 0xe0, 0x00, // -------------OOOOOO--........... - 0x00, 0x03, 0xc0, 0x00, // --------------OOOO---........... - 0x00, 0x01, 0x80, 0x00, // ---------------OO----........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 107, char width: 21 - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------------........... - 0x3f, 0x80, 0x00, 0x00, // --OOOOOOO------------........... - 0x7f, 0xc0, 0x00, 0x00, // -OOOOOOOOO-----------........... - 0x3f, 0xe0, 0x00, 0x00, // --OOOOOOOOO----------........... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x3f, 0xe0, 0x00, // ----------OOOOOOOOO--........... - 0x00, 0x7f, 0xc0, 0x00, // ---------OOOOOOOOO---........... - 0x00, 0xff, 0x80, 0x00, // --------OOOOOOOOO----........... - 0x01, 0xff, 0x00, 0x00, // -------OOOOOOOOO-----........... - 0x03, 0xfe, 0x00, 0x00, // ------OOOOOOOOO------........... - 0x07, 0xfc, 0x00, 0x00, // -----OOOOOOOOO-------........... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO--------........... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO---------........... - 0x1f, 0xe0, 0x00, 0x00, // ---OOOOOOOO----------........... - 0x3f, 0xc0, 0x00, 0x00, // --OOOOOOOO-----------........... - 0x7f, 0x80, 0x00, 0x00, // -OOOOOOOO------------........... - 0x3f, 0x00, 0x00, 0x00, // --OOOOOO-------------........... - 0x1e, 0x00, 0x00, 0x00, // ---OOOO--------------........... - 0x0c, 0x00, 0x00, 0x00, // ----OO---------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - 0x00, 0x00, 0x00, 0x00, // ---------------------........... - - // ASCII: 108, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x03, 0x00, 0x00, // --------------OO--------------.. - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0xff, 0xfc, 0x00, // --------OOOOOOOOOOOOOO--------.. - 0x01, 0xff, 0xfe, 0x00, // -------OOOOOOOOOOOOOOOO-------.. - 0x03, 0xff, 0xff, 0x00, // ------OOOOOOOOOOOOOOOOOO------.. - 0x07, 0xfc, 0xff, 0x80, // -----OOOOOOOOO--OOOOOOOOO-----.. - 0x0f, 0xf8, 0x7f, 0xc0, // ----OOOOOOOOO----OOOOOOOOO----.. - 0x1f, 0xf0, 0x3f, 0xe0, // ---OOOOOOOOO------OOOOOOOOO---.. - 0x3f, 0xe0, 0x1f, 0xf0, // --OOOOOOOOO--------OOOOOOOOO--.. - 0x3f, 0xc0, 0x0f, 0xf0, // --OOOOOOOO----------OOOOOOOO--.. - 0x7f, 0x80, 0x07, 0xf8, // -OOOOOOOO------------OOOOOOOO-.. - 0x3f, 0x00, 0x03, 0xf0, // --OOOOOO--------------OOOOOO--.. - 0x1e, 0x00, 0x01, 0xe0, // ---OOOO----------------OOOO---.. - 0x0c, 0x00, 0x00, 0xc0, // ----OO------------------OO----.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 109, char width: 17 - 0x01, 0x80, 0x00, 0x00, // -------OO--------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-----............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---............... - 0x21, 0xde, 0x00, 0x00, // --O----OOO-OOOO--............... - 0x71, 0xcf, 0x00, 0x00, // -OOO---OOO--OOOO-............... - 0x79, 0xcf, 0x80, 0x00, // -OOOO--OOO--OOOOO............... - 0x3d, 0xde, 0x00, 0x00, // --OOOO-OOO-OOOO--............... - 0x1f, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOO---............... - 0x0f, 0xf8, 0x00, 0x00, // ----OOOOOOOOO----............... - 0x07, 0xf0, 0x00, 0x00, // -----OOOOOOO-----............... - 0x03, 0xe0, 0x00, 0x00, // ------OOOOO------............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x03, 0xf0, 0x00, 0x00, // ------OOOOOO-----............... - 0x07, 0xf8, 0x00, 0x00, // -----OOOOOOOO----............... - 0x0f, 0xfc, 0x00, 0x00, // ----OOOOOOOOOO---............... - 0x1d, 0xde, 0x00, 0x00, // ---OOO-OOO-OOOO--............... - 0x39, 0xcf, 0x00, 0x00, // --OOO--OOO--OOOO-............... - 0x71, 0xc7, 0x80, 0x00, // -OOO---OOO---OOOO............... - 0x71, 0xce, 0x00, 0x00, // -OOO---OOO--OOO--............... - 0x01, 0xfc, 0x00, 0x00, // -------OOOOOOO---............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x01, 0xf8, 0x00, 0x00, // -------OOOOOO----............... - 0x01, 0xf0, 0x00, 0x00, // -------OOOOO-----............... - 0x01, 0xe0, 0x00, 0x00, // -------OOOO------............... - 0x01, 0xc0, 0x00, 0x00, // -------OOO-------............... - 0x01, 0x80, 0x00, 0x00, // -------OO--------............... - 0x00, 0x00, 0x00, 0x00, // -----------------............... - - // ASCII: 110, char width: 17 - 0x0f, 0xe0, 0x00, 0x00, // ----OOOOOOO------............... - 0x1c, 0x70, 0x00, 0x00, // ---OOO---OOO-----............... - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO----............... - 0x38, 0x18, 0x00, 0x00, // --OOO------OO----............... - 0x30, 0x1b, 0x80, 0x00, // --OO-------OO-OOO............... - 0x30, 0x1b, 0x80, 0x00, // --OO-------OO-OOO............... - 0x30, 0x18, 0x00, 0x00, // --OO-------OO----............... - 0x30, 0x18, 0x00, 0x00, // --OO-------OO----............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x9b, 0x80, 0x00, // --OO--OOO--OO-OOO............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x33, 0x98, 0x00, 0x00, // --OO--OOO--OO----............... - 0x73, 0x9c, 0x00, 0x00, // -OOO--OOO--OOO---............... - 0x63, 0x8c, 0x00, 0x00, // -OO---OOO---OO---............... - 0xe7, 0xce, 0x00, 0x00, // OOO--OOOOO--OOO--............... - 0xcf, 0xe6, 0x00, 0x00, // OO--OOOOOOO--OO--............... - 0xcf, 0xe6, 0x00, 0x00, // OO--OOOOOOO--OO--............... - 0xcf, 0xe6, 0x00, 0x00, // OO--OOOOOOO--OO--............... - 0xe7, 0xce, 0x00, 0x00, // OOO--OOOOO--OOO--............... - 0xe3, 0x8c, 0x00, 0x00, // OOO---OOO---OO---............... - 0x70, 0x1c, 0x00, 0x00, // -OOO-------OOO---............... - 0x38, 0x38, 0x00, 0x00, // --OOO-----OOO----............... - 0x1f, 0xf0, 0x00, 0x00, // ---OOOOOOOOO-----............... - 0x07, 0xc0, 0x00, 0x00, // -----OOOOO-------............... - - // ASCII: 111, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x06, 0x00, // ---------------------OO-........ - 0x00, 0x00, 0x1f, 0x00, // -------------------OOOOO........ - 0x00, 0x00, 0x7e, 0x00, // -----------------OOOOOO-........ - 0x00, 0x01, 0xfe, 0x00, // ---------------OOOOOOOO-........ - 0x00, 0x07, 0xfc, 0x00, // -------------OOOOOOOOO--........ - 0x00, 0x1f, 0xfc, 0x00, // -----------OOOOOOOOOOO--........ - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---........ - 0x01, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOO---........ - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO----........ - 0x1f, 0xff, 0xf0, 0x00, // ---OOOOOOOOOOOOOOOOO----........ - 0x7f, 0xff, 0xe0, 0x00, // -OOOOOOOOOOOOOOOOOO-----........ - 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOO-----........ - 0xff, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOO------........ - 0x00, 0x1f, 0xc0, 0x00, // -----------OOOOOOO------........ - 0x00, 0x1f, 0x80, 0x00, // -----------OOOOOO-------........ - 0x00, 0x1f, 0x80, 0x00, // -----------OOOOOO-------........ - 0x00, 0x1f, 0x00, 0x00, // -----------OOOOO--------........ - 0x00, 0x1f, 0x00, 0x00, // -----------OOOOO--------........ - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO---------........ - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO---------........ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO----------........ - 0x00, 0x1c, 0x00, 0x00, // -----------OOO----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x18, 0x00, 0x00, // -----------OO-----------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 112, char width: 30 - 0x00, 0x07, 0x80, 0x00, // -------------OOOO-------------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x0f, 0xc0, 0x00, // ------------OOOOOO------------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x3f, 0xf0, 0x00, // ----------OOOOOOOOOO----------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0xf8, 0x7c, 0x00, // --------OOOOO----OOOOO--------.. - 0x00, 0xf8, 0x7c, 0x00, // --------OOOOO----OOOOO--------.. - 0x01, 0xf8, 0x7e, 0x00, // -------OOOOOO----OOOOOO-------.. - 0x01, 0xf8, 0x7e, 0x00, // -------OOOOOO----OOOOOO-------.. - 0x03, 0xf8, 0x7f, 0x00, // ------OOOOOOO----OOOOOOO------.. - 0x03, 0xf8, 0x7f, 0x00, // ------OOOOOOO----OOOOOOO------.. - 0x07, 0xf8, 0x7f, 0x80, // -----OOOOOOOO----OOOOOOOO-----.. - 0x07, 0xf8, 0x7f, 0x80, // -----OOOOOOOO----OOOOOOOO-----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x0f, 0xff, 0xff, 0xc0, // ----OOOOOOOOOOOOOOOOOOOOOO----.. - 0x1f, 0xf8, 0x7f, 0xe0, // ---OOOOOOOOOO----OOOOOOOOOO---.. - 0x1f, 0xf8, 0x7f, 0xe0, // ---OOOOOOOOOO----OOOOOOOOOO---.. - 0x3f, 0xf8, 0x7f, 0xf0, // --OOOOOOOOOOO----OOOOOOOOOOO--.. - 0x7f, 0xf8, 0x7f, 0xf8, // -OOOOOOOOOOOO----OOOOOOOOOOOO-.. - 0x7f, 0xf8, 0x7f, 0xf8, // -OOOOOOOOOOOO----OOOOOOOOOOOO-.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.. - 0x7f, 0xff, 0xff, 0xf8, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO-.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 113, char width: 24 - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO--------........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO----........ - 0x0f, 0xff, 0xf8, 0x00, // ----OOOOOOOOOOOOOOOOO---........ - 0x1f, 0xe3, 0xfc, 0x00, // ---OOOOOOOO---OOOOOOOO--........ - 0x3f, 0xc3, 0xfc, 0x00, // --OOOOOOOO----OOOOOOOO--........ - 0x7f, 0xc3, 0xfe, 0x00, // -OOOOOOOOO----OOOOOOOOO-........ - 0x7f, 0xe3, 0xfe, 0x00, // -OOOOOOOOOO---OOOOOOOOO-........ - 0x7f, 0xff, 0xff, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOO........ - 0xff, 0xff, 0xff, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0xff, 0xe3, 0xff, 0x00, // OOOOOOOOOOO---OOOOOOOOOO........ - 0x7f, 0xe3, 0xff, 0x00, // -OOOOOOOOOO---OOOOOOOOOO........ - 0x7f, 0xe3, 0xfe, 0x00, // -OOOOOOOOOO---OOOOOOOOO-........ - 0x7f, 0xe3, 0xfe, 0x00, // -OOOOOOOOOO---OOOOOOOOO-........ - 0x3f, 0xe3, 0xfc, 0x00, // --OOOOOOOOO---OOOOOOOO--........ - 0x1f, 0xe3, 0xfc, 0x00, // ---OOOOOOOO---OOOOOOOO--........ - 0x0f, 0xff, 0xf8, 0x00, // ----OOOOOOOOOOOOOOOOO---........ - 0x07, 0xff, 0xf0, 0x00, // -----OOOOOOOOOOOOOOO----........ - 0x03, 0xff, 0xc0, 0x00, // ------OOOOOOOOOOOO------........ - 0x00, 0x7f, 0x00, 0x00, // ---------OOOOOOO--------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - 0x00, 0x00, 0x00, 0x00, // ------------------------........ - - // ASCII: 114, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x00, 0x01, 0xf0, // OOO--OO----------------OOOOO--.. - 0xe7, 0x00, 0x01, 0xf8, // OOO--OOO---------------OOOOOO-.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xfc, // OOO--OOO---------------OOOOOOO.. - 0xe7, 0x00, 0x01, 0xf8, // OOO--OOO---------------OOOOOO-.. - 0xe6, 0x00, 0x01, 0xf0, // OOO--OO----------------OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 115, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x30, 0x01, 0xf0, // OOO--OO---OO-----------OOOOO--.. - 0xe7, 0x78, 0x01, 0xf8, // OOO--OOO-OOOO----------OOOOOO-.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xfc, // OOO--OOO-OOOO----------OOOOOOO.. - 0xe7, 0x78, 0x01, 0xf8, // OOO--OOO-OOOO----------OOOOOO-.. - 0xe6, 0x30, 0x01, 0xf0, // OOO--OO---OO-----------OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 116, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x33, 0x81, 0xf0, // OOO--OO---OO--OOO------OOOOO--.. - 0xe7, 0x7b, 0x81, 0xf8, // OOO--OOO-OOOO-OOO------OOOOOO-.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xfc, // OOO--OOO-OOOO-OOO------OOOOOOO.. - 0xe7, 0x7b, 0x81, 0xf8, // OOO--OOO-OOOO-OOO------OOOOOO-.. - 0xe6, 0x33, 0x81, 0xf0, // OOO--OO---OO--OOO------OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 117, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe6, 0x33, 0x9d, 0xf0, // OOO--OO---OO--OOO--OOO-OOOOO--.. - 0xe7, 0x7b, 0x9d, 0xf8, // OOO--OOO-OOOO-OOO--OOO-OOOOOO-.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xfc, // OOO--OOO-OOOO-OOO--OOO-OOOOOOO.. - 0xe7, 0x7b, 0x9d, 0xf8, // OOO--OOO-OOOO-OOO--OOO-OOOOOO-.. - 0xe6, 0x33, 0x99, 0xf0, // OOO--OO---OO--OOO--OO--OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 118, char width: 30 - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x7f, 0xff, 0xff, 0xc0, // -OOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0xf0, 0x00, 0x01, 0xe0, // OOOO-------------------OOOO---.. - 0xe7, 0xff, 0xfd, 0xf0, // OOO--OOOOOOOOOOOOOOOOO-OOOOO--.. - 0xe7, 0xff, 0xfd, 0xf8, // OOO--OOOOOOOOOOOOOOOOO-OOOOOO-.. - 0xe7, 0xf7, 0xfd, 0xfc, // OOO--OOOOOOO-OOOOOOOOO-OOOOOOO.. - 0xe7, 0xe3, 0xfd, 0xfc, // OOO--OOOOOO---OOOOOOOO-OOOOOOO.. - 0xe7, 0xc3, 0xfd, 0xfc, // OOO--OOOOO----OOOOOOOO-OOOOOOO.. - 0xe7, 0x70, 0x7d, 0xfc, // OOO--OOO-OOO-----OOOOO-OOOOOOO.. - 0xe7, 0xf8, 0xfd, 0xfc, // OOO--OOOOOOOO---OOOOOO-OOOOOOO.. - 0xe7, 0xff, 0xfd, 0xfc, // OOO--OOOOOOOOOOOOOOOOO-OOOOOOO.. - 0xe7, 0xff, 0xfd, 0xf8, // OOO--OOOOOOOOOOOOOOOOO-OOOOOO-.. - 0xe7, 0xff, 0xfd, 0xf0, // OOO--OOOOOOOOOOOOOOOOO-OOOOO--.. - 0xe0, 0x00, 0x01, 0xe0, // OOO--------------------OOOO---.. - 0xf0, 0x00, 0x01, 0xc0, // OOOO-------------------OOO----.. - 0xff, 0xff, 0xff, 0xc0, // OOOOOOOOOOOOOOOOOOOOOOOOOO----.. - 0x7f, 0xff, 0xff, 0x80, // -OOOOOOOOOOOOOOOOOOOOOOOO-----.. - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - 0x00, 0x00, 0x00, 0x00, // ------------------------------.. - - // ASCII: 119, char width: 30 - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x01, 0xf0, 0x3e, 0x00, // -------OOOOO------OOOOO-------.. - 0x07, 0xc0, 0x0f, 0x80, // -----OOOOO----------OOOOO-----.. - 0x0f, 0xc0, 0x0f, 0xc0, // ----OOOOOO----------OOOOOO----.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x7f, 0xf0, 0x7f, 0xf8, // -OOOOOOOOOOO-----OOOOOOOOOOOO-.. - 0x67, 0xe0, 0x1f, 0x98, // -OO--OOOOOO--------OOOOOO--OO-.. - 0xe3, 0xc0, 0x0f, 0x1c, // OOO---OOOO----------OOOO---OOO.. - 0xe1, 0x80, 0x06, 0x1c, // OOO----OO------------OO----OOO.. - 0xc1, 0x80, 0x06, 0x0c, // OO-----OO------------OO-----OO.. - 0xc3, 0x80, 0x07, 0x0c, // OO----OOO------------OOO----OO.. - 0xc3, 0x80, 0x07, 0x0c, // OO----OOO------------OOO----OO.. - 0xc3, 0x80, 0x07, 0x0c, // OO----OOO------------OOO----OO.. - 0xc1, 0x80, 0x06, 0x0c, // OO-----OO------------OO-----OO.. - 0xe1, 0x80, 0x06, 0x1c, // OOO----OO------------OO----OOO.. - 0xe3, 0xc0, 0x0f, 0x1c, // OOO---OOOO----------OOOO---OOO.. - 0x67, 0xe0, 0x1f, 0x98, // -OO--OOOOOO--------OOOOOO--OO-.. - 0x7f, 0xf8, 0x7f, 0xf8, // -OOOOOOOOOOOO----OOOOOOOOOOOO-.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x3f, 0xff, 0xff, 0xf0, // --OOOOOOOOOOOOOOOOOOOOOOOOOO--.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x1f, 0xe0, 0x1f, 0xe0, // ---OOOOOOOO--------OOOOOOOO---.. - 0x0f, 0xc0, 0x0f, 0xc0, // ----OOOOOO----------OOOOOO----.. - 0x07, 0xc0, 0x07, 0x80, // -----OOOOO-----------OOOO-----.. - 0x01, 0xf0, 0x3e, 0x00, // -------OOOOO------OOOOO-------.. - 0x00, 0x7f, 0xf8, 0x00, // ---------OOOOOOOOOOOO---------.. - 0x00, 0x1f, 0xe0, 0x00, // -----------OOOOOOOO-----------.. - - // ASCII: 120, char width: 26 - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x00, 0x1e, 0x00, 0x00, // -----------OOOO-----------...... - 0x07, 0x1e, 0x38, 0x00, // -----OOO---OOOO---OOO-----...... - 0x0f, 0x9e, 0x7c, 0x00, // ----OOOOO--OOOO--OOOOO----...... - 0x1f, 0x9e, 0x7e, 0x00, // ---OOOOOO--OOOO--OOOOOO---...... - 0x3f, 0x1e, 0x3f, 0x00, // --OOOOOO---OOOO---OOOOOO--...... - 0x7e, 0x1e, 0x1f, 0x00, // -OOOOOO----OOOO----OOOOO--...... - 0x7c, 0x1e, 0x0f, 0x80, // -OOOOO-----OOOO-----OOOOO-...... - 0x78, 0x1e, 0x0f, 0x80, // -OOOO------OOOO-----OOOOO-...... - 0xf8, 0x1e, 0x07, 0x80, // OOOOO------OOOO------OOOO-...... - 0xf8, 0x1e, 0x07, 0xc0, // OOOOO------OOOO------OOOOO...... - 0xf0, 0x1c, 0x07, 0xc0, // OOOO-------OOO-------OOOOO...... - 0xf0, 0x00, 0x07, 0xc0, // OOOO-----------------OOOOO...... - 0xf0, 0x00, 0x07, 0xc0, // OOOO-----------------OOOOO...... - 0xf8, 0x00, 0x07, 0xc0, // OOOOO----------------OOOOO...... - 0xf8, 0x00, 0x07, 0x80, // OOOOO----------------OOOO-...... - 0x78, 0x00, 0x0f, 0x80, // -OOOO---------------OOOOO-...... - 0x7c, 0x00, 0x0f, 0x80, // -OOOOO--------------OOOOO-...... - 0x3e, 0x00, 0x1f, 0x00, // --OOOOO------------OOOOO--...... - 0x3f, 0x00, 0x3f, 0x00, // --OOOOOO----------OOOOOO--...... - 0x1f, 0xc0, 0xfe, 0x00, // ---OOOOOOO------OOOOOOO---...... - 0x0f, 0xff, 0xfc, 0x00, // ----OOOOOOOOOOOOOOOOOO----...... - 0x07, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOO-----...... - 0x01, 0xff, 0xe0, 0x00, // -------OOOOOOOOOOOO-------...... - 0x00, 0x7f, 0x80, 0x00, // ---------OOOOOOOO---------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 121, char width: 26 - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO----------...... - 0x06, 0x3f, 0x18, 0x00, // -----OO---OOOOOO---OO-----...... - 0x0f, 0x3f, 0x3c, 0x00, // ----OOOO--OOOOOO--OOOO----...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x3f, 0xff, 0xfe, 0x00, // --OOOOOOOOOOOOOOOOOOOOO---...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x0f, 0xff, 0xfc, 0x00, // ----OOOOOOOOOOOOOOOOOO----...... - 0x0f, 0xe1, 0xfc, 0x00, // ----OOOOOOO----OOOOOOO----...... - 0x3f, 0xc0, 0xff, 0x00, // --OOOOOOOO------OOOOOOOO--...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0xff, 0x80, 0x7f, 0xc0, // OOOOOOOOO--------OOOOOOOOO...... - 0x7f, 0xc0, 0xff, 0x00, // -OOOOOOOOO------OOOOOOOO--...... - 0x0f, 0xe1, 0xfc, 0x00, // ----OOOOOOO----OOOOOOO----...... - 0x0f, 0xff, 0xfc, 0x00, // ----OOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfc, 0x00, // ---OOOOOOOOOOOOOOOOOOO----...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x3f, 0xff, 0xff, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO--...... - 0x1f, 0xff, 0xfe, 0x00, // ---OOOOOOOOOOOOOOOOOOOO---...... - 0x0f, 0x3f, 0x3c, 0x00, // ----OOOO--OOOOOO--OOOO----...... - 0x06, 0x3f, 0x18, 0x00, // -----OO---OOOOOO---OO-----...... - 0x00, 0x3f, 0x00, 0x00, // ----------OOOOOO----------...... - 0x00, 0x3e, 0x00, 0x00, // ----------OOOOO-----------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - 0x00, 0x00, 0x00, 0x00, // --------------------------...... - - // ASCII: 122, char width: 34 - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x0f, 0xfc, 0x00, // ------------OOOOOOOOOO---------- - 0x00, 0xff, 0xff, 0xc0, // --------OOOOOOOOOOOOOOOOOO------ - 0x03, 0xff, 0xff, 0xf0, // ------OOOOOOOOOOOOOOOOOOOOOO---- - 0x0f, 0xff, 0xff, 0xfc, // ----OOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0x1f, 0xf8, 0x03, 0xff, // ---OOOOOOOOOO---------OOOOOOOOOO - 0x7f, 0xc0, 0x00, 0x7f, // -OOOOOOOOO---------------OOOOOOO - 0x7f, 0x07, 0xf8, 0x1f, // -OOOOOOO-----OOOOOOOO------OOOOO - 0x7c, 0x3f, 0xff, 0x0f, // -OOOOO----OOOOOOOOOOOOOO----OOOO - 0x18, 0xff, 0xff, 0xc3, // ---OO---OOOOOOOOOOOOOOOOOO----OO - 0x01, 0xff, 0xff, 0xe0, // -------OOOOOOOOOOOOOOOOOOOO----- - 0x03, 0xfc, 0x0f, 0xf8, // ------OOOOOOOO------OOOOOOOOO--- - 0x07, 0xf0, 0x03, 0xf8, // -----OOOOOOO----------OOOOOOO--- - 0x03, 0xc0, 0x00, 0xf0, // ------OOOO--------------OOOO---- - 0x01, 0x83, 0xf0, 0x60, // -------OO-----OOOOOO-----OO----- - 0x00, 0x1f, 0xfe, 0x00, // -----------OOOOOOOOOOOO--------- - 0x00, 0x3f, 0xff, 0x80, // ----------OOOOOOOOOOOOOOO------- - 0x00, 0x3f, 0xff, 0x00, // ----------OOOOOOOOOOOOOO-------- - 0x00, 0x1e, 0x0e, 0x00, // -----------OOOO-----OOO--------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO------------- - 0x00, 0x03, 0xf0, 0x00, // --------------OOOOOO------------ - 0x00, 0x01, 0xe0, 0x00, // ---------------OOOO------------- - 0x00, 0x00, 0xc0, 0x00, // ----------------OO-------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- - 0x00, 0x00, 0x00, 0x00, // -------------------------------- -}; - -static const uint8_t symbol_30_widths[26] = -{ - 30, 26, 32, 24, 26, 26, 30, 24, - 30, 21, 21, 30, 17, 17, 24, 30, - 24, 30, 30, 30, 30, 30, 30, 26, - 26, 34, -}; - -static const font_t symbol_30_dsc = -{ - 26, // Letter count - 97, // First ascii code - 4, // Letters width (bytes) - 30, // Letters height (row) - 0, // Fixed width or 0 if variable - symbol_30_widths, - symbol_30_bitmaps -}; - -const font_t * symbol_30_get_dsc(void) -{ - return &symbol_30_dsc; -} - - -#endif diff --git a/lv_misc/fonts/symbol_30.h b/lv_misc/fonts/symbol_30.h deleted file mode 100644 index 5bccf05aa..000000000 --- a/lv_misc/fonts/symbol_30.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef SYMBOL_30_H -#define SYMBOL_30_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_SYMBOL_30 != 0 - -#include -#include "../font.h" - -const font_t * symbol_30_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/symbol_60.c b/lv_misc/fonts/symbol_60.c deleted file mode 100644 index f14be4c6b..000000000 --- a/lv_misc/fonts/symbol_60.c +++ /dev/null @@ -1,1648 +0,0 @@ -#include "lv_conf.h" -#if USE_FONT_SYMBOL_60 != 0 - -#include -#include "../font.h" - -static const uint8_t symbol_60_bitmaps[12480] = -{ - // ASCII: 97, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------.... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x1f, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------.... - 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, // -OOOO--------------------------------------------------OOOO-.... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, // -OOOO--------------------------------------------------OOOO-.... - 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xe0, // -OOOO--------------------------------------------------OOOO-.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc0, // --OOOO------------------------------------------------OOOO--.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x07, 0x03, 0xc0, // --OOOO---------------------------------------OOO------OOOO--.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x83, 0xc0, // --OOOO--------------------------------------OOOOO-----OOOO--.... - 0x3c, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x83, 0xc0, // --OOOO--------------------------------------OOOOO-----OOOO--.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x87, 0x80, // ---OOOO-------------------------------------OOOOO----OOOO---.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x07, 0x07, 0x80, // ---OOOO--------------------------------------OOO-----OOOO---.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, // ---OOOO----------------------------------------------OOOO---.... - 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, // ---OOOO----------------------------------------------OOOO---.... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, // ----OOOO--------------------------------------------OOOO----.... - 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, // ----OOOO--------------------------------------------OOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 98, char width: 51 - 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfc, 0x30, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OO---------------............. - 0xff, 0xff, 0xff, 0xfc, 0x38, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOO--------------............. - 0xff, 0xff, 0xff, 0xfc, 0x3c, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOO-------------............. - 0xff, 0xff, 0xff, 0xfc, 0x3e, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOO------------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOO-----------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0x80, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOO----------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xc0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOO---------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xe0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOO--------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf0, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOO-------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xf8, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOO------............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xfc, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOO-----............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOO----............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOO---............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOO--............. - 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOO-............. - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------------............. - 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------------............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xf8, 0x00, 0x00, 0x03, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOO-------------------------OOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............. - - // ASCII: 99, char width: 64 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x07, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO------------------------------------------- - 0x1f, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOO----------------------------------------- - 0x3f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOO---------------------------------------- - 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOO--------------------------------------- - 0x7f, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOO--------------------------------------- - 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOO--------------------------------------- - 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOO-------------------------------------- - 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOO-------------------------------------- - 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOO-------------------------------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOO-------------------------------------------- - 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOO----------------------------------------------- - 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOO------------------------------------------------- - 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOO-------------------------------------------------- - 0xff, 0xf8, 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, // OOOOOOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO- - 0xff, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfe, // OOOOOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO- - 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, // OOOOOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-- - 0xff, 0x03, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, // OOOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--- - 0xfe, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---- - 0xfe, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // OOOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----- - 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // OOOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // OOOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------- - 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // OOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------- - 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, // OO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------- - 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // O------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------- - 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // O-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------- - 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------- - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------- - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------- - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------- - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - - // ASCII: 100, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOO----------------................. - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO---------------................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------................. - 0x00, 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOO-------------................. - 0x00, 0x07, 0xc0, 0x07, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOO-----------OOOOO-------------................. - 0x00, 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOO-------------OOOOO------------................. - 0x00, 0x0f, 0x80, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOO-------------OOOOO------------................. - 0x00, 0x0f, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, // ------------OOOO---------------OOOOO-----------................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x87, 0x83, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO-----OOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x87, 0x87, 0xc3, 0xc3, 0xe0, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO----OOOO----OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x0f, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // ----OOOOO-----------------------------OOOOO----................. - 0x07, 0x80, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, // -----OOOO-----------------------------OOOOO----................. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 101, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x7f, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------............. - 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------............. - 0xf0, 0xff, 0xfc, 0x03, 0xcf, 0xc0, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO--OOOOOO---------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc7, 0xe0, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO---OOOOOO--------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc3, 0xf0, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO----OOOOOO-------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc1, 0xf8, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-----OOOOOO------............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0xfc, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO------OOOOOO-----............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x7e, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-------OOOOOO----............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x3f, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO--------OOOOOO---............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x1f, 0x80, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO---------OOOOOO--............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x0f, 0xc0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO----------OOOOOO-............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x07, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-----------OOOOOO............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x03, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO------------OOOOO............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x01, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-------------OOOO............. - 0xf0, 0xff, 0xfc, 0x03, 0xc0, 0x01, 0xe0, 0x00, // OOOO----OOOOOOOOOOOOOO--------OOOO-------------OOOO............. - 0xf0, 0xff, 0xff, 0xff, 0xc0, 0x01, 0xf0, 0x00, // OOOO----OOOOOOOOOOOOOOOOOOOOOOOOOO-------------OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xc0, 0x01, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOO-------------OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xc0, 0x01, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOO-------------OOOOO............ - 0xf0, 0x3f, 0xff, 0xff, 0x80, 0x01, 0xf0, 0x00, // OOOO------OOOOOOOOOOOOOOOOOOOOOOO--------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // OOOO-------------------------------------------OOOOO............ - 0xf0, 0x3f, 0xff, 0xff, 0xff, 0x81, 0xf0, 0x00, // OOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xc1, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----OOOOO............ - 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xe1, 0xf0, 0x00, // OOOO-----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOO............ - 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xf0, 0x00, // OOOO----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xf0, 0xf8, 0x00, 0x00, 0x03, 0xe1, 0xf0, 0x00, // OOOO----OOOOO-------------------------OOOOO----OOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO............. - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 102, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x0f, 0x80, 0x00, 0x00, // ------------------------------------OOOOO----------............. - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xc0, 0x00, 0x00, // -----------------------------------OOOOOOO---------............. - 0x00, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, // ----------------------------------OOOOOOOOO--------............. - 0x00, 0x00, 0x00, 0x00, 0x7f, 0xf0, 0x00, 0x00, // ---------------------------------OOOOOOOOOOO-------............. - 0x00, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x00, 0x00, // --------------------------------OOOOOOOOOOOOO------............. - 0x00, 0x00, 0x00, 0x01, 0xff, 0xfc, 0x00, 0x00, // -------------------------------OOOOOOOOOOOOOOO-----............. - 0x00, 0x00, 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, // ------------------------------OOOOOOOOOOOOOOOOO----............. - 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, // -------------------------------OOOOOOOOOOOOOOOOO---............. - 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, // --------------------------------OOOOOOOOOOOOOOOOO--............. - 0x00, 0x00, 0x00, 0x10, 0x7f, 0xff, 0xc0, 0x00, // ---------------------------O-----OOOOOOOOOOOOOOOOO-............. - 0x00, 0x00, 0x00, 0x38, 0x3f, 0xff, 0xc0, 0x00, // --------------------------OOO-----OOOOOOOOOOOOOOOO-............. - 0x00, 0x00, 0x00, 0x7c, 0x1f, 0xff, 0xe0, 0x00, // -------------------------OOOOO-----OOOOOOOOOOOOOOOO............. - 0x00, 0x00, 0x00, 0xfe, 0x0f, 0xff, 0xe0, 0x00, // ------------------------OOOOOOO-----OOOOOOOOOOOOOOO............. - 0x00, 0x00, 0x01, 0xff, 0x07, 0xff, 0xe0, 0x00, // -----------------------OOOOOOOOO-----OOOOOOOOOOOOOO............. - 0x00, 0x00, 0x03, 0xff, 0x83, 0xff, 0xc0, 0x00, // ----------------------OOOOOOOOOOO-----OOOOOOOOOOOO-............. - 0x00, 0x00, 0x07, 0xf3, 0xc1, 0xff, 0x80, 0x00, // ---------------------OOOOOOO--OOOO-----OOOOOOOOOO--............. - 0x00, 0x00, 0x0f, 0xe7, 0xe0, 0xff, 0x00, 0x00, // --------------------OOOOOOO--OOOOOO-----OOOOOOOO---............. - 0x00, 0x00, 0x1f, 0xcf, 0xf0, 0x7e, 0x00, 0x00, // -------------------OOOOOOO--OOOOOOOO-----OOOOOO----............. - 0x00, 0x00, 0x3f, 0x9f, 0xf8, 0x3c, 0x00, 0x00, // ------------------OOOOOOO--OOOOOOOOOO-----OOOO-----............. - 0x00, 0x00, 0x7f, 0x3f, 0xfc, 0x18, 0x00, 0x00, // -----------------OOOOOOO--OOOOOOOOOOOO-----OO------............. - 0x00, 0x00, 0xfe, 0x7f, 0xfe, 0x10, 0x00, 0x00, // ----------------OOOOOOO--OOOOOOOOOOOOOO----O-------............. - 0x00, 0x01, 0xfc, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------------OOOOOOO--OOOOOOOOOOOOOOOO-----------............. - 0x00, 0x03, 0xf9, 0xff, 0xff, 0xc0, 0x00, 0x00, // --------------OOOOOOO--OOOOOOOOOOOOOOOOOOO---------............. - 0x00, 0x07, 0xf3, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------OOOOOOO--OOOOOOOOOOOOOOOOOOO----------............. - 0x00, 0x0f, 0xe7, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------OOOOOOO--OOOOOOOOOOOOOOOOOOO-----------............. - 0x00, 0x1f, 0xcf, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----------OOOOOOO--OOOOOOOOOOOOOOOOOOO------------............. - 0x00, 0x3f, 0x9f, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOO--OOOOOOOOOOOOOOOOOOO-------------............. - 0x00, 0x7f, 0x3f, 0xff, 0xf8, 0x00, 0x00, 0x00, // ---------OOOOOOO--OOOOOOOOOOOOOOOOOOO--------------............. - 0x00, 0xfe, 0x7f, 0xff, 0xf0, 0x00, 0x00, 0x00, // --------OOOOOOO--OOOOOOOOOOOOOOOOOOO---------------............. - 0x01, 0xfc, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------OOOOOOO--OOOOOOOOOOOOOOOOOOO----------------............. - 0x03, 0xf9, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // ------OOOOOOO--OOOOOOOOOOOOOOOOOOO-----------------............. - 0x07, 0xf3, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // -----OOOOOOO--OOOOOOOOOOOOOOOOOOO------------------............. - 0x0f, 0xe7, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOO--OOOOOOOOOOOOOOOOOOO-------------------............. - 0x1f, 0xcf, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO--OOOOOOOOOOOOOOOOOOO--------------------............. - 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------............. - 0x7f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------------............. - 0xfe, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // OOOOOOO-OOOOOOOOOOOOOOOOOOOO-----------------------............. - 0xfc, 0x7f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // OOOOOO---OOOOOOOOOOOOOOOOOO------------------------............. - 0xf8, 0x3f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // OOOOO-----OOOOOOOOOOOOOOOO-------------------------............. - 0xf0, 0x1f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // OOOO-------OOOOOOOOOOOOOO--------------------------............. - 0xf0, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO--------OOOOOOOOOOOO---------------------------............. - 0xf0, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOO---------OOOOOOOOOO----------------------------............. - 0xff, 0x83, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO-----OOOOOOOO-----------------------------............. - 0xff, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO------OOOOOO------------------------------............. - 0xff, 0x83, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO-----OOOOOO-------------------------------............. - 0xff, 0x83, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO-----OOOOO--------------------------------............. - 0xff, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOO----OOOOO---------------------------------............. - 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOO----------------------------------............. - 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOO-----------------------------------............. - 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOO------------------------------------............. - 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOO------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 103, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc0, 0x00, // ----------------------------------------------OOOO----------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xe0, 0x00, // ---------------------------------------------OOOOOO---------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xf0, 0x00, // --------------------------------------------OOOOOOOO--------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0xf8, 0x00, // -------------------------------------------OOOOOOOOOO-------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xfc, 0x00, // ------------------------------------------OOOOOOOOOOOO------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, // -----------------------------------------OOOOOOOOOOOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, // ----------------------------------------OOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, // ---------------------------------------OOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x03, 0xff, 0xff, 0x00, // --------------------------------------OOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0x00, // -------------------------------------OOOOOOOOOOOOOOOOOOO----.... - 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0xfe, 0x00, // ------------------------------------OOOOOOOOOOOOOOOOOOO-----.... - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xff, 0xfc, 0x00, // -----------------------------------OOOOOOOOOOOOOOOOOOO------.... - 0x00, 0x3c, 0x00, 0x00, 0x3f, 0xff, 0xf8, 0x00, // ----------OOOO--------------------OOOOOOOOOOOOOOOOOOO-------.... - 0x00, 0x7e, 0x00, 0x00, 0x7f, 0xff, 0xf0, 0x00, // ---------OOOOOO------------------OOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x00, // --------OOOOOOOO----------------OOOOOOOOOOOOOOOOOOO---------.... - 0x01, 0xff, 0x80, 0x01, 0xff, 0xff, 0xc0, 0x00, // -------OOOOOOOOOO--------------OOOOOOOOOOOOOOOOOOO----------.... - 0x03, 0xff, 0xc0, 0x03, 0xff, 0xff, 0x80, 0x00, // ------OOOOOOOOOOOO------------OOOOOOOOOOOOOOOOOOO-----------.... - 0x07, 0xff, 0xe0, 0x07, 0xff, 0xff, 0x00, 0x00, // -----OOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOOOO------------.... - 0x0f, 0xff, 0xf0, 0x0f, 0xff, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOO-------------.... - 0x0f, 0xff, 0xf8, 0x1f, 0xff, 0xfc, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOOOO--------------.... - 0x0f, 0xff, 0xf8, 0x3f, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOOOO---------------.... - 0x0f, 0xff, 0xfc, 0x7f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOOO----------------.... - 0x07, 0xff, 0xfe, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-OOOOOOOOOOOOOOOOOOO-----------------.... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x7f, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x1f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------------------.... - 0x00, 0x0f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOO------------------------.... - 0x00, 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOO-------------------------.... - 0x00, 0x03, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOO--------------------------.... - 0x00, 0x01, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOO---------------------------.... - 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOO----------------------------.... - 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOO-----------------------------.... - 0x00, 0x00, 0x3f, 0xfc, 0x00, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOO------------------------------.... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO-------------------------------.... - 0x00, 0x00, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOO--------------------------------.... - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO---------------------------------.... - 0x00, 0x00, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOO----------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 104, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x38, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, // ----------OOO---------------------OOO----------................. - 0x00, 0x7c, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---------OOOOO-------------------OOOOOO--------................. - 0x00, 0xfe, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOO-----------------OOOOOOOO-------................. - 0x01, 0xff, 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOO---------------OOOOOOOOOO------................. - 0x03, 0xff, 0x80, 0x03, 0xff, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOO-------------OOOOOOOOOOOO-----................. - 0x07, 0xff, 0xc0, 0x07, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOO-----------OOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xe0, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xf0, 0x1f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOO---................. - 0x0f, 0xff, 0xf8, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xfc, 0x7f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOO----................. - 0x07, 0xff, 0xfe, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOO-OOOOOOOOOOOOOOOOOO-----................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x00, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0x00, 0x3f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x00, 0x0f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOO------------................. - 0x00, 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOO-------------................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------................. - 0x00, 0x03, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOO--------------................. - 0x00, 0x07, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOO-------------................. - 0x00, 0x0f, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOO------------................. - 0x00, 0x1f, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x00, 0x3f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0x00, 0x7f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0x00, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x01, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x03, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x0f, 0xff, 0xfc, 0x7f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xf8, 0x3f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO----................. - 0x0f, 0xff, 0xf0, 0x1f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOO---................. - 0x0f, 0xff, 0xe0, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ----OOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOO----................. - 0x07, 0xff, 0xc0, 0x07, 0xff, 0xe0, 0x00, 0x00, // -----OOOOOOOOOOOOO-----------OOOOOOOOOOOOOO----................. - 0x03, 0xff, 0x80, 0x03, 0xff, 0xc0, 0x00, 0x00, // ------OOOOOOOOOOO-------------OOOOOOOOOOOO-----................. - 0x01, 0xff, 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, // -------OOOOOOOOO---------------OOOOOOOOOO------................. - 0x00, 0xfe, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, // --------OOOOOOO-----------------OOOOOOOO-------................. - 0x00, 0x7c, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, // ---------OOOOO-------------------OOOOOO--------................. - 0x00, 0x38, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, // ----------OOO---------------------OOOO---------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 105, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // ---------OOO------------------------------------OOO---------.... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // --------OOOOO----------------------------------OOOOO--------.... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // -------OOOOOOO--------------------------------OOOOOOO-------.... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, // ------OOOOOOOOO------------------------------OOOOOOOOO------.... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x0f, 0xfe, 0x00, // -----OOOOOOOOOOO----------------------------OOOOOOOOOOO-----.... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x1f, 0xff, 0x00, // ----OOOOOOOOOOOOO--------------------------OOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x3f, 0xff, 0x80, // ---OOOOOOOOOOOOOOO------------------------OOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x7f, 0xff, 0x80, // ---OOOOOOOOOOOOOOOO----------------------OOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOO--------------------OOOOOOOOOOOOOOOOO---.... - 0x0f, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOO------------------OOOOOOOOOOOOOOOOO----.... - 0x07, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOO-----.... - 0x03, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO------.... - 0x01, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOOO-------.... - 0x00, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOO--------.... - 0x00, 0x7f, 0xff, 0xc0, 0x3f, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOO---------.... - 0x00, 0x3f, 0xff, 0xe0, 0x7f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOO----------.... - 0x00, 0x1f, 0xff, 0xf0, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x0f, 0xff, 0xf9, 0xff, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOOO------------.... - 0x00, 0x07, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------.... - 0x00, 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------.... - 0x00, 0x01, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO--------------------------.... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO---------------------------.... - 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ----------------------------OOOO----------------------------.... - 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -----------------------------OO-----------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 106, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // -------------------------------OOO---------..................... - 0x00, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------------------------OOOOO--------..................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOOO------..................... - 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ---------------------------OOOOOOOOOOO-----..................... - 0x00, 0x00, 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x7f, 0xfe, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0x7f, 0xff, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOO---..................... - 0x00, 0x00, 0x00, 0x3f, 0xfe, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOOOOOO----..................... - 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, 0x00, // ---------------------------OOOOOOOOOOO-----..................... - 0x00, 0x00, 0x00, 0x0f, 0xf8, 0x00, 0x00, 0x00, // ----------------------------OOOOOOOOO------..................... - 0x00, 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, // -----------------------------OOOOOOO-------..................... - 0x00, 0x00, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, // ------------------------------OOOOO--------..................... - 0x00, 0x00, 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, // -------------------------------OOO---------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 107, char width: 43 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOO-------------------------------..................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------------------------..................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------------------------..................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------------------------..................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------------..................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO--------------------------..................... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOO-------------------------..................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------------------------..................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----------------------..................... - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO----------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOO-----..................... - 0x00, 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOO------..................... - 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOO-------..................... - 0x00, 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOO--------..................... - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO---------..................... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------..................... - 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOO-----------..................... - 0x00, 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOO------------..................... - 0x00, 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOO-------------..................... - 0x00, 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--------------..................... - 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOO---------------..................... - 0x00, 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOO----------------..................... - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO-----------------..................... - 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOO------------------..................... - 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOO-------------------..................... - 0x03, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOO--------------------..................... - 0x07, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOO---------------------..................... - 0x0f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO----------------------..................... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO-----------------------..................... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOO------------------------..................... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOO-------------------------..................... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOOOOOOO--------------------------..................... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOO---------------------------..................... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOOO----------------------------..................... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOO-----------------------------..................... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOO------------------------------..................... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOO-------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------..................... - - // ASCII: 108, char width: 60 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, // -----------------------------OO-----------------------------.... - 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ----------------------------OOOO----------------------------.... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO---------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO--------------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOOO-----------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x01, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------.... - 0x00, 0x03, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------.... - 0x00, 0x07, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------------.... - 0x00, 0x0f, 0xff, 0xf9, 0xff, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOOOO------------.... - 0x00, 0x1f, 0xff, 0xf0, 0xff, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOO-----------.... - 0x00, 0x3f, 0xff, 0xe0, 0x7f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOOO------OOOOOOOOOOOOOOOOO----------.... - 0x00, 0x7f, 0xff, 0xc0, 0x3f, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOO---------.... - 0x00, 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOO----------OOOOOOOOOOOOOOOOO--------.... - 0x01, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOO------------------OOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOO--------------------OOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xe0, 0x00, 0x00, 0x7f, 0xff, 0x80, // ---OOOOOOOOOOOOOOOO----------------------OOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xc0, 0x00, 0x00, 0x3f, 0xff, 0x80, // ---OOOOOOOOOOOOOOO------------------------OOOOOOOOOOOOOOO---.... - 0x0f, 0xff, 0x80, 0x00, 0x00, 0x1f, 0xff, 0x00, // ----OOOOOOOOOOOOO--------------------------OOOOOOOOOOOOO----.... - 0x07, 0xff, 0x00, 0x00, 0x00, 0x0f, 0xfe, 0x00, // -----OOOOOOOOOOO----------------------------OOOOOOOOOOO-----.... - 0x03, 0xfe, 0x00, 0x00, 0x00, 0x07, 0xfc, 0x00, // ------OOOOOOOOO------------------------------OOOOOOOOO------.... - 0x01, 0xfc, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // -------OOOOOOO--------------------------------OOOOOOO-------.... - 0x00, 0xf8, 0x00, 0x00, 0x00, 0x01, 0xf0, 0x00, // --------OOOOO----------------------------------OOOOO--------.... - 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, // ---------OOO------------------------------------OOO---------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 109, char width: 34 - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------O------------------.............................. - 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OO-----------------.............................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOO----------------.............................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO--------------.............................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-------------.............................. - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO------------.............................. - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-----------.............................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO----------.............................. - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO---------.............................. - 0x00, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOO--------.............................. - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO-------.............................. - 0x00, 0x01, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOO------.............................. - 0x00, 0x01, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-OOOOOOOO-----.............................. - 0x0c, 0x01, 0xf3, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OO---------OOOOO--OOOOOOOO----.............................. - 0x1e, 0x01, 0xf1, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------OOOOO---OOOOOOOO---.............................. - 0x3f, 0x01, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------OOOOO----OOOOOOOO--.............................. - 0x7f, 0x81, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, // -OOOOOOOO------OOOOO-----OOOOOOOO-.............................. - 0x3f, 0xc1, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // --OOOOOOOO-----OOOOO-----OOOOOOO--.............................. - 0x1f, 0xe1, 0xf0, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOO----OOOOO----OOOOOOO---.............................. - 0x0f, 0xf1, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO---OOOOO---OOOOOOO----.............................. - 0x07, 0xf9, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--OOOOO--OOOOOOO-----.............................. - 0x03, 0xfd, 0xf7, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOO-OOOOOOO------.............................. - 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOO-------.............................. - 0x00, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOO--------.............................. - 0x00, 0x7f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOO---------.............................. - 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOO----------.............................. - 0x00, 0x1f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOO-----------.............................. - 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOO------------.............................. - 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOO-------------.............................. - 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------OOOOOOOOO------------.............................. - 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOO-----------.............................. - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOO----------.............................. - 0x00, 0x3f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOO---------.............................. - 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOO--------.............................. - 0x00, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOO-------.............................. - 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOO------.............................. - 0x03, 0xfd, 0xf7, 0xf8, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOOO-OOOOO-OOOOOOOO-----.............................. - 0x07, 0xf9, 0xf3, 0xfc, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOO--OOOOO--OOOOOOOO----.............................. - 0x0f, 0xf1, 0xf1, 0xfe, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO---OOOOO---OOOOOOOO---.............................. - 0x1f, 0xe1, 0xf0, 0xff, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOOO----OOOOO----OOOOOOOO--.............................. - 0x3f, 0xc1, 0xf0, 0x7f, 0x80, 0x00, 0x00, 0x00, // --OOOOOOOO-----OOOOO-----OOOOOOOO-.............................. - 0x7f, 0x81, 0xf0, 0x7f, 0x00, 0x00, 0x00, 0x00, // -OOOOOOOO------OOOOO-----OOOOOOO--.............................. - 0x3f, 0x01, 0xf0, 0xfe, 0x00, 0x00, 0x00, 0x00, // --OOOOOO-------OOOOO----OOOOOOO---.............................. - 0x1e, 0x01, 0xf1, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---OOOO--------OOOOO---OOOOOOO----.............................. - 0x0c, 0x01, 0xf3, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----OO---------OOOOO--OOOOOOO-----.............................. - 0x00, 0x01, 0xf7, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO-OOOOOOO------.............................. - 0x00, 0x01, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOO-------.............................. - 0x00, 0x01, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOO--------.............................. - 0x00, 0x01, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOO---------.............................. - 0x00, 0x01, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOOO----------.............................. - 0x00, 0x01, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOOO-----------.............................. - 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOOO------------.............................. - 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOOO-------------.............................. - 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOOO--------------.............................. - 0x00, 0x01, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOOO---------------.............................. - 0x00, 0x01, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OOO----------------.............................. - 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------OO-----------------.............................. - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------O------------------.............................. - 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------O------------------.............................. - - // ASCII: 110, char width: 34 - 0x00, 0x0f, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------OOOOOO----------------.............................. - 0x00, 0x7f, 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOO-------------.............................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO------------.............................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----------.............................. - 0x03, 0xf8, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOOOO----OOOOOOO----------.............................. - 0x03, 0xe0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, // ------OOOOO--------OOOOO----------.............................. - 0x07, 0xc0, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOO----------OOOOO---------.............................. - 0x07, 0x80, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOO------------OOOO---------.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--OOOOOO.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x80, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO------------OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xcf, 0xc0, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--OOOOOO.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x0f, 0x87, 0x87, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOO----OOOO----OOOOO--------.............................. - 0x1f, 0x87, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO----OOOO----OOOOOO-------.............................. - 0x1f, 0x87, 0x87, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOO----OOOO----OOOOOO-------.............................. - 0x3e, 0x07, 0x81, 0xf0, 0x00, 0x00, 0x00, 0x00, // --OOOOO------OOOO------OOOOO------.............................. - 0x7e, 0x07, 0x81, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOOO------OOOO------OOOOOO-----.............................. - 0x7c, 0x1f, 0xe0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOO-----OOOOOOOO-----OOOOO-----.............................. - 0x78, 0x3f, 0xf0, 0x78, 0x00, 0x00, 0x00, 0x00, // -OOOO-----OOOOOOOOOO-----OOOO-----.............................. - 0xf8, 0x7f, 0xf8, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOOOOOOOOOO----OOOOO----.............................. - 0xf8, 0x7f, 0xf8, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOOOOOOOOOO----OOOOO----.............................. - 0xf0, 0x7f, 0xf8, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO-----OOOOOOOOOOOO-----OOOO----.............................. - 0xf0, 0xff, 0xfc, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO----OOOOOOOOOOOOOO----OOOO----.............................. - 0xf0, 0x7f, 0xf8, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO-----OOOOOOOOOOOO-----OOOO----.............................. - 0xf0, 0x7f, 0xf8, 0x3c, 0x00, 0x00, 0x00, 0x00, // OOOO-----OOOOOOOOOOOO-----OOOO----.............................. - 0xf8, 0x7f, 0xf8, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO----OOOOOOOOOOOO----OOOOO----.............................. - 0xf8, 0x3f, 0xf0, 0x7c, 0x00, 0x00, 0x00, 0x00, // OOOOO-----OOOOOOOOOO-----OOOOO----.............................. - 0x78, 0x1f, 0xe0, 0x78, 0x00, 0x00, 0x00, 0x00, // -OOOO------OOOOOOOO------OOOO-----.............................. - 0x7c, 0x0f, 0xc0, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOO------OOOOOO------OOOOO-----.............................. - 0x7c, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -OOOOO------------------OOOOO-----.............................. - 0x3e, 0x00, 0x01, 0xf0, 0x00, 0x00, 0x00, 0x00, // --OOOOO----------------OOOOO------.............................. - 0x3f, 0x00, 0x03, 0xe0, 0x00, 0x00, 0x00, 0x00, // --OOOOOO--------------OOOOO-------.............................. - 0x1f, 0xc0, 0x0f, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---OOOOOOO----------OOOOOOO-------.............................. - 0x0f, 0xf0, 0x3f, 0xc0, 0x00, 0x00, 0x00, 0x00, // ----OOOOOOOO------OOOOOOOO--------.............................. - 0x07, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOO---------.............................. - 0x01, 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOO-----------.............................. - 0x00, 0xff, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, // --------OOOOOOOOOOOOOO------------.............................. - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------OOOOOOOO---------------.............................. - - // ASCII: 111, char width: 47 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, // ------------------------------------------OOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, // -----------------------------------------OOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x01, 0xfe, 0x00, 0x00, // ---------------------------------------OOOOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, // -------------------------------------OOOOOOOOOO................. - 0x00, 0x00, 0x00, 0x00, 0x1f, 0xfc, 0x00, 0x00, // -----------------------------------OOOOOOOOOOO-................. - 0x00, 0x00, 0x00, 0x00, 0x7f, 0xfc, 0x00, 0x00, // ---------------------------------OOOOOOOOOOOOO-................. - 0x00, 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, // -------------------------------OOOOOOOOOOOOOO--................. - 0x00, 0x00, 0x00, 0x07, 0xff, 0xf8, 0x00, 0x00, // -----------------------------OOOOOOOOOOOOOOOO--................. - 0x00, 0x00, 0x00, 0x1f, 0xff, 0xf0, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOOOOO---................. - 0x00, 0x00, 0x00, 0x7f, 0xff, 0xf0, 0x00, 0x00, // -------------------------OOOOOOOOOOOOOOOOOOO---................. - 0x00, 0x00, 0x01, 0xff, 0xff, 0xe0, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOO----................. - 0x00, 0x00, 0x07, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOOOO----................. - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xc0, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x00, 0x00, 0x7f, 0xff, 0xff, 0xc0, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOOOOOOOOOO-----................. - 0x00, 0x01, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x00, 0x07, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO------................. - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------................. - 0x01, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x07, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------................. - 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------................. - 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------................. - 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------................. - 0x00, 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOO------------................. - 0x00, 0x00, 0x07, 0xff, 0xe0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOO------------................. - 0x00, 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOO-------------................. - 0x00, 0x00, 0x07, 0xff, 0xc0, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOO-------------................. - 0x00, 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOO--------------................. - 0x00, 0x00, 0x07, 0xff, 0x80, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOO--------------................. - 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOO---------------................. - 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOO---------------................. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO----------------................. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO----------------................. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO-----------------................. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO-----------------................. - 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOO------------------................. - 0x00, 0x00, 0x07, 0xf8, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOO------------------................. - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-------------------................. - 0x00, 0x00, 0x07, 0xf0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOO-------------------................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO--------------------................. - 0x00, 0x00, 0x07, 0xe0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOO--------------------................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO---------------------................. - 0x00, 0x00, 0x07, 0xc0, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOO---------------------................. - 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, // ----------------------OOO----------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------................. - - // ASCII: 112, char width: 60 - 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, // ----------------------------OOOO----------------------------.... - 0x00, 0x00, 0x00, 0x1f, 0x80, 0x00, 0x00, 0x00, // ---------------------------OOOOOO---------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOO--------------------------.... - 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, 0x00, 0x00, // --------------------------OOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x01, 0xff, 0xf8, 0x00, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOO-----------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x03, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------------------OOOOOOOOOOOOOOOO----------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOO--------------------.... - 0x00, 0x00, 0x0f, 0xff, 0xff, 0x80, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x1f, 0xff, 0xff, 0x80, 0x00, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOO-------------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x3f, 0x80, 0x1f, 0xc0, 0x00, 0x00, // ------------------OOOOOOO----------OOOOOOO------------------.... - 0x00, 0x00, 0x7f, 0x80, 0x1f, 0xe0, 0x00, 0x00, // -----------------OOOOOOOO----------OOOOOOOO-----------------.... - 0x00, 0x00, 0x7f, 0x80, 0x1f, 0xe0, 0x00, 0x00, // -----------------OOOOOOOO----------OOOOOOOO-----------------.... - 0x00, 0x00, 0xff, 0x80, 0x1f, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOO----------OOOOOOOOO----------------.... - 0x00, 0x00, 0xff, 0x80, 0x1f, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOO----------OOOOOOOOO----------------.... - 0x00, 0x01, 0xff, 0x80, 0x1f, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOO----------OOOOOOOOOO---------------.... - 0x00, 0x01, 0xff, 0x80, 0x3f, 0xf8, 0x00, 0x00, // ---------------OOOOOOOOOO---------OOOOOOOOOOO---------------.... - 0x00, 0x03, 0xff, 0xc0, 0x3f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOO--------OOOOOOOOOOOO--------------.... - 0x00, 0x03, 0xff, 0xc0, 0x3f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOOO--------OOOOOOOOOOOO--------------.... - 0x00, 0x07, 0xff, 0xc0, 0x3f, 0xfe, 0x00, 0x00, // -------------OOOOOOOOOOOOO--------OOOOOOOOOOOOO-------------.... - 0x00, 0x0f, 0xff, 0xc0, 0x3f, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOO--------OOOOOOOOOOOOOO------------.... - 0x00, 0x0f, 0xff, 0xc0, 0x3f, 0xff, 0x00, 0x00, // ------------OOOOOOOOOOOOOO--------OOOOOOOOOOOOOO------------.... - 0x00, 0x1f, 0xff, 0xc0, 0x3f, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOO-----------.... - 0x00, 0x1f, 0xff, 0xc0, 0x3f, 0xff, 0x80, 0x00, // -----------OOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOO-----------.... - 0x00, 0x3f, 0xff, 0xc0, 0x3f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOO----------.... - 0x00, 0x3f, 0xff, 0xc0, 0x3f, 0xff, 0xc0, 0x00, // ----------OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOO----------.... - 0x00, 0x7f, 0xff, 0xc0, 0x3f, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOO---------.... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------.... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xf8, 0x00, // ------OOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO.... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-.... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ------------------------------------------------------------.... - - // ASCII: 113, char width: 49 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO--------------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x3f, 0xff, 0xff, 0xfe, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------............... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------............... - 0x00, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............... - 0x03, 0xff, 0xfc, 0x1f, 0xff, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOO------............... - 0x07, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x0f, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x0f, 0xff, 0xf0, 0x07, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOO----............... - 0x1f, 0xff, 0xf0, 0x07, 0xff, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOOO---............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOO---............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOO--............... - 0x3f, 0xff, 0xfc, 0x1f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOOOOO--............... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x80, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOO............... - 0xff, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // OOOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x7f, 0xff, 0xf8, 0x0f, 0xff, 0xff, 0x00, 0x00, // -OOOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOOO-............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOO--............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfe, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOOO--............... - 0x3f, 0xff, 0xf8, 0x0f, 0xff, 0xfc, 0x00, 0x00, // --OOOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOO---............... - 0x1f, 0xff, 0xf8, 0x0f, 0xff, 0xfc, 0x00, 0x00, // ---OOOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOOO---............... - 0x0f, 0xff, 0xf8, 0x0f, 0xff, 0xf8, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOOO----............... - 0x0f, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x07, 0xff, 0xf8, 0x0f, 0xff, 0xf0, 0x00, 0x00, // -----OOOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOOO-----............... - 0x03, 0xff, 0xf8, 0x0f, 0xff, 0xe0, 0x00, 0x00, // ------OOOOOOOOOOOOOOO-------OOOOOOOOOOOOOOO------............... - 0x01, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............... - 0x00, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............... - 0x00, 0x7f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------............... - 0x00, 0x3f, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............... - 0x00, 0x0f, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOO------------............... - 0x00, 0x03, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOO--------------............... - 0x00, 0x00, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOO----------------............... - 0x00, 0x00, 0x1f, 0xf8, 0x00, 0x00, 0x00, 0x00, // -------------------OOOOOOOOOO--------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -------------------------------------------------............... - - // ASCII: 114, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x00, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO---------------------------------OOOOOOOOO---..... - 0xfc, 0x3e, 0x00, 0x00, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO--------------------------------OOOOOOOOOO--..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x00, 0x00, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO-------------------------------OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x00, 0x00, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO--------------------------------OOOOOOOOOO--..... - 0xfc, 0x1c, 0x00, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO---------------------------------OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 115, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x0f, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----------------------OOOOOOOOO---..... - 0xfc, 0x3e, 0x1f, 0x80, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO----------------------OOOOOOOOOO--..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x80, 0x00, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO----------------------OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x1f, 0x80, 0x00, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO----------------------OOOOOOOOOO--..... - 0xfc, 0x1c, 0x0f, 0x00, 0x00, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----------------------OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 116, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x0f, 0x07, 0x80, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO--------------OOOOOOOOO---..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO-------------OOOOOOOOOO--..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO-------------OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc0, 0x01, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO-------------OOOOOOOOOO--..... - 0xfc, 0x1c, 0x0f, 0x07, 0x80, 0x01, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO--------------OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 117, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x1c, 0x0f, 0x07, 0x81, 0xc1, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO------OOO-----OOOOOOOOO---..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc3, 0xe1, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO----OOOOO----OOOOOOOOOO--..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO---OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x1f, 0x8f, 0xc3, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOO---OOOOOO---OOOOOO----OOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x3e, 0x1f, 0x8f, 0xc3, 0xe1, 0xff, 0x80, // OOOOOO----OOOOO----OOOOOO---OOOOOO----OOOOO----OOOOOOOOOO--..... - 0xfc, 0x1c, 0x0f, 0x07, 0x81, 0xc1, 0xff, 0x00, // OOOOOO-----OOO------OOOO-----OOOO------OOO-----OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 118, char width: 59 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x00, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOO---..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x80, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOO--..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xbf, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOO-OOOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xfe, 0x1f, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOO----OOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xfc, 0x1f, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOO-----OOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xf0, 0x0f, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOO--------OOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xe0, 0x07, 0xf7, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOO----------OOOOOOO-OOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xc0, 0x04, 0x0f, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOO-----------O------OOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0x3f, 0x80, 0x3f, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOO--OOOOOOO---------OOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0x80, 0x7f, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOO--------OOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xc0, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOO------OOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xc3, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOO----OOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xe7, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOOO--OOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xe0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOOO..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xc0, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOOO-..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x80, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOOO--..... - 0xfc, 0x7f, 0xff, 0xff, 0xff, 0xf1, 0xff, 0x00, // OOOOOO---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---OOOOOOOOO---..... - 0xfc, 0x00, 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, // OOOOOO-----------------------------------------OOOOOO------..... - 0xfe, 0x00, 0x00, 0x00, 0x00, 0x03, 0xf8, 0x00, // OOOOOOO---------------------------------------OOOOOOO------..... - 0xff, 0x00, 0x00, 0x00, 0x00, 0x07, 0xf8, 0x00, // OOOOOOOO-------------------------------------OOOOOOOO------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // -OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------..... - 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, // --OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------..... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------..... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------..... - 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // -----------------------------------------------------------..... - - // ASCII: 119, char width: 60 - 0x00, 0x00, 0x00, 0xff, 0xf0, 0x00, 0x00, 0x00, // ------------------------OOOOOOOOOOOO------------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x03, 0xff, 0x80, 0x1f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOO----------OOOOOOOOOOO--------------.... - 0x00, 0x07, 0xfc, 0x00, 0x03, 0xfe, 0x00, 0x00, // -------------OOOOOOOOO----------------OOOOOOOOO-------------.... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x7f, 0x80, 0x00, // -----------OOOOOOOO----------------------OOOOOOOO-----------.... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x3f, 0xc0, 0x00, // ----------OOOOOOOO------------------------OOOOOOOO----------.... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x7f, 0xe0, 0x00, // ---------OOOOOOOOOO----------------------OOOOOOOOOO---------.... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOO--------------------OOOOOOOOOOOO--------.... - 0x01, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOO------------------OOOOOOOOOOOOOO-------.... - 0x03, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOO------.... - 0x07, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOOO-----.... - 0x07, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOO--OOOOOOOO--OOOOOOOOOOOOOOOOOOO-----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x3e, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf7, 0xc0, // --OOOOO-OOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOO-OOOOO--.... - 0x3e, 0x7f, 0xfc, 0x00, 0x03, 0xff, 0xe7, 0xc0, // --OOOOO--OOOOOOOOOOOOO----------------OOOOOOOOOOOOO--OOOOO--.... - 0x3c, 0x3f, 0xf8, 0x00, 0x01, 0xff, 0xc3, 0xc0, // --OOOO----OOOOOOOOOOO------------------OOOOOOOOOOO----OOOO--.... - 0x7c, 0x1f, 0xf0, 0x00, 0x00, 0xff, 0x83, 0xe0, // -OOOOO-----OOOOOOOOO--------------------OOOOOOOOO-----OOOOO-.... - 0x7c, 0x0f, 0xf0, 0x00, 0x00, 0xff, 0x03, 0xe0, // -OOOOO------OOOOOOOO--------------------OOOOOOOO------OOOOO-.... - 0x78, 0x07, 0xe0, 0x00, 0x00, 0x7e, 0x01, 0xe0, // -OOOO--------OOOOOO----------------------OOOOOO--------OOOO-.... - 0xf8, 0x03, 0xc0, 0x00, 0x00, 0x3c, 0x01, 0xf0, // OOOOO---------OOOO------------------------OOOO---------OOOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf0, 0x07, 0xc0, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOOO-------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf0, 0x07, 0x80, 0x00, 0x00, 0x1e, 0x00, 0xf0, // OOOO---------OOOO--------------------------OOOO---------OOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf8, 0x07, 0xc0, 0x00, 0x00, 0x3e, 0x01, 0xf0, // OOOOO--------OOOOO------------------------OOOOO--------OOOOO.... - 0xf8, 0x03, 0xc0, 0x00, 0x00, 0x3c, 0x01, 0xf0, // OOOOO---------OOOO------------------------OOOO---------OOOOO.... - 0x78, 0x07, 0xe0, 0x00, 0x00, 0x7e, 0x01, 0xe0, // -OOOO--------OOOOOO----------------------OOOOOO--------OOOO-.... - 0x78, 0x0f, 0xe0, 0x00, 0x00, 0xff, 0x01, 0xe0, // -OOOO-------OOOOOOO---------------------OOOOOOOO-------OOOO-.... - 0x7c, 0x1f, 0xf0, 0x00, 0x00, 0xff, 0x83, 0xe0, // -OOOOO-----OOOOOOOOO--------------------OOOOOOOOO-----OOOOO-.... - 0x7c, 0x3f, 0xf8, 0x00, 0x01, 0xff, 0xc3, 0xe0, // -OOOOO----OOOOOOOOOOO------------------OOOOOOOOOOO----OOOOO-.... - 0x3e, 0x7f, 0xfc, 0x00, 0x03, 0xff, 0xe7, 0xc0, // --OOOOO--OOOOOOOOOOOOO----------------OOOOOOOOOOOOO--OOOOO--.... - 0x3e, 0xff, 0xff, 0x00, 0x0f, 0xff, 0xf7, 0xc0, // --OOOOO-OOOOOOOOOOOOOOOO------------OOOOOOOOOOOOOOOO-OOOOO--.... - 0x1f, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOOOOOOOOOO---.... - 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ---OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----.... - 0x07, 0xff, 0xff, 0x3f, 0xcf, 0xff, 0xfe, 0x00, // -----OOOOOOOOOOOOOOOOOOO--OOOOOOOO--OOOOOOOOOOOOOOOOOOO-----.... - 0x03, 0xff, 0xfe, 0x00, 0x07, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO------.... - 0x03, 0xff, 0xfc, 0x00, 0x03, 0xff, 0xfc, 0x00, // ------OOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOO------.... - 0x01, 0xff, 0xf8, 0x00, 0x01, 0xff, 0xf8, 0x00, // -------OOOOOOOOOOOOOO------------------OOOOOOOOOOOOOO-------.... - 0x00, 0xff, 0xf0, 0x00, 0x00, 0xff, 0xf0, 0x00, // --------OOOOOOOOOOOO--------------------OOOOOOOOOOOO--------.... - 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x7f, 0xe0, 0x00, // ---------OOOOOOOOOO----------------------OOOOOOOOOO---------.... - 0x00, 0x3f, 0xc0, 0x00, 0x00, 0x3f, 0xc0, 0x00, // ----------OOOOOOOO------------------------OOOOOOOO----------.... - 0x00, 0x1f, 0xe0, 0x00, 0x00, 0x7f, 0x80, 0x00, // -----------OOOOOOOO----------------------OOOOOOOO-----------.... - 0x00, 0x07, 0xfc, 0x00, 0x03, 0xfe, 0x00, 0x00, // -------------OOOOOOOOO----------------OOOOOOOOO-------------.... - 0x00, 0x03, 0xff, 0x80, 0x1f, 0xfc, 0x00, 0x00, // --------------OOOOOOOOOOO----------OOOOOOOOOOO--------------.... - 0x00, 0x00, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO----------------.... - 0x00, 0x00, 0x3f, 0xff, 0xff, 0xc0, 0x00, 0x00, // ------------------OOOOOOOOOOOOOOOOOOOOOOOO------------------.... - 0x00, 0x00, 0x07, 0xff, 0xfe, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOO---------------------.... - 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, 0x00, 0x00, // -------------------------OOOOOOOOOO-------------------------.... - - // ASCII: 120, char width: 51 - 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, // ------------------------OOOO-----------------------............. - 0x00, 0x00, 0x03, 0xf8, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOO----------------------............. - 0x00, 0x00, 0x03, 0xfc, 0x00, 0x00, 0x00, 0x00, // ----------------------OOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x00, 0x07, 0xfc, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOO---------------------............. - 0x00, 0x0c, 0x07, 0xfc, 0x02, 0x00, 0x00, 0x00, // ------------OO-------OOOOOOOOO--------O------------............. - 0x00, 0x3f, 0x07, 0xfc, 0x0f, 0x80, 0x00, 0x00, // ----------OOOOOO-----OOOOOOOOO------OOOOO----------............. - 0x00, 0x7f, 0x87, 0xfc, 0x1f, 0xe0, 0x00, 0x00, // ---------OOOOOOOO----OOOOOOOOO-----OOOOOOOO--------............. - 0x00, 0xff, 0x87, 0xfc, 0x3f, 0xf0, 0x00, 0x00, // --------OOOOOOOOO----OOOOOOOOO----OOOOOOOOOO-------............. - 0x01, 0xff, 0x87, 0xfc, 0x3f, 0xf8, 0x00, 0x00, // -------OOOOOOOOOO----OOOOOOOOO----OOOOOOOOOOO------............. - 0x03, 0xff, 0x87, 0xfc, 0x3f, 0xfc, 0x00, 0x00, // ------OOOOOOOOOOO----OOOOOOOOO----OOOOOOOOOOOO-----............. - 0x07, 0xff, 0x87, 0xfc, 0x1f, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOO----OOOOOOOOO-----OOOOOOOOOOO-----............. - 0x0f, 0xff, 0x07, 0xfc, 0x1f, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOOO-----OOOOOOOOO-----OOOOOOOOOOOO----............. - 0x0f, 0xfe, 0x07, 0xfc, 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOO------OOOOOOOOO------OOOOOOOOOOOO---............. - 0x1f, 0xfc, 0x07, 0xfc, 0x07, 0xff, 0x00, 0x00, // ---OOOOOOOOOOO-------OOOOOOOOO-------OOOOOOOOOOO---............. - 0x1f, 0xf8, 0x07, 0xfc, 0x03, 0xff, 0x80, 0x00, // ---OOOOOOOOOO--------OOOOOOOOO--------OOOOOOOOOOO--............. - 0x3f, 0xf0, 0x07, 0xfc, 0x01, 0xff, 0x80, 0x00, // --OOOOOOOOOO---------OOOOOOOOO---------OOOOOOOOOO--............. - 0x3f, 0xe0, 0x07, 0xfc, 0x00, 0xff, 0xc0, 0x00, // --OOOOOOOOO----------OOOOOOOOO----------OOOOOOOOOO-............. - 0x7f, 0xe0, 0x07, 0xfc, 0x00, 0x7f, 0xc0, 0x00, // -OOOOOOOOOO----------OOOOOOOOO-----------OOOOOOOOO-............. - 0x7f, 0xc0, 0x07, 0xfc, 0x00, 0x7f, 0xc0, 0x00, // -OOOOOOOOO-----------OOOOOOOOO-----------OOOOOOOOO-............. - 0x7f, 0xc0, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // -OOOOOOOOO-----------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0xc0, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOOO-----------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0x80, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO------------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0x80, 0x07, 0xfc, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO------------OOOOOOOOO------------OOOOOOOOO............. - 0xff, 0x80, 0x03, 0xfc, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO-------------OOOOOOOO-------------OOOOOOOO............. - 0xff, 0x80, 0x03, 0xf8, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO-------------OOOOOOO--------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0xf0, 0x00, 0x1f, 0xf0, 0x00, // OOOOOOOOO---------------OOOO---------------OOOOOOOOO............ - 0xff, 0x80, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO----------------------------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO----------------------------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x1f, 0xe0, 0x00, // OOOOOOOOO----------------------------------OOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO---------------------------------OOOOOOOOO............. - 0xff, 0x80, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOO---------------------------------OOOOOOOOO............. - 0xff, 0xc0, 0x00, 0x00, 0x00, 0x3f, 0xe0, 0x00, // OOOOOOOOOO--------------------------------OOOOOOOOO............. - 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x7f, 0xe0, 0x00, // -OOOOOOOOO-------------------------------OOOOOOOOOO............. - 0x7f, 0xe0, 0x00, 0x00, 0x00, 0x7f, 0xc0, 0x00, // -OOOOOOOOOO------------------------------OOOOOOOOO-............. - 0x7f, 0xe0, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // -OOOOOOOOOO-----------------------------OOOOOOOOOO-............. - 0x3f, 0xf0, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, // --OOOOOOOOOO----------------------------OOOOOOOOOO-............. - 0x3f, 0xf0, 0x00, 0x00, 0x01, 0xff, 0x80, 0x00, // --OOOOOOOOOO---------------------------OOOOOOOOOO--............. - 0x1f, 0xf8, 0x00, 0x00, 0x03, 0xff, 0x80, 0x00, // ---OOOOOOOOOO-------------------------OOOOOOOOOOO--............. - 0x1f, 0xfc, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, // ---OOOOOOOOOOO-----------------------OOOOOOOOOOO---............. - 0x0f, 0xfe, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, // ----OOOOOOOOOOO---------------------OOOOOOOOOOOO---............. - 0x07, 0xff, 0x80, 0x00, 0x3f, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOO-----------------OOOOOOOOOOOOO----............. - 0x07, 0xff, 0xe0, 0x00, 0x7f, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOO--------------OOOOOOOOOOOOO-----............. - 0x03, 0xff, 0xfc, 0x03, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOO--------OOOOOOOOOOOOOOO------............. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............. - 0x00, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----------............. - 0x00, 0x1f, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, // -----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------............. - 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOO-------------............. - 0x00, 0x01, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, // ---------------OOOOOOOOOOOOOOOOOOOOOO--------------............. - 0x00, 0x00, 0x7f, 0xff, 0xc0, 0x00, 0x00, 0x00, // -----------------OOOOOOOOOOOOOOOOO-----------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 121, char width: 51 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x30, 0x0f, 0xfe, 0x01, 0x80, 0x00, 0x00, // ----------OO--------OOOOOOOOOOO--------OO----------............. - 0x00, 0x7c, 0x0f, 0xfe, 0x03, 0xc0, 0x00, 0x00, // ---------OOOOO------OOOOOOOOOOO-------OOOO---------............. - 0x00, 0xfe, 0x0f, 0xff, 0x07, 0xe0, 0x00, 0x00, // --------OOOOOOO-----OOOOOOOOOOOO-----OOOOOO--------............. - 0x01, 0xff, 0x3f, 0xff, 0x9f, 0xf0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOOOOOOOO--OOOOOOOOO-------............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x0f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // ----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............. - 0x00, 0xff, 0xfe, 0x07, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOO------OOOOOOOOOOOOOOO-------............. - 0x01, 0xff, 0xf8, 0x01, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOO----------OOOOOOOOOOOOO-------............. - 0x01, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOO------------OOOOOOOOOOOO-------............. - 0x7f, 0xff, 0xe0, 0x00, 0x7f, 0xff, 0x80, 0x00, // -OOOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOO--............. - 0xff, 0xff, 0xc0, 0x00, 0x7f, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOO---------------OOOOOOOOOOOOOOOOOO............. - 0xff, 0xff, 0xc0, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0x80, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xc0, 0x00, 0x3f, 0xff, 0xf0, 0x00, // OOOOOOOOOOOOOOOOOO----------------OOOOOOOOOOOOOOOOOO............ - 0xff, 0xff, 0xc0, 0x00, 0x7f, 0xff, 0xe0, 0x00, // OOOOOOOOOOOOOOOOOO---------------OOOOOOOOOOOOOOOOOO............. - 0x7f, 0xff, 0xe0, 0x00, 0x7f, 0xff, 0xc0, 0x00, // -OOOOOOOOOOOOOOOOOO--------------OOOOOOOOOOOOOOOOO-............. - 0x01, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOO------------OOOOOOOOOOOO-------............. - 0x01, 0xff, 0xf8, 0x01, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOO----------OOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xfe, 0x07, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOO------OOOOOOOOOOOOOOO-------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------............. - 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // --------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x01, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO----............. - 0x07, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----............. - 0x03, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x00, 0x00, // ------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------............. - 0x01, 0xff, 0x3f, 0xff, 0xdf, 0xf0, 0x00, 0x00, // -------OOOOOOOOO--OOOOOOOOOOOOOOOO-OOOOOOOOO-------............. - 0x00, 0xfe, 0x0f, 0xff, 0x0f, 0xe0, 0x00, 0x00, // --------OOOOOOO-----OOOOOOOOOOOO----OOOOOOO--------............. - 0x00, 0x7c, 0x0f, 0xff, 0x03, 0xc0, 0x00, 0x00, // ---------OOOOO------OOOOOOOOOOOO------OOOO---------............. - 0x00, 0x30, 0x0f, 0xfe, 0x01, 0x80, 0x00, 0x00, // ----------OO--------OOOOOOOOOOO--------OO----------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x00, 0x0f, 0xfe, 0x00, 0x00, 0x00, 0x00, // --------------------OOOOOOOOOOO--------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, 0x00, // ---------------------OOOOOOOOOO--------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------............. - - // ASCII: 122, char width: 68 - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x1f, 0xff, 0x80, 0x00, 0x00, // ---------------------------OOOOOOOOOOOOOO----------------------- - 0x00, 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOOOOO------------------ - 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x00, // -------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, // ----------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------------ - 0x00, 0x03, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x00, // --------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---------- - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------- - 0x00, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, // ----------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------ - 0x00, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, // ---------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO---- - 0x01, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, // -------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO--- - 0x03, 0xff, 0xff, 0xf0, 0x00, 0x7f, 0xff, 0xfe, // ------OOOOOOOOOOOOOOOOOOOOOO-------------OOOOOOOOOOOOOOOOOOOOOO- - 0x07, 0xff, 0xff, 0x00, 0x00, 0x07, 0xff, 0xff, // -----OOOOOOOOOOOOOOOOOOO---------------------OOOOOOOOOOOOOOOOOOO - 0x1f, 0xff, 0xf8, 0x00, 0x00, 0x00, 0xff, 0xff, // ---OOOOOOOOOOOOOOOOOO---------------------------OOOOOOOOOOOOOOOO - 0x3f, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x3f, 0xff, // --OOOOOOOOOOOOOOOOO-------------------------------OOOOOOOOOOOOOO - 0x7f, 0xff, 0x80, 0x0f, 0xff, 0x00, 0x0f, 0xff, // -OOOOOOOOOOOOOOOO-----------OOOOOOOOOOOO------------OOOOOOOOOOOO - 0x7f, 0xfe, 0x00, 0xff, 0xff, 0xf0, 0x03, 0xff, // -OOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOOOOOO----------OOOOOOOOOO - 0x3f, 0xf8, 0x03, 0xff, 0xff, 0xfe, 0x01, 0xff, // --OOOOOOOOOOO---------OOOOOOOOOOOOOOOOOOOOOOOOO--------OOOOOOOOO - 0x1f, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xc0, 0x7f, // ---OOOOOOOOO-------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------OOOOOOO - 0x0f, 0xe0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x3f, // ----OOOOOOO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------OOOOOO - 0x07, 0x80, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, // -----OOOO-------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------OOOOO - 0x03, 0x03, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x04, // ------OO------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------O-- - 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, // -------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-------- - 0x00, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, // ------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO------- - 0x00, 0x1f, 0xff, 0xfc, 0x01, 0xff, 0xff, 0xc0, // -----------OOOOOOOOOOOOOOOOOOO---------OOOOOOOOOOOOOOOOOOO------ - 0x00, 0x3f, 0xff, 0xc0, 0x00, 0x1f, 0xff, 0xc0, // ----------OOOOOOOOOOOOOOOO-----------------OOOOOOOOOOOOOOO------ - 0x00, 0x1f, 0xff, 0x00, 0x00, 0x07, 0xff, 0x80, // -----------OOOOOOOOOOOOO---------------------OOOOOOOOOOOO------- - 0x00, 0x0f, 0xfc, 0x00, 0x00, 0x01, 0xff, 0x00, // ------------OOOOOOOOOO-------------------------OOOOOOOOO-------- - 0x00, 0x07, 0xf0, 0x03, 0xfe, 0x00, 0x7f, 0x00, // -------------OOOOOOO----------OOOOOOOOO----------OOOOOOO-------- - 0x00, 0x03, 0xc0, 0x3f, 0xff, 0xc0, 0x3e, 0x00, // --------------OOOO--------OOOOOOOOOOOOOOOO--------OOOOO--------- - 0x00, 0x01, 0x80, 0xff, 0xff, 0xf0, 0x18, 0x00, // ---------------OO-------OOOOOOOOOOOOOOOOOOOO-------OO----------- - 0x00, 0x00, 0x01, 0xff, 0xff, 0xfc, 0x00, 0x00, // -----------------------OOOOOOOOOOOOOOOOOOOOOOO------------------ - 0x00, 0x00, 0x07, 0xff, 0xff, 0xfe, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOOOOOOOO----------------- - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0x80, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOOO--------------- - 0x00, 0x00, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x00, // --------------------OOOOOOOOOOOOOOOOOOOOOOOOOOOO---------------- - 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0x00, 0x00, // ---------------------OOOOOOOOOOOOOOOOOOOOOOOOOOO---------------- - 0x00, 0x00, 0x03, 0xfe, 0x03, 0xfe, 0x00, 0x00, // ----------------------OOOOOOOOO-------OOOOOOOOO----------------- - 0x00, 0x00, 0x01, 0xf0, 0x00, 0xfc, 0x00, 0x00, // -----------------------OOOOO------------OOOOOO------------------ - 0x00, 0x00, 0x00, 0xc0, 0x00, 0x30, 0x00, 0x00, // ------------------------OO----------------OO-------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x01, 0xf8, 0x00, 0x00, 0x00, // -------------------------------OOOOOO--------------------------- - 0x00, 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOOOO------------------------- - 0x00, 0x00, 0x00, 0x07, 0xff, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOOOOO------------------------ - 0x00, 0x00, 0x00, 0x07, 0xfe, 0x00, 0x00, 0x00, // -----------------------------OOOOOOOOOO------------------------- - 0x00, 0x00, 0x00, 0x03, 0xfe, 0x00, 0x00, 0x00, // ------------------------------OOOOOOOOO------------------------- - 0x00, 0x00, 0x00, 0x01, 0xfc, 0x00, 0x00, 0x00, // -------------------------------OOOOOOO-------------------------- - 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, // --------------------------------OOOOO--------------------------- - 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, // ---------------------------------OO----------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // ---------------------------------------------------------------- -}; - - -static const uint8_t symbol_60_widths[26] = -{ - 60, 51, 64, 47, 51, 51, 60, 47, - 60, 43, 43, 60, 34, 34, 47, 60, - 49, 59, 59, 59, 59, 59, 60, 51, - 51, 68, -}; - -static const font_t symbol_60_dsc = -{ - 26, // Letter count - 97, // First ascii code - 8, // Letters width (bytes) - 60, // Letters height (row) - 0, // Fixed width or 0 if variable - symbol_60_widths, - symbol_60_bitmaps -}; - -const font_t * symbol_60_get_dsc(void) -{ - return &symbol_60_dsc; -} - - -#endif diff --git a/lv_misc/fonts/symbol_60.h b/lv_misc/fonts/symbol_60.h deleted file mode 100644 index 81fdf564c..000000000 --- a/lv_misc/fonts/symbol_60.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef SYMBOL_60_H -#define SYMBOL_60_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_SYMBOL_60 != 0 - -#include -#include "../font.h" - -const font_t * symbol_60_get_dsc(void); - -#endif - -#endif diff --git a/lv_misc/fonts/symbol_def.h b/lv_misc/fonts/symbol_def.h deleted file mode 100644 index aad1df986..000000000 --- a/lv_misc/fonts/symbol_def.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef SYMBOL_DEF_H -#define SYMBOL_DEF_H - -/*Use ISO8859-1 encoding in the IDE*/ - -#include "lv_conf.h" -#if USE_FONT_SYMBOL_30 != 0 || USE_FONT_SYMBOL_60 != 0 - - -#define SYMBOL_DRIVE "a" -#define SYMBOL_FILE "b" -#define SYMBOL_FOLDER "c" -#define SYMBOL_DELETE "d" -#define SYMBOL_SAVE "e" -#define SYMBOL_EDIT "f" -#define SYMBOL_OK "g" -#define SYMBOL_CLOSE "h" -#define SYMBOL_DOWN "i" -#define SYMBOL_LEFT "j" -#define SYMBOL_RIGHT "k" -#define SYMBOL_UP "l" -#define SYMBOL_BT "m" -#define SYMBOL_THERM "n" -#define SYMBOL_GPS "o" -#define SYMBOL_WARN "p" -#define SYMBOL_INFO "q" -#define SYMBOL_BATT1 "r" -#define SYMBOL_BATT2 "s" -#define SYMBOL_BATT3 "t" -#define SYMBOL_BATT4 "u" -#define SYMBOL_BATTCH "v" -#define SYMBOL_HELP "w" -#define SYMBOL_POWER "x" -#define SYMBOL_SETUP "y" -#define SYMBOL_WIFI "z" - -#endif - -#endif /*SYMBOL_DEF_H*/ diff --git a/lv_misc/text.c b/lv_misc/text.c deleted file mode 100644 index 24289df31..000000000 --- a/lv_misc/text.c +++ /dev/null @@ -1,265 +0,0 @@ -/** - * @file font.c - * - */ - -/********************* - * INCLUDES - *********************/ -#include "text.h" -#include "misc/math/math_base.h" - -/********************* - * DEFINES - *********************/ -#define TXT_NO_BREAK_FOUND UINT16_MAX - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ -static bool txt_is_break_char(char letter); - -/********************** - * STATIC VARIABLES - **********************/ - -/********************** - * MACROS - **********************/ - -/********************** - * GLOBAL FUNCTIONS - **********************/ - -/** - * Get size of a text - * @param size_res pointer to a 'point_t' variable to store the result - * @param text pointer to a text - * @param font pinter to font of the text - * @param letter_space letter space of the text - * @param line_space line space of the text - * @param flags settings for the text from 'txt_flag_t' enum - * @param max_width max with of the text (break the lines to fit this size) Set LV_CORD_MAX to avoid line breaks - */ -void txt_get_size(point_t * size_res, const char * text, const font_t * font, - uint16_t letter_space, uint16_t line_space, cord_t max_width, txt_flag_t flag) -{ - size_res->x = 0; - size_res->y = 0; - - if(text == NULL) return; - if(font == NULL) return; - - uint32_t line_start = 0; - uint32_t new_line_start = 0; - cord_t act_line_length; - uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; - - /*Calc. the height and longest line*/ - while (text[line_start] != '\0') - { - new_line_start += txt_get_next_line(&text[line_start], font, letter_space, max_width, flag); - size_res->y += letter_height ; - size_res->y += line_space; - - /*Calculate the the longest line*/ - act_line_length = txt_get_width(&text[line_start], new_line_start - line_start, - font, letter_space, flag); - - size_res->x = MATH_MAX(act_line_length, size_res->x); - line_start = new_line_start; - } - - if(line_start != 0 && (text[line_start - 1] == '\n' || text[line_start - 1] == '\r')) { - size_res->y += letter_height + line_space; - } - - /*Correction with the last line space or set the height manually if the text is empty*/ - if(size_res->y == 0) size_res->y = letter_height; - else size_res->y -= line_space; - -} - -/** - * Get the next line of text. Check line length and break chars too. - * @param txt a '\0' terminated string - * @param font pointer to a font - * @param letter_space letter space - * @param max_l max line length - * @param flags settings for the text from 'txt_flag_type' enum - * @return the index of the first char of the new line - */ -uint16_t txt_get_next_line(const char * txt, const font_t * font, - uint16_t letter_space, cord_t max_l, txt_flag_t flag) -{ - if(txt == NULL) return 0; - if(font == NULL) return 0; - - uint32_t i = 0; - cord_t act_l = 0; - uint16_t last_break = TXT_NO_BREAK_FOUND; - txt_cmd_state_t cmd_state = TXT_CMD_STATE_WAIT; - - while(txt[i] != '\0') { - - /*Handle the recolor command*/ - if((flag & TXT_FLAG_RECOLOR) != 0) { - if(txt_is_cmd(&cmd_state, txt[i]) != false) { - i++; /*Skip the letter is it is part of a command*/ - continue; - } - } - - /*Check for new line chars*/ - if(txt[i] == '\n' || txt[i] == '\r') { - /*Handle \n\r and \r\n as well*/ - if(txt[i] == '\n' && txt[i + 1] == '\r') { - i++; - } else if(txt[i] == '\r' && txt[i + 1] == '\n') { - i++; - } - return i+1; /*Return with the first letter of the next line*/ - - } else { /*Check the actual length*/ - act_l += font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS; - - /*If the txt is too long then finish, this is the line end*/ - if(act_l > max_l) { - /*If already a break character is found, then break there*/ - if(last_break != TXT_NO_BREAK_FOUND && txt_is_break_char(txt[i]) == false) { - i = last_break; - } - - while(txt[i] == ' ') i++; - - /* Do not let to return without doing nothing. - * Find at least one character */ - if(i == 0) i++; - - return i; - } - /*If this char still can fit to this line then check if - * txt can be broken here later */ - else if(txt_is_break_char(txt[i])) { - last_break = i; - last_break++;/*Go to the next char, the break char stays in this line*/ - } - } - - act_l += letter_space; - i++; - } - - return i; -} - -/** - * Give the length of a text with a given font - * @param txt a '\0' terminate string - * @param char_num number of characters in 'txt' - * @param font pointer to a font - * @param letter_space letter space - * @param flags settings for the text from 'txt_flag_t' enum - * @return length of a char_num long text - */ -cord_t txt_get_width(const char * txt, uint16_t char_num, - const font_t * font, uint16_t letter_space, txt_flag_t flag) -{ - if(txt == NULL) return 0; - if(font == NULL) return 0; - - uint16_t i; - cord_t len = 0; - txt_cmd_state_t cmd_state = TXT_CMD_STATE_WAIT; - - if(char_num != 0) { - for(i = 0; i < char_num; i++) { - if((flag & TXT_FLAG_RECOLOR) != 0) { - if(txt_is_cmd(&cmd_state, txt[i]) != false) { - continue; - } - } - len += font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS; - len += letter_space; - } - - /*Trim closing spaces */ - for(i = char_num - 1; i > 0; i--) { - if(txt[i] == ' ') { - len -= font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS; - len -= letter_space; - } else { - break; - } - } - - /*Correct the last letter space, - * because thee is no letter space after the last char*/ - len -= letter_space; - } - - return len; -} - -/** - * Check next character in a string and decide if te character is part of the command or not - * @param state pointer to a txt_cmd_state_t variable which stores the current state of command processing - * @param c the current character - * @return true: the character is part of a command and should not be written, - * false: the character should be written - */ -bool txt_is_cmd(txt_cmd_state_t * state, char c) -{ - bool ret = false; - - if(c == TXT_RECOLOR_CMD) { - if(*state == TXT_CMD_STATE_WAIT) { /*Start char*/ - *state = TXT_CMD_STATE_PAR; - ret = true; - } else if(*state == TXT_CMD_STATE_PAR) { /*Other start char in parameter is escaped cmd. char */ - *state = TXT_CMD_STATE_WAIT; - }else if(*state == TXT_CMD_STATE_IN) { /*Command end */ - *state = TXT_CMD_STATE_WAIT; - ret = true; - } - } - - /*Skip the color parameter and wait the space after it*/ - if(*state == TXT_CMD_STATE_PAR) { - if(c == ' ') { - *state = TXT_CMD_STATE_IN; /*After the parameter the text is in the command*/ - } - ret = true; - } - - return ret; -} - -/********************** - * STATIC FUNCTIONS - **********************/ - -/** - * Test if char is break char or not (a text can broken here or not) - * @param letter a letter - * @return false: 'letter' is not break char - */ -static bool txt_is_break_char(char letter) -{ - uint8_t i; - bool ret = false; - - /*Compare the letter to TXT_BREAK_CHARS*/ - for(i = 0; LV_TXT_BREAK_CHARS[i] != '\0'; i++) { - if(letter == LV_TXT_BREAK_CHARS[i]) { - ret = true; /*If match then it is break char*/ - break; - } - } - - return ret; -} diff --git a/lv_misc/text.h b/lv_misc/text.h deleted file mode 100644 index 192801722..000000000 --- a/lv_misc/text.h +++ /dev/null @@ -1,94 +0,0 @@ -/** - * @file text.h - * - */ - -#ifndef TEXT_H -#define TEXT_H - -/********************* - * INCLUDES - *********************/ - -#include -#include -#include "font.h" -#include "area.h" - -/********************* - * DEFINES - *********************/ -#define TXT_RECOLOR_CMD '#' - -/********************** - * TYPEDEFS - **********************/ -typedef enum -{ - TXT_FLAG_NONE = 0x00, - TXT_FLAG_RECOLOR = 0x01, -}txt_flag_t; - -typedef enum -{ - TXT_CMD_STATE_WAIT, - TXT_CMD_STATE_PAR, - TXT_CMD_STATE_IN, -}txt_cmd_state_t; - -/********************** - * GLOBAL PROTOTYPES - **********************/ - -/** - * Get size of a text - * @param size_res pointer to a 'point_t' variable to store the result - * @param text pointer to a text - * @param font pinter to font of the text - * @param letter_space letter space of the text - * @param line_space line space of the text - * @param flags settings for the text from 'txt_flag_t' enum - * @param max_width max with of the text (break the lines to fit this size) Set LV_CORD_MAX to avoid line breaks - */ -void txt_get_size(point_t * size_res, const char * text, const font_t * font, - uint16_t letter_space, uint16_t line_space, cord_t max_width, txt_flag_t flag); - -/** - * Get the next line of text. Check line length and break chars too. - * @param txt a '\0' terminated string - * @param font_p pointer to a font - * @param letter_space letter space - * @param max_l max line length - * @param flags settings for the text from 'txt_flag_t' enum - * @return the index of the first char of the new line - */ -uint16_t txt_get_next_line(const char * txt, const font_t * font_p, - uint16_t letter_space, cord_t max_l, txt_flag_t flag); - -/** - * Give the length of a text with a given font - * @param txt a '\0' terminate string - * @param char_num number of characters in 'txt' - * @param font_p pointer to a font - * @param letter_space letter space - * @param flags settings for the text from 'txt_flag_t' enum - * @return length of a char_num long text - */ -cord_t txt_get_width(const char * txt, uint16_t char_num, - const font_t * font_p, uint16_t letter_space, txt_flag_t flag); - -/** - * Check next character in a string and decide if te character is part of the command or not - * @param state pointer to a txt_cmd_state_t variable which stores the current state of command processing - * @param c the current character - * @return true: the character is part of a command and should not be written, - * false: the character should be written - */ -bool txt_is_cmd(txt_cmd_state_t * state, char c); - -/********************** - * MACROS - **********************/ - -#endif - From 330893ac6acbed4001ed3aade180b6ea77f2e8bd Mon Sep 17 00:00:00 2001 From: Gabor Date: Tue, 18 Apr 2017 10:28:30 +0200 Subject: [PATCH 31/53] lv_icon: removed, use symbol fonts instead --- lv_icon/x1/img_close.c | 31 ------------------------- lv_icon/x1/img_down.c | 26 --------------------- lv_icon/x1/img_driver.c | 30 ------------------------ lv_icon/x1/img_file.c | 32 ------------------------- lv_icon/x1/img_folder.c | 28 ---------------------- lv_icon/x1/img_left.c | 31 ------------------------- lv_icon/x1/img_ok.c | 28 ---------------------- lv_icon/x1/img_right.c | 31 ------------------------- lv_icon/x1/img_settings.c | 32 ------------------------- lv_icon/x1/img_up.c | 26 --------------------- lv_icon/x2/img_close.c | 49 --------------------------------------- lv_icon/x2/img_down.c | 36 ---------------------------- lv_icon/x2/img_driver.c | 45 ----------------------------------- lv_icon/x2/img_file.c | 49 --------------------------------------- lv_icon/x2/img_folder.c | 44 ----------------------------------- lv_icon/x2/img_left.c | 46 ------------------------------------ lv_icon/x2/img_ok.c | 47 ------------------------------------- lv_icon/x2/img_right.c | 46 ------------------------------------ lv_icon/x2/img_settings.c | 49 --------------------------------------- lv_icon/x2/img_up.c | 36 ---------------------------- 20 files changed, 742 deletions(-) delete mode 100644 lv_icon/x1/img_close.c delete mode 100644 lv_icon/x1/img_down.c delete mode 100644 lv_icon/x1/img_driver.c delete mode 100644 lv_icon/x1/img_file.c delete mode 100644 lv_icon/x1/img_folder.c delete mode 100644 lv_icon/x1/img_left.c delete mode 100644 lv_icon/x1/img_ok.c delete mode 100644 lv_icon/x1/img_right.c delete mode 100644 lv_icon/x1/img_settings.c delete mode 100644 lv_icon/x1/img_up.c delete mode 100644 lv_icon/x2/img_close.c delete mode 100644 lv_icon/x2/img_down.c delete mode 100644 lv_icon/x2/img_driver.c delete mode 100644 lv_icon/x2/img_file.c delete mode 100644 lv_icon/x2/img_folder.c delete mode 100644 lv_icon/x2/img_left.c delete mode 100644 lv_icon/x2/img_ok.c delete mode 100644 lv_icon/x2/img_right.c delete mode 100644 lv_icon/x2/img_settings.c delete mode 100644 lv_icon/x2/img_up.c diff --git a/lv_icon/x1/img_close.c b/lv_icon/x1/img_close.c deleted file mode 100644 index 677bd9885..000000000 --- a/lv_icon/x1/img_close.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_CLOSE != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_close [] = { /*Width = 14, Height = 15*/ -14, /*Width*/ -15, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 6339, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 4258, 2016, -6371, 0, 32, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 4226, -10597, 0, 0, 0, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, -2016, 10597, 0, 0, 0, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, -2016, 2016, 10597, 0, 0, 0, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, -2016, 2016, 2016, 10565, 0, 0, 32, 2113, 0, 0, 6339, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 10597, 0, 0, 0, 0, 8452, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 0, 0, 0, 0, 35953, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 32, 0, 0, 0, 0, 0, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2113, 0, 0, 6339, 8484, 0, 0, 32, 2016, 2016, 2016, -2016, 2016, 32, 0, 0, 8452, 2016, 2016, 10597, 0, 0, 0, 2016, 2016, -2016, 32, 0, 0, 8452, 2016, 2016, 2016, 2016, 10597, 0, 0, 0, 2016, -2113, 0, 0, 6339, 2016, 2016, 2016, 2016, 2016, 2016, 10565, 0, 0, 32, -19049, 0, 8452, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12678, 0, 14823, -2016, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_down.c b/lv_icon/x1/img_down.c deleted file mode 100644 index 66f46ade8..000000000 --- a/lv_icon/x1/img_down.c +++ /dev/null @@ -1,26 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DOWN != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_down [] = { /*Width = 15, Height = 10*/ -15, /*Width*/ -10, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33840, 2016, 2016, -2016, 12710, 0, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 4226, 0, 35953, 2016, -14791, 0, 0, 0, 19049, 2016, 2016, 2016, 2016, 2016, 4226, 0, 0, 0, 35953, -10565, 0, 0, 0, 0, 16936, 2016, 2016, 2016, 2145, 0, 0, 0, 0, 29614, -2016, 8484, 0, 0, 0, 0, 19049, 2016, 4226, 0, 0, 0, 0, 29582, 2016, -2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31695, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_driver.c b/lv_icon/x1/img_driver.c deleted file mode 100644 index 88eba73a6..000000000 --- a/lv_icon/x1/img_driver.c +++ /dev/null @@ -1,30 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DRIVER != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_driver [] = { /*Width = 16, Height = 14*/ -16, /*Width*/ -14, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 2016, 2016, 2016, -2016, 2016, 2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33808, 2016, 2016, -2016, 2016, 14823, 2113, 44373, 44373, 44373, 44373, 44373, 44373, 44373, 44373, 6339, 8452, 2016, 2016, -2016, 2016, 0, 23275, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 27469, 0, 2016, 2016, -2016, 29614, 0, 46518, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 48599, 0, 23275, 2016, -2016, 4258, 4258, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 4226, 2113, 2016, -2016, 0, 27501, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 23243, 0, 40147, -21130, 0, 50744, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 44373, 0, 12710, -4226, 0, 21162, 21162, 21162, 57083, 65535, 65535, 65535, 65535, 61309, 21162, 21162, 19017, 0, 0, -2145, 0, 0, 0, 0, 23275, 65535, 65535, 65535, 65535, 31695, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 32, 21162, 21162, 21162, 21162, 2145, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -}; - -#endif diff --git a/lv_icon/x1/img_file.c b/lv_icon/x1/img_file.c deleted file mode 100644 index 222a5a5c0..000000000 --- a/lv_icon/x1/img_file.c +++ /dev/null @@ -1,32 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FILE != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_file [] = { /*Width = 12, Height = 16*/ -12, /*Width*/ -16, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -23275, 21162, 21162, 21162, 21162, 21162, 2016, 2016, 2016, 2016, 2016, 2016, -2145, 0, 0, 0, 0, 0, 2113, 2016, 2016, 2016, 2016, 2016, -2145, 0, 42260, 44373, 44373, 2113, 12678, 2145, 2016, 2016, 2016, 2016, -2145, 0, 63390, 65535, 65535, 2145, 59196, 16904, 2113, 2016, 2016, 2016, -2145, 0, 63390, 65535, 65535, 2145, 63390, 63422, 16904, 2113, 2016, 2016, -2145, 0, 63390, 65535, 65535, 2145, 63390, 65535, 63422, 16904, 2113, 2016, -2145, 0, 63390, 65535, 65535, 2145, 21130, 21162, 21162, 19017, 0, 2145, -2145, 0, 63390, 65535, 65535, 44405, 44373, 44373, 44373, 44373, 2113, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 2145, 0, -2145, 0, 21130, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 32, 0, -2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -}; - -#endif diff --git a/lv_icon/x1/img_folder.c b/lv_icon/x1/img_folder.c deleted file mode 100644 index b1d914817..000000000 --- a/lv_icon/x1/img_folder.c +++ /dev/null @@ -1,28 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FOLDER != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_folder [] = { /*Width = 16, Height = 12*/ -16, /*Width*/ -12, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 40147, 21162, 21162, 21162, 35921, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 23275, 2113, 0, 0, 0, 0, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 2016, -2016, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -25388, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, 21162, -12678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6339, -21130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14791, -29582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23243, -38034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31695, -2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38066, -2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, -2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_left.c b/lv_icon/x1/img_left.c deleted file mode 100644 index d2151238b..000000000 --- a/lv_icon/x1/img_left.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_LEFT != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_left [] = { /*Width = 10, Height = 15*/ -10, /*Width*/ -15, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 27501, 21130, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 29582, 0, 0, 21130, 2016, -2016, 2016, 2016, 2016, 31695, 0, 0, 0, 0, 27469, -2016, 2016, 2016, 29582, 0, 0, 0, 0, 4226, 2016, -2016, 2016, 29582, 0, 0, 0, 0, 4226, 2016, 2016, -2016, 29582, 0, 0, 0, 0, 4226, 2016, 2016, 2016, -29582, 0, 0, 0, 0, 4226, 2016, 2016, 2016, 2016, -0, 0, 0, 0, 0, 2016, 2016, 2016, 2016, 2016, -19049, 0, 0, 0, 0, 8484, 2016, 2016, 2016, 2016, -2016, 19049, 0, 0, 0, 0, 8484, 2016, 2016, 2016, -2016, 2016, 21130, 0, 0, 0, 0, 8484, 2016, 2016, -2016, 2016, 2016, 21130, 0, 0, 0, 0, 8484, 2016, -2016, 2016, 2016, 2016, 19017, 0, 0, 0, 0, 23243, -2016, 2016, 2016, 2016, 2016, 21130, 0, 0, 12710, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 21130, 14791, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_ok.c b/lv_icon/x1/img_ok.c deleted file mode 100644 index b450f2448..000000000 --- a/lv_icon/x1/img_ok.c +++ /dev/null @@ -1,28 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_OK != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_ok [] = { /*Width = 16, Height = 12*/ -16, /*Width*/ -12, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 2113, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 0, 10597, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 0, 6371, 2016, 2016, 2016, 2016, -2016, 4258, 0, 40147, 2016, 2016, 2016, 32, 0, 0, 8452, 2016, 2016, 2016, 2016, 2016, -16936, 0, 0, 32, 2016, 2016, 2113, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 10565, 0, 0, 32, 2113, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 12710, 0, 0, 0, 0, 8452, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 12710, 0, 0, 8484, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 12710, 8484, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_right.c b/lv_icon/x1/img_right.c deleted file mode 100644 index d56e6c81c..000000000 --- a/lv_icon/x1/img_right.c +++ /dev/null @@ -1,31 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_RIGHT != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_right [] = { /*Width = 10, Height = 15*/ -10, /*Width*/ -15, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 21130, 27501, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 21130, 0, 0, 29582, 2016, 2016, 2016, 2016, 2016, -27469, 0, 0, 0, 0, 31695, 2016, 2016, 2016, 2016, -2016, 4226, 0, 0, 0, 0, 29582, 2016, 2016, 2016, -2016, 2016, 4226, 0, 0, 0, 0, 29582, 2016, 2016, -2016, 2016, 2016, 4226, 0, 0, 0, 0, 29582, 2016, -2016, 2016, 2016, 2016, 4226, 0, 0, 0, 0, 29582, -2016, 2016, 2016, 2016, 2016, 0, 0, 0, 0, 0, -2016, 2016, 2016, 2016, 8484, 0, 0, 0, 0, 19049, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 19049, 2016, -2016, 2016, 8484, 0, 0, 0, 0, 21130, 2016, 2016, -2016, 8484, 0, 0, 0, 0, 21130, 2016, 2016, 2016, -23243, 0, 0, 0, 0, 19017, 2016, 2016, 2016, 2016, -2016, 12710, 0, 0, 21130, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 14791, 21130, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_settings.c b/lv_icon/x1/img_settings.c deleted file mode 100644 index d396437a0..000000000 --- a/lv_icon/x1/img_settings.c +++ /dev/null @@ -1,32 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_SETTINGS != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_settings [] = { /*Width = 16, Height = 16*/ -16, /*Width*/ -16, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2113, 0, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 35921, 6339, 40147, 12678, 0, 0, 0, 0, 19017, 2016, 16904, 2016, 2016, 2016, -2016, 2016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2016, 2016, -2016, 2016, 27501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19049, 2016, 2016, -2016, 2016, 14791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10565, 2016, 2016, -2016, 2016, 0, 0, 0, 0, 21162, 2016, 2016, 19017, 0, 0, 0, 0, 2016, 2016, -23275, 12678, 0, 0, 0, 2145, 2016, 2016, 2016, 2016, 0, 0, 0, 0, 12710, 21162, -2145, 0, 0, 0, 0, 6371, 2016, 2016, 2016, 2016, 2113, 0, 0, 0, 0, 0, -2016, 25356, 0, 0, 0, 0, 44373, 2016, 2016, 38034, 0, 0, 0, 0, 31727, 2016, -2016, 2016, 0, 0, 0, 0, 0, 14791, 12710, 0, 0, 0, 0, 2145, 2016, 2016, -2016, 2016, 19017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35921, 2016, 2016, -2016, 2016, 6339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19049, 2016, 2016, -2016, 2016, 8452, 0, 21162, 2145, 0, 0, 0, 0, 0, 6371, 0, 10597, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 35953, 32, 0, 21130, 2016, 2016, 33808, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2145, 0, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x1/img_up.c b/lv_icon/x1/img_up.c deleted file mode 100644 index 1b1ce885d..000000000 --- a/lv_icon/x1/img_up.c +++ /dev/null @@ -1,26 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_UP != 0 && LV_APP_USE_INTERNAL_ICONS == 1 - -#include -#include "misc/others/color.h" - -const color_int_t img_up [] = { /*Width = 15, Height = 10*/ -15, /*Width*/ -10, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 29582, 2016, 2016, 2016, -2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31695, 2016, 2016, -2016, 8484, 0, 0, 0, 0, 19049, 2016, 4226, 0, 0, 0, 0, 29582, 2016, -10565, 0, 0, 0, 0, 16936, 2016, 2016, 2016, 2145, 0, 0, 0, 0, 29614, -14791, 0, 0, 0, 19049, 2016, 2016, 2016, 2016, 2016, 4226, 0, 0, 0, 35953, -2016, 12710, 0, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 4226, 0, 35953, 2016, -2016, 2016, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33840, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_close.c b/lv_icon/x2/img_close.c deleted file mode 100644 index 1360602aa..000000000 --- a/lv_icon/x2/img_close.c +++ /dev/null @@ -1,49 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_CLOSE != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_close [] = { /*Width = 35, Height = 33*/ -35, /*Width*/ -33, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 25356, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21162, 23243, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 33808, 6371, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 4258, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 25388, 10565, 32, 0, 2145, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 14791, 0, 0, 0, 0, 4226, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 6339, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 32, 0, 0, 0, 0, 4226, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 32, 0, 0, 0, 0, 12710, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31695, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 2145, 16904, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4258, 0, 0, 0, 0, 2145, 10597, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 2145, 16904, 2016, 2016, 2016, 2016, 19049, 4226, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 4226, 23275, 2016, 2016, 27501, 4258, 0, 0, 0, 0, 2113, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 32, 6339, 10565, 10597, 8452, 32, 0, 0, 0, 0, 10565, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2145, 10565, 27469, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14823, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12678, 2145, 0, 0, 0, 0, 0, 0, 2113, 8452, 25388, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 6371, 0, 0, 0, 0, 0, 0, 4258, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 6339, 0, 0, 0, 0, 0, 0, 4258, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 32, 0, 0, 0, 0, 0, 0, 0, 4226, 16904, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 32, 2113, 4226, 2145, 0, 0, 0, 0, 2145, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 6339, 0, 0, 0, 0, 2145, 12710, 19049, 21162, 16904, 4258, 0, 0, 0, 0, 4226, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 32, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 4226, 16936, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 10597, 29582, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 2145, 16904, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2113, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 2145, 21162, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 10565, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 2113, 14823, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 12678, 0, 0, 0, 0, 2145, 10565, 27469, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 14791, 4226, 0, 0, 0, 0, 8484, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 23243, 6339, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14823, 2113, 0, 0, 2113, 19049, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 21162, 6371, 4226, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 14823, 4258, 4258, 16936, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 21162, 19017, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 19049, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_down.c b/lv_icon/x2/img_down.c deleted file mode 100644 index a10e7e22d..000000000 --- a/lv_icon/x2/img_down.c +++ /dev/null @@ -1,36 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DOWN != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_down [] = { /*Width = 29, Height = 20*/ -29, /*Width*/ -20, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 23243, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 4258, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 8452, 4226, 12678, 2016, 2016, 2016, -2016, 2016, 16904, 2113, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 2113, 19017, 2016, 2016, -33808, 16904, 4258, 0, 0, 0, 0, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 2113, 12710, 2016, -19049, 2145, 0, 0, 0, 0, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 2145, 23243, -16936, 32, 0, 0, 0, 0, 0, 0, 0, 6371, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 32, 0, 0, 0, 0, 0, 0, 2113, 19049, -29582, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 4258, 19049, 2016, 2016, 2016, 2016, 2016, 31695, 6371, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29582, -2016, 2016, 12678, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29582, 2016, -2016, 2016, 29614, 12710, 4226, 0, 0, 0, 0, 0, 0, 32, 8452, 19049, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29614, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 0, 0, 32, 4226, 8484, 8452, 2113, 0, 0, 0, 0, 0, 0, 2113, 14791, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31695, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 31695, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12678, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 14791, 6371, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_driver.c b/lv_icon/x2/img_driver.c deleted file mode 100644 index 0c5b95b7d..000000000 --- a/lv_icon/x2/img_driver.c +++ /dev/null @@ -1,45 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_DRIVER != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_driver [] = { /*Width = 32, Height = 29*/ -32, /*Width*/ -29, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 31695, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31695, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 23243, 10597, 12678, 12678, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12678, 10597, 21162, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 10597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 23275, 4226, 0, 4226, 6371, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6371, 4226, 0, 2145, 16936, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31727, 12678, 32, 4258, 25356, 35921, 33808, 33808, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 33808, 35921, 25388, 8452, 2113, 6371, 25356, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 21162, 4258, 2145, 14823, 42260, 54938, 52825, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 50744, 52825, 54938, 44373, 19017, 4258, 32, 16904, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 12678, 0, 10565, 27501, 54938, 65535, 63422, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63390, 63422, 65535, 54970, 31695, 12710, 0, 10565, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 6339, 0, 19017, 40147, 61277, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 61309, 42292, 21162, 2113, 4258, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 25388, 2145, 4226, 29614, 50712, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 63390, 50744, 31727, 4258, 32, 19049, 2016, 2016, 2016, -2016, 2016, 2016, 14791, 0, 8484, 40179, 59196, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 59196, 40179, 8484, 0, 8484, 27501, 2016, 2016, -2016, 2016, 21162, 4226, 0, 14791, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 48631, 12710, 0, 0, 16936, 2016, 2016, -2016, 2016, 12710, 0, 2145, 21162, 54970, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 19049, 32, 0, 10565, 2016, 2016, -2016, 2016, 8452, 0, 12710, 31727, 57083, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 57051, 29582, 8484, 0, 6371, 2016, 2016, -2016, 29582, 4226, 2145, 25356, 44373, 61309, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 61277, 38066, 19049, 2113, 2145, 23243, 2016, -2016, 16936, 32, 6371, 38034, 57083, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 50712, 29614, 6339, 0, 10597, 29614, -27469, 6371, 0, 8452, 35953, 52857, 57051, 59164, 57083, 59196, 63422, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65503, 59196, 57083, 59164, 54970, 46518, 29614, 6371, 0, 2113, 21130, -19017, 0, 0, 4258, 23243, 31727, 31727, 31727, 29614, 38066, 54970, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 59164, 38066, 29614, 31727, 31695, 29582, 19049, 4226, 0, 0, 14791, -14823, 0, 0, 2145, 10597, 14823, 14791, 12710, 10597, 21130, 42260, 57051, 65503, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 61277, 46486, 23243, 10597, 12710, 14791, 14791, 10565, 2113, 0, 0, 10597, -14823, 0, 0, 0, 2113, 2145, 2145, 2113, 32, 8452, 23275, 42260, 63390, 65535, 65535, 65535, 65535, 65535, 65535, 63422, 48599, 29582, 8484, 32, 2113, 2145, 2145, 2113, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10565, 25388, 50712, 61277, 59164, 57083, 57083, 59164, 61277, 50744, 31727, 14823, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 10565, 27469, 33840, 33808, 31727, 31727, 33808, 33840, 27501, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 14823, 14791, 14791, 14791, 14791, 14823, 10597, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 2145, 2145, 2145, 2145, 2145, 2145, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -14823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10597, -12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, -23243, 6371, 6371, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 6371, 4226, 19017, -2016, 31727, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 31727, 31695, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_file.c b/lv_icon/x2/img_file.c deleted file mode 100644 index d6cde6c25..000000000 --- a/lv_icon/x2/img_file.c +++ /dev/null @@ -1,49 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FILE != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_file [] = { /*Width = 24, Height = 33*/ -24, /*Width*/ -33, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 31695, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31695, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -27469, 12678, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12678, 12678, 19017, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -19017, 2113, 2113, 2113, 32, 0, 0, 0, 0, 0, 2113, 4226, 6339, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -14791, 0, 0, 0, 4226, 6339, 6339, 6339, 6371, 4258, 0, 0, 0, 6371, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -14823, 0, 0, 4258, 23275, 33808, 33808, 33808, 35921, 25388, 6371, 0, 4226, 6339, 6371, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 8484, 38066, 52857, 52825, 52857, 54970, 40179, 10565, 2145, 19017, 19049, 4226, 6371, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 10597, 46518, 63422, 63422, 65503, 65535, 48631, 10597, 8484, 42260, 46486, 19017, 6339, 6339, 19049, 2016, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 12678, 50712, 65535, 65535, 65535, 65535, 52857, 12678, 10597, 52825, 61309, 38066, 19017, 2145, 6339, 27501, 2016, 2016, 2016, 2016, 2016, -16904, 0, 0, 12678, 50712, 65535, 65535, 65535, 65535, 52825, 10597, 10597, 50712, 65535, 61277, 44405, 19017, 4258, 6339, 19017, 2016, 2016, 2016, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 10597, 50712, 65535, 65535, 61309, 38066, 19049, 4226, 6371, 27501, 2016, 2016, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 10597, 50744, 65535, 65535, 65535, 63390, 48599, 21162, 8452, 6371, 19049, 2016, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 8452, 42260, 57083, 57083, 59164, 61277, 50712, 27469, 10565, 0, 4226, 27501, 2016, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 52825, 10597, 32, 19049, 29582, 29582, 29614, 29614, 27469, 21130, 10597, 32, 0, 4258, 23275, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 54938, 21162, 8484, 19017, 23243, 23243, 23243, 23243, 23243, 25356, 19017, 4226, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 59196, 42260, 33808, 35921, 35953, 35953, 35953, 35953, 38034, 40147, 29614, 8452, 0, 0, 10597, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 63422, 54970, 50744, 50712, 50712, 50712, 50712, 50712, 50744, 52857, 40179, 12678, 0, 0, 10597, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 63422, 63390, 63390, 63390, 63390, 63390, 63390, 63422, 65535, 50712, 14823, 0, 0, 10597, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 48631, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 52857, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 50712, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 54938, 16904, 0, 0, 12678, -16904, 0, 0, 12678, 52825, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 65535, 57051, 16904, 0, 0, 12678, -16904, 0, 0, 10565, 42292, 59164, 59164, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 57083, 59164, 61309, 46518, 14791, 0, 0, 12678, -16904, 0, 0, 4258, 23275, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 33808, 33840, 25388, 8452, 0, 0, 12678, -14823, 0, 0, 32, 8484, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 10565, 2113, 0, 0, 10597, -12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, -23243, 6371, 6371, 6371, 6371, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6371, 6371, 6371, 4226, 19017, -2016, 31727, 33808, 33808, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 33808, 33808, 31727, 31695, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_folder.c b/lv_icon/x2/img_folder.c deleted file mode 100644 index 39ea32130..000000000 --- a/lv_icon/x2/img_folder.c +++ /dev/null @@ -1,44 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_FOLDER != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_folder [] = { /*Width = 34, Height = 28*/ -34, /*Width*/ -28, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 31727, 31727, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 25356, 16904, 12710, 12710, 12710, 12710, 14823, 21162, 33808, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 27469, 12710, 6339, 4226, 2145, 2145, 2145, 2145, 2145, 4226, 10597, 27469, 2016, 33808, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31727, 31695, 29614, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 27469, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8484, 14791, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 12710, 10597, 8484, 23243, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, -2016, 2016, 2016, 23243, 6339, 8452, 8484, 8484, 8484, 8484, 8484, 8484, 8484, 8484, 8452, 8452, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6371, 6339, 2145, 19017, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 31695, 29582, 27501, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 29582, 27501, 29582, 29582, 2016, 2016, -2016, 29582, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14823, 14791, 12678, 25388, 2016, -2016, 25356, 8452, 4226, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 19049, 2016, -2016, 25356, 6339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19017, 2016, -2016, 29582, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 23275, 2016, -2016, 33808, 14823, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 8484, 27469, 2016, -2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2145, 12678, 31695, 2016, -2016, 2016, 23243, 4258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 16904, 2016, 2016, -2016, 2016, 25388, 6339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 19049, 2016, 2016, -2016, 2016, 29614, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 23275, 2016, 2016, -2016, 2016, 33808, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6339, 27469, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 31695, 2016, 2016, -2016, 2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 2016, 2016, 2016, -2016, 2016, 2016, 10565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 2016, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 2016, 2016, 2016, -2016, 2016, 2016, 19049, 4226, 6371, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 6371, 4226, 16936, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31695, 31727, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 33808, 31727, 31695, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_left.c b/lv_icon/x2/img_left.c deleted file mode 100644 index 359bacbd0..000000000 --- a/lv_icon/x2/img_left.c +++ /dev/null @@ -1,46 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_LEFT != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_left [] = { /*Width = 19, Height = 30*/ -19, /*Width*/ -30, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 29582, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 14791, 10565, 21162, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 10565, 32, 0, 6371, 23243, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12678, 32, 0, 0, 0, 6371, 23243, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 10597, 32, 0, 0, 0, 0, 0, 8452, 25356, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31695, 14791, 2113, 0, 0, 0, 0, 0, 0, 2145, 21130, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 8452, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 29582, 12678, 32, 0, 0, 0, 0, 0, 0, 32, 8452, 23275, 2016, -2016, 2016, 2016, 2016, 2016, 29614, 10597, 32, 0, 0, 0, 0, 0, 0, 0, 8452, 31727, 2016, 2016, -2016, 2016, 2016, 2016, 29614, 12710, 32, 0, 0, 0, 0, 0, 0, 32, 8452, 25356, 2016, 2016, 2016, -2016, 2016, 2016, 29614, 10597, 32, 0, 0, 0, 0, 0, 0, 0, 8452, 31727, 2016, 2016, 2016, 2016, -2016, 2016, 29614, 12710, 32, 0, 0, 0, 0, 0, 0, 2113, 8452, 25356, 2016, 2016, 2016, 2016, 2016, -2016, 29614, 10597, 32, 0, 0, 0, 0, 0, 0, 0, 8452, 31727, 2016, 2016, 2016, 2016, 2016, 2016, -29614, 12678, 32, 0, 0, 0, 0, 0, 0, 32, 8452, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -12678, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -8484, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -23243, 6339, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 21162, 6371, 0, 0, 0, 0, 0, 0, 0, 32, 14791, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 21162, 6371, 0, 0, 0, 0, 0, 0, 0, 4226, 12710, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 23243, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 0, 0, 0, 2145, 12710, 29614, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 23243, 8452, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 0, 0, 0, 2145, 12710, 29614, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 12710, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 0, 0, 0, 4226, 19017, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 6371, 0, 0, 0, 0, 0, 0, 4258, 19049, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 0, 0, 0, 0, 2113, 16904, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 8452, 0, 0, 4258, 16904, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21162, 8452, 4258, 16904, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 21162, 31727, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_ok.c b/lv_icon/x2/img_ok.c deleted file mode 100644 index 3c6da7e59..000000000 --- a/lv_icon/x2/img_ok.c +++ /dev/null @@ -1,47 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_OK != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_ok [] = { /*Width = 34, Height = 31*/ -34, /*Width*/ -31, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19017, 6339, 6371, 21130, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 6339, 29582, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 32, 8452, 25388, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 4258, 0, 0, 0, 0, 2145, 10565, 29582, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 0, 10565, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 33808, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27501, 6339, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 25356, 10565, 6339, 14823, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 19049, 4258, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 8484, 0, 0, 2113, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 4226, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 31727, 12710, 2113, 0, 0, 0, 2145, 16936, 2016, 2016, 2016, 2016, 21130, 4258, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 33808, 14823, 4226, 0, 0, 0, 0, 4226, 25356, 2016, 2016, 29614, 6371, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 14791, 0, 0, 0, 0, 32, 6339, 10565, 12678, 8484, 2113, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31727, 14791, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2145, 10597, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 16904, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 16904, 4258, 0, 0, 0, 0, 0, 0, 2145, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 16904, 2113, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 16904, 4258, 0, 0, 2145, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 16904, 2113, 0, 12678, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 19017, 16904, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_right.c b/lv_icon/x2/img_right.c deleted file mode 100644 index 59d06c90a..000000000 --- a/lv_icon/x2/img_right.c +++ /dev/null @@ -1,46 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_RIGHT != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_right [] = { /*Width = 19, Height = 30*/ -19, /*Width*/ -30, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 29582, 33808, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 21162, 10565, 14791, 27501, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 23243, 6371, 0, 32, 10565, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 23243, 6371, 0, 0, 0, 32, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -25356, 8452, 0, 0, 0, 0, 0, 32, 10597, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -21130, 2145, 0, 0, 0, 0, 0, 0, 2113, 14791, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 8452, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 23275, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29582, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 25356, 8452, 2113, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29614, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 6371, 0, 0, 0, 0, 0, 0, 0, 0, 8484, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 29582, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 6339, 23243, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 0, 0, 0, 6371, 21162, 2016, -2016, 2016, 2016, 2016, 2016, 29614, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 6371, 21162, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 23243, 2016, 2016, 2016, -2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 8452, 23243, 2016, 2016, 2016, 2016, 2016, -2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -19017, 4226, 0, 0, 0, 0, 0, 0, 0, 4258, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -19049, 4258, 0, 0, 0, 0, 0, 0, 6371, 21130, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 16904, 2113, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 16904, 4258, 0, 0, 8452, 23243, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 16904, 4258, 8452, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31727, 21162, 25388, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_settings.c b/lv_icon/x2/img_settings.c deleted file mode 100644 index 75a0b09e3..000000000 --- a/lv_icon/x2/img_settings.c +++ /dev/null @@ -1,49 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_SETTINGS != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_settings [] = { /*Width = 32, Height = 33*/ -32, /*Width*/ -33, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 29582, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 27469, 10597, 10565, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 16936, 0, 0, 14791, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 21130, 23243, 2016, 2016, 29614, 19049, 12710, 6371, 2113, 0, 0, 32, 8452, 14823, 23275, 2016, 2016, 2016, 31727, 29614, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 16936, 2145, 4258, 25356, 27469, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 6339, 19017, 2016, 33808, 14791, 10597, 23275, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14823, 0, 0, 32, 6339, 6339, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 4226, 8452, 8452, 2145, 32, 2113, 16904, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10597, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31727, 14791, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 8452, 25388, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29614, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 29614, 10597, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 6339, 25356, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 21162, 4226, 32, 0, 0, 0, 0, 0, 2113, 4258, 8484, 10597, 10597, 8484, 4226, 32, 0, 0, 0, 0, 0, 0, 2113, 19017, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 2113, 8484, 21162, 38066, 46518, 46486, 35953, 19017, 6371, 32, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 31727, 6371, 0, 0, 0, 0, 0, 0, 6339, 23275, 40179, 57083, 2016, 2016, 54970, 35953, 19049, 4258, 0, 0, 0, 0, 0, 0, 6371, 31727, 2016, 2016, 2016, -2016, 29582, 23275, 14823, 2145, 0, 0, 0, 0, 0, 0, 12710, 44373, 61309, 2016, 2016, 2016, 2016, 59164, 40179, 10565, 0, 0, 0, 0, 0, 0, 2145, 16904, 25356, 27501, 2016, -27469, 10565, 6371, 4226, 32, 0, 0, 0, 0, 0, 0, 16936, 54970, 2016, 2016, 2016, 2016, 2016, 2016, 52825, 14791, 0, 0, 0, 0, 0, 0, 32, 4258, 6371, 8452, 23275, -16904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 14823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12678, -21162, 4226, 2145, 2113, 0, 0, 0, 0, 0, 0, 32, 16936, 50744, 2016, 2016, 2016, 2016, 2016, 2016, 48631, 14791, 0, 0, 0, 0, 0, 0, 0, 2145, 4226, 2113, 16936, -2016, 29582, 21162, 12678, 2145, 0, 0, 0, 0, 0, 0, 10597, 40147, 59164, 2016, 2016, 2016, 2016, 54938, 35921, 8484, 0, 0, 0, 0, 0, 0, 4226, 16936, 25388, 29582, 2016, -2016, 2016, 2016, 23275, 4258, 0, 0, 0, 0, 0, 0, 4258, 25356, 40179, 52825, 2016, 2016, 50744, 35921, 21130, 4226, 0, 0, 0, 0, 0, 0, 6371, 31695, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 8452, 0, 0, 0, 0, 0, 0, 32, 4258, 12678, 23243, 27469, 27469, 21130, 10565, 4226, 32, 0, 0, 0, 0, 0, 0, 12678, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4258, 8452, 6371, 4226, 0, 0, 0, 0, 0, 0, 0, 32, 4226, 23243, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 27469, 8452, 2113, 0, 0, 0, 0, 0, 0, 0, 32, 32, 32, 32, 0, 0, 0, 0, 0, 0, 0, 4258, 21162, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 27501, 10565, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6339, 25388, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 19017, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4226, 16904, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 0, 0, 0, 2113, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 8452, 27469, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14823, 0, 0, 0, 10597, 12678, 2113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 32, 0, 0, 2145, 21130, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 27501, 12710, 8484, 14791, 29582, 29614, 19017, 10597, 8452, 4226, 32, 0, 0, 0, 2113, 4226, 6339, 10597, 19017, 16936, 8452, 6371, 14791, 29614, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 33808, 21130, 4258, 0, 0, 2113, 8484, 19017, 29614, 2016, 2016, 2016, 29582, 27469, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 8484, 0, 0, 4226, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12678, 0, 0, 6371, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 4258, 2145, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 31695, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -}; - -#endif diff --git a/lv_icon/x2/img_up.c b/lv_icon/x2/img_up.c deleted file mode 100644 index dec34790b..000000000 --- a/lv_icon/x2/img_up.c +++ /dev/null @@ -1,36 +0,0 @@ -#include "img_conf.h" -#include "lv_conf.h" - -#if USE_IMG_UP != 0 && LV_APP_USE_INTERNAL_ICONS == 2 - -#include -#include "misc/others/color.h" - -const color_int_t img_up [] = { /*Width = 29, Height = 20*/ -29, /*Width*/ -20, /*Heigth*/ -16, /*Color depth = 16*/ -1, /*Flags: Transp = 1*/ -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 14791, 6371, 12678, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12710, 29614, 2016, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 29614, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29614, 2016, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 2016, 2016, 12710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 12678, 29614, 2016, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 31695, 12710, 4226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 31695, 2016, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 14791, 32, 0, 0, 0, 0, 0, 0, 32, 4226, 8484, 8452, 2113, 0, 0, 0, 0, 0, 0, 2113, 14791, 31695, 2016, 2016, 2016, -2016, 2016, 29614, 12710, 4226, 0, 0, 0, 0, 0, 0, 32, 8452, 19049, 2016, 2016, 8484, 0, 0, 0, 0, 0, 0, 0, 2113, 10597, 29614, 2016, 2016, -2016, 2016, 12678, 0, 0, 0, 0, 0, 0, 0, 0, 6371, 23243, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 0, 0, 0, 32, 12678, 29582, 2016, -29582, 12710, 2145, 0, 0, 0, 0, 0, 0, 0, 4258, 19049, 2016, 2016, 2016, 2016, 2016, 31695, 6371, 0, 0, 0, 0, 0, 0, 0, 32, 10597, 29582, -16936, 32, 0, 0, 0, 0, 0, 0, 0, 6371, 19049, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23243, 6371, 32, 0, 0, 0, 0, 0, 0, 2113, 19049, -19049, 2145, 0, 0, 0, 0, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 0, 0, 0, 0, 2145, 23243, -33808, 16904, 4258, 0, 0, 0, 0, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25356, 8452, 32, 0, 0, 0, 2113, 12710, 2016, -2016, 2016, 16904, 2113, 0, 0, 6339, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 31727, 8452, 0, 0, 2113, 19017, 2016, 2016, -2016, 2016, 2016, 16904, 4258, 6371, 21162, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 23275, 8452, 4226, 12678, 2016, 2016, 2016, -2016, 2016, 2016, 2016, 23243, 23275, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 2016, 25388, 31695, 2016, 2016, 2016, -}; - -#endif From e07abd8ad61674192915aab9a33303db67115c25 Mon Sep 17 00:00:00 2001 From: Gabor Date: Fri, 21 Apr 2017 09:15:39 +0200 Subject: [PATCH 32/53] review: bugfixes, minor updates --- lv_app/lv_app.c | 107 ++------------------- lv_app/lv_app_util/lv_app_notice.c | 2 +- lv_appx/lv_app_terminal.c | 4 +- lv_conf_temp.h | 2 +- lv_draw/lv_draw.c | 26 +++--- lv_draw/lv_draw.h | 3 +- lv_draw/lv_draw_rbasic.c | 58 ++++++++++-- lv_draw/lv_draw_rbasic.h | 6 +- lv_draw/lv_draw_vbasic.c | 46 ++++----- lv_draw/lv_draw_vbasic.h | 6 +- lv_obj/lv_obj.c | 4 +- lv_obj/lv_obj.h | 6 +- lv_obj/lv_refr.c | 20 ++-- lv_obj/lv_style.c | 104 ++++++++++----------- lv_obj/lv_style.h | 16 +++- lv_obj/lv_vdb.c | 12 +-- lv_obj/lv_vdb.h | 7 +- lv_objx/lv_bar.c | 68 ++++++++++---- lv_objx/lv_bar.h | 64 +++++++------ lv_objx/lv_btn.c | 125 ++++++++++++------------- lv_objx/lv_btn.h | 16 ++++ lv_objx/lv_btnm.c | 24 +++-- lv_objx/lv_btnm.h | 13 +++ lv_objx/lv_chart.c | 132 +++++++++++++------------- lv_objx/lv_chart.h | 65 ++++++++++--- lv_objx/lv_cont.c | 43 ++++----- lv_objx/lv_cont.h | 9 +- lv_objx/lv_ddlist.c | 12 ++- lv_objx/lv_ddlist.h | 13 ++- lv_objx/lv_gauge.c | 7 +- lv_objx/lv_img.c | 34 ++++--- lv_objx/lv_img.h | 2 +- lv_objx/lv_label.c | 30 +++--- lv_objx/lv_label.h | 10 +- lv_objx/lv_led.c | 19 ++-- lv_objx/lv_led.h | 7 +- lv_objx/lv_line.c | 13 +-- lv_objx/lv_line.h | 3 +- lv_objx/lv_list.c | 119 +++++++++++++++++++----- lv_objx/lv_list.h | 55 ++++++++++- lv_objx/lv_mbox.c | 38 ++------ lv_objx/lv_mbox.h | 49 +++++++--- lv_objx/lv_page.c | 31 ++++--- lv_objx/lv_page.h | 38 +++++++- lv_objx/lv_slider.c | 144 +++++++++++++++++------------ lv_objx/lv_slider.h | 35 ++++++- lv_objx/lv_ta.c | 53 ++++++++--- lv_objx/lv_ta.h | 25 ++++- lv_objx/lv_win.c | 13 ++- lv_objx/lv_win.h | 60 +++++++++--- 50 files changed, 1078 insertions(+), 720 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index a3e800557..e3534989b 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -10,7 +10,7 @@ #if LV_APP_ENABLE != 0 #include -#include "lvgl/lv_misc/anim.h" +#include "misc/gfx/anim.h" #include "lvgl/lv_obj/lv_refr.h" #include "lv_app_util/lv_app_kb.h" @@ -64,7 +64,6 @@ static void lv_app_win_close_anim_cb(lv_obj_t * app_win); static void lv_app_win_minim_anim_cb(lv_obj_t * app_win); #endif -static void lv_app_init_icons(void); static void lv_app_init_style(void); /********************** @@ -86,48 +85,6 @@ static lv_obj_t * app_list; /*A list which is opened on 'app_btn' release*/ static lv_app_inst_t * con_send; /*The sender application in connection mode. Not NLL means connection mode is active*/ static lv_app_style_t app_style; /*Styles for application related things*/ -/*Declare icons*/ -#if USE_IMG_CLOSE != 0 -LV_IMG_DECLARE(img_close); -#endif - -#if USE_IMG_DOWN != 0 -LV_IMG_DECLARE(img_down); -#endif - -#if USE_IMG_DRIVER != 0 -LV_IMG_DECLARE(img_driver); -#endif - -#if USE_IMG_FILE != 0 -LV_IMG_DECLARE(img_file); -#endif - -#if USE_IMG_FOLDER != 0 -LV_IMG_DECLARE(img_folder); -#endif - -#if USE_IMG_LEFT != 0 -LV_IMG_DECLARE(img_left); -#endif - -#if USE_IMG_OK != 0 -LV_IMG_DECLARE(img_ok); -#endif - -#if USE_IMG_RIGHT != 0 -LV_IMG_DECLARE(img_right); -#endif - -#if USE_IMG_SETTINGS != 0 -LV_IMG_DECLARE(img_settings); -#endif - -#if USE_IMG_UP != 0 -LV_IMG_DECLARE(img_up); -#endif - - /********************** * MACROS **********************/ @@ -147,7 +104,6 @@ void lv_app_init(void) ll_init(&app_con_ll, sizeof(lv_app_con_t)); app_scr = lv_scr_act(); - lv_app_init_icons(); lv_app_init_style(); #if LV_APP_DESKTOP != 0 @@ -268,7 +224,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) #if LV_APP_EFFECT_ANIM != 0 lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_SCROLL); #else - lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(font_get(app_style.sc_title_style.font)) >> LV_FONT_ANTIALIAS); + lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(font_get(app_style.sc_title_style.font)) >> FONT_ANTIALIAS); lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_DOTS); #endif lv_label_set_text(app->sc_title, app->name); @@ -324,11 +280,13 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) lv_obj_set_style(lv_win_get_header(app->win), &app_style.win_header); lv_win_set_title(app->win, app->dsc->name); + lv_win_set_style_cbtn(app->win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); + if(app->dsc->conf_open != NULL) { - lv_win_add_ctrl_btn(app->win, "U:/icon_settings", lv_app_win_conf_action); + lv_win_add_ctrl_btn(app->win, SYMBOL_SETUP, lv_app_win_conf_action); } - lv_win_add_ctrl_btn(app->win, "U:/icon_down", lv_app_win_minim_action); - lv_win_add_ctrl_btn(app->win, "U:/icon_close",lv_app_win_close_action); + lv_win_add_ctrl_btn(app->win, SYMBOL_DOWN, lv_app_win_minim_action); + lv_win_add_ctrl_btn(app->win, SYMBOL_CLOSE,lv_app_win_close_action); app->win_data = dm_alloc(app->dsc->win_data_size); @@ -611,7 +569,7 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d lv_obj_set_style(scrl, &app_style.menu); lv_obj_set_size(app_list, LV_HOR_RES / 3, (LV_VER_RES * 3) / 4); lv_obj_align(app_list, menuh, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); - lv_list_set_styles_liste(app_list, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); + lv_list_set_styles_btn(app_list, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); lv_app_dsc_t ** dsc; lv_obj_t * elem; @@ -1142,58 +1100,13 @@ static void lv_app_init_style(void) lv_style_get(LV_STYLE_TRANSP, &app_style.win_scrl); - lv_style_get(LV_STYLE_BTN_REL, &app_style.win_cbtn_rel); app_style.win_cbtn_rel.font = font_get(LV_IMG_DEF_SYMBOL_FONT); - memcpy(&app_style.win_cbtn_pr, &app_style.win_cbtn_rel, sizeof(lv_style_t)); + lv_style_get(LV_STYLE_BTN_PR, &app_style.win_cbtn_pr); + app_style.win_cbtn_pr.font = font_get(LV_IMG_DEF_SYMBOL_FONT); } -/** - * Create files for the icons - */ -static void lv_app_init_icons(void) -{ -#if USE_IMG_CLOSE != 0 - lv_img_create_file("icon_close", img_close); -#endif - -#if USE_IMG_DOWN != 0 - lv_img_create_file("icon_down", img_down); -#endif - -#if USE_IMG_DRIVER != 0 - lv_img_create_file("icon_driver", img_driver); -#endif - -#if USE_IMG_FILE != 0 - lv_img_create_file("icon_file", img_file); -#endif - -#if USE_IMG_FOLDER != 0 - lv_img_create_file("icon_folder", img_folder); -#endif - -#if USE_IMG_LEFT != 0 - lv_img_create_file("icon_left", img_left); -#endif - -#if USE_IMG_OK != 0 - lv_img_create_file("icon_ok", img_ok); -#endif - -#if USE_IMG_RIGHT != 0 - lv_img_create_file("icon_right", img_right); -#endif - -#if USE_IMG_SETTINGS != 0 - lv_img_create_file("icon_settings", img_settings); -#endif - -#if USE_IMG_UP != 0 - lv_img_create_file("icon_up", img_up); -#endif -} #endif /*LV_APP_ENABLE != 0*/ diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index 907d1a7b0..d2593571b 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -12,7 +12,7 @@ #include #include "lvgl/lv_objx/lv_label.h" -#include "lvgl/lv_misc/anim.h" +#include "misc/gfx/anim.h" #include /********************* diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index 52d4452dd..3bc4e0d80 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -8,7 +8,7 @@ *********************/ #include -#include +#include #include #include #include @@ -17,7 +17,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/lv_conf_temp.h b/lv_conf_temp.h index ca9ed3b56..47b736df1 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -26,7 +26,7 @@ * Use LV_DOWNSCALE to compensate * the down scaling effect of antialiassing*/ #define LV_ANTIALIAS 1 -#define LV_FONT_ANTIALIAS 0 +#define FONT_ANTIALIAS 0 /*Set the downscaling value*/ #if LV_ANTIALIAS == 0 #define LV_DOWNSCALE 1 diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 27b1cf157..bcf566b07 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -6,12 +6,12 @@ /********************* * INCLUDES *********************/ -#include +#include #include "lv_conf.h" #include #include -#include "lvgl/lv_misc/text.h" +#include "misc/gfx/text.h" #include "lv_draw.h" #include "misc/fs/fsint.h" #include "misc/math/math_base.h" @@ -246,7 +246,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ pos.y = cords_p->y1; /*Align the line to middle if enabled*/ - if(style->txt_align != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { line_length = txt_get_width(&txt[line_start], line_end - line_start, font, style->letter_space, flag); pos.x += (w - line_length) / 2; @@ -263,7 +263,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ cmd_state = CMD_STATE_WAIT; for(i = line_start; i < line_end; i++) { - /*Handle the recolor command*/ + /*Handle the re-color command*/ if((flag & TXT_FLAG_RECOLOR) != 0) { if(txt[i] == TXT_RECOLOR_CMD) { if(cmd_state == CMD_STATE_WAIT) { /*Start char*/ @@ -300,7 +300,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ if(cmd_state == CMD_STATE_IN) letter_fp(&pos, mask_p, font, txt[i], recolor, style->opa); else letter_fp(&pos, mask_p, font, txt[i], style->ccolor, style->opa); - pos.x += (font_get_width(font, txt[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; + pos.x += (font_get_width(font, txt[i]) >> FONT_ANTIALIAS) + style->letter_space; } /*Go to next line*/ line_start = line_end; @@ -308,13 +308,13 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ pos.x = cords_p->x1; /*Align to middle*/ - if(style->txt_align != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { line_length = txt_get_width(&txt[line_start], line_end - line_start, font, style->letter_space, flag); pos.x += (w - line_length) / 2; } /*Go the next line position*/ - pos.y += font_get_height(font) >> LV_FONT_ANTIALIAS; + pos.y += font_get_height(font) >> FONT_ANTIALIAS; pos.y += style->line_space; } } @@ -1061,17 +1061,17 @@ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, c shadow_style.empty = 1; shadow_style.bwidth = swidth; shadow_style.radius = style->radius; - if(shadow_style.radius == LV_CONT_CIRCLE) { + if(shadow_style.radius == LV_DRAW_CIRCLE) { shadow_style.radius = MATH_MIN(area_get_width(cords_p), area_get_height(cords_p)); } shadow_style.radius += swidth + 1; shadow_style.bcolor = style->scolor; - shadow_style.bopa = 100; + shadow_style.bopa = style->opa; - shadow_area.x1 -= swidth; - shadow_area.y1 -= swidth; - shadow_area.x2 += swidth; - shadow_area.y2 += swidth; + shadow_area.x1 -= swidth - 1; + shadow_area.y1 -= swidth - 1; + shadow_area.x2 += swidth - 1; + shadow_area.y2 += swidth - 1; cord_t i; shadow_style.opa = style->opa / (swidth / res); diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index 850cea887..dac48113d 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -10,13 +10,12 @@ * INCLUDES *********************/ #include "misc_conf.h" -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" #include "../lv_obj/lv_style.h" /********************* * DEFINES *********************/ -#define LV_CONT_CIRCLE ((cord_t)-1) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS diff --git a/lv_draw/lv_draw_rbasic.c b/lv_draw/lv_draw_rbasic.c index 2941944b5..02219c306 100644 --- a/lv_draw/lv_draw_rbasic.c +++ b/lv_draw/lv_draw_rbasic.c @@ -9,7 +9,7 @@ #include "lv_draw_rbasic.h" #include "lv_conf.h" #include "hal/disp/disp.h" -#include "../lv_misc/font.h" +#include "misc/gfx/font.h" /********************* * DEFINES @@ -59,8 +59,7 @@ void lv_rfill(const area_t * cords_p, const area_t * mask_p, if(union_ok != false){ - disp_area(DISP_ID_ALL, masked_area.x1, masked_area.y1, masked_area.x2, masked_area.y2); - disp_fill(DISP_ID_ALL, color); + disp_fill(masked_area.x1, masked_area.y1, masked_area.x2, masked_area.y2, color); } } @@ -73,7 +72,7 @@ void lv_rfill(const area_t * cords_p, const area_t * mask_p, * @param color color of letter * @param opa opacity of letter (ignored, only for compatibility with lv_vletter) */ -void lv_rletter(const point_t * pos_p, const area_t * mask_p, +void lv_rletter(const point_t * pos_p, const area_t * mask_p, const font_t * font_p, uint8_t letter, color_t color, opa_t opa) { @@ -81,7 +80,7 @@ void lv_rletter(const point_t * pos_p, const area_t * mask_p, const uint8_t * bitmap_p = font_get_bitmap(font_p, letter); uint8_t col, col_sub, row; - +#if FONT_ANTIALIAS == 0 for(row = 0; row < font_p->height_row; row ++) { for(col = 0, col_sub = 7; col < w; col ++, col_sub--) { if(*bitmap_p & (1 << col_sub)) { @@ -99,6 +98,48 @@ void lv_rletter(const point_t * pos_p, const area_t * mask_p, /*Go to the next row*/ bitmap_p ++; } +#else + const uint8_t * map1_p = bitmap_p; + const uint8_t * map2_p = bitmap_p + font_p->width_byte; + uint8_t px_cnt; + uint8_t col_byte_cnt; + for(row = 0; row < (font_p->height_row >> 1); row ++) { + col_byte_cnt = 0; + col_sub = 7; + for(col = 0; col < (w >> 1); col ++) { + + px_cnt = 0; + if((*map1_p & (1 << col_sub)) != 0) px_cnt++; + if((*map2_p & (1 << col_sub)) != 0) px_cnt++; + if(col_sub != 0) col_sub --; + else { + col_sub = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + if((*map1_p & (1 << col_sub)) != 0) px_cnt++; + if((*map2_p & (1 << col_sub)) != 0) px_cnt++; + if(col_sub != 0) col_sub --; + else { + col_sub = 7; + col_byte_cnt ++; + map1_p ++; + map2_p ++; + } + + + if(px_cnt != 0) { + lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color_mix(color, COLOR_SILVER, 63 * px_cnt)); + } + } + + map1_p += font_p->width_byte; + map2_p += font_p->width_byte; + map1_p += font_p->width_byte - col_byte_cnt; + map2_p += font_p->width_byte - col_byte_cnt; + } +#endif } /** @@ -131,11 +172,10 @@ void lv_rmap(const area_t * cords_p, const area_t * mask_p, if(transp == false) { cord_t row; + cord_t mask_w = area_get_width(&masked_a) - 1; for(row = 0; row < area_get_height(&masked_a); row++) { - cord_t col; - for(col = 0; col < area_get_width(&masked_a); col ++) { - lv_rpx(masked_a.x1 + col, masked_a.y1 + row, mask_p, map_p[col]); - } + disp_map(masked_a.x1, masked_a.y1 + row, masked_a.x1 + mask_w, masked_a.y1 + row, map_p); + map_p += map_width; } }else { diff --git a/lv_draw/lv_draw_rbasic.h b/lv_draw/lv_draw_rbasic.h index 3f17bf6c6..4f867b57f 100644 --- a/lv_draw/lv_draw_rbasic.h +++ b/lv_draw/lv_draw_rbasic.h @@ -9,9 +9,9 @@ /********************* * INCLUDES *********************/ -#include "misc/others/color.h" -#include "../lv_misc/area.h" -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" +#include "misc/gfx/font.h" /********************* * DEFINES diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index 8296b3ef3..f1136ae5b 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -4,9 +4,9 @@ */ #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -66,13 +66,13 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, /*If there are common part of the three area then draw to the vdb*/ if(union_ok == true) { area_t vdb_rel_a; /*Stores relative coordinates on vdb*/ - vdb_rel_a.x1 = res_a.x1 - vdb_p->vdb_area.x1; - vdb_rel_a.y1 = res_a.y1 - vdb_p->vdb_area.y1; - vdb_rel_a.x2 = res_a.x2 - vdb_p->vdb_area.x1; - vdb_rel_a.y2 = res_a.y2 - vdb_p->vdb_area.y1; + vdb_rel_a.x1 = res_a.x1 - vdb_p->area.x1; + vdb_rel_a.y1 = res_a.y1 - vdb_p->area.y1; + vdb_rel_a.x2 = res_a.x2 - vdb_p->area.x1; + vdb_rel_a.y2 = res_a.y2 - vdb_p->area.y1; color_t * vdb_buf_tmp = vdb_p->buf; - uint32_t vdb_width = area_get_width(&vdb_p->vdb_area); + uint32_t vdb_width = area_get_width(&vdb_p->area); /*Move the vdb_tmp to the first row*/ vdb_buf_tmp += vdb_width * vdb_rel_a.y1; @@ -142,7 +142,7 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, pos_p->y + letter_h < mask_p->y1 || pos_p->y > mask_p->y2) return; lv_vdb_t * vdb_p = lv_vdb_get(); - cord_t vdb_width = area_get_width(&vdb_p->vdb_area); + cord_t vdb_width = area_get_width(&vdb_p->area); color_t * vdb_buf_tmp = vdb_p->buf; cord_t col, row; uint8_t col_bit; @@ -151,27 +151,29 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, /* Calculate the col/row start/end on the map * If font anti alaiassing is enabled use the reduced letter sizes*/ cord_t col_start = pos_p->x > mask_p->x1 ? 0 : mask_p->x1 - pos_p->x; - cord_t col_end = pos_p->x + (letter_w >> LV_FONT_ANTIALIAS) < mask_p->x2 ? (letter_w >> LV_FONT_ANTIALIAS) : mask_p->x2 - pos_p->x + 1; + cord_t col_end = pos_p->x + (letter_w >> FONT_ANTIALIAS) < mask_p->x2 ? (letter_w >> FONT_ANTIALIAS) : mask_p->x2 - pos_p->x + 1; cord_t row_start = pos_p->y > mask_p->y1 ? 0 : mask_p->y1 - pos_p->y; - cord_t row_end = pos_p->y + (letter_h >> LV_FONT_ANTIALIAS) < mask_p->y2 ? (letter_h >> LV_FONT_ANTIALIAS) : mask_p->y2 - pos_p->y + 1; + cord_t row_end = pos_p->y + (letter_h >> FONT_ANTIALIAS) < mask_p->y2 ? (letter_h >> FONT_ANTIALIAS) : mask_p->y2 - pos_p->y + 1; /*Set a pointer on VDB to the first pixel of the letter*/ - vdb_buf_tmp += ((pos_p->y - vdb_p->vdb_area.y1) * vdb_width) - + pos_p->x - vdb_p->vdb_area.x1; + vdb_buf_tmp += ((pos_p->y - vdb_p->area.y1) * vdb_width) + + pos_p->x - vdb_p->area.x1; /*If the letter is partially out of mask the move there on VDB*/ vdb_buf_tmp += (row_start * vdb_width) + col_start; /*Move on the map too*/ - map_p += ((row_start << LV_FONT_ANTIALIAS) * font_p->width_byte) + ((col_start << LV_FONT_ANTIALIAS) >> 3); + map_p += ((row_start << FONT_ANTIALIAS) * font_p->width_byte) + ((col_start << FONT_ANTIALIAS) >> 3); -#if LV_FONT_ANTIALIAS != 0 +#if FONT_ANTIALIAS != 0 + opa_t opa_tmp = opa; + if(opa_tmp != OPA_COVER) opa_tmp = opa_tmp >> 2; /*Opacity per pixel (used when sum the pixels)*/ const uint8_t * map1_p = map_p; const uint8_t * map2_p = map_p + font_p->width_byte; uint8_t px_cnt; for(row = row_start; row < row_end; row ++) { col_byte_cnt = 0; - col_bit = 7 - ((col_start << LV_FONT_ANTIALIAS) % 8); + col_bit = 7 - ((col_start << FONT_ANTIALIAS) % 8); for(col = col_start; col < col_end; col ++) { px_cnt = 0; @@ -197,7 +199,7 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, if(px_cnt != 0) { if(opa == OPA_COVER) *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, 63*px_cnt); - else *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, opa); + else *vdb_buf_tmp = color_mix(color, *vdb_buf_tmp, opa_tmp * px_cnt); } vdb_buf_tmp++; @@ -276,12 +278,12 @@ void lv_vmap(const area_t * cords_p, const area_t * mask_p, } /*Stores coordinates relative to the act vdb*/ - masked_a.x1 = masked_a.x1 - vdb_p->vdb_area.x1; - masked_a.y1 = masked_a.y1 - vdb_p->vdb_area.y1; - masked_a.x2 = masked_a.x2 - vdb_p->vdb_area.x1; - masked_a.y2 = masked_a.y2 - vdb_p->vdb_area.y1; + masked_a.x1 = masked_a.x1 - vdb_p->area.x1; + masked_a.y1 = masked_a.y1 - vdb_p->area.y1; + masked_a.x2 = masked_a.x2 - vdb_p->area.x1; + masked_a.y2 = masked_a.y2 - vdb_p->area.y1; - cord_t vdb_width = area_get_width(&vdb_p->vdb_area); + cord_t vdb_width = area_get_width(&vdb_p->area); color_t * vdb_buf_tmp = vdb_p->buf; vdb_buf_tmp += (uint32_t) vdb_width * masked_a.y1; /*Move to the first row*/ diff --git a/lv_draw/lv_draw_vbasic.h b/lv_draw/lv_draw_vbasic.h index 1a8f92814..599f67731 100644 --- a/lv_draw/lv_draw_vbasic.h +++ b/lv_draw/lv_draw_vbasic.h @@ -13,9 +13,9 @@ #if LV_VDB_SIZE != 0 -#include "misc/others/color.h" -#include "../lv_misc/area.h" -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" +#include "misc/gfx/font.h" /********************* * DEFINES diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 5fdafa93f..3258a3858 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -9,7 +9,7 @@ #include #include -#include +#include #include #include #include @@ -1440,7 +1440,7 @@ static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode uint16_t r = style->radius; - if(r == LV_CONT_CIRCLE) return false; + if(r == LV_DRAW_CIRCLE) return false; area_t area_tmp; diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index a7ffec8ed..5985c1d8d 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -9,17 +9,19 @@ /********************* * INCLUDES *********************/ -#include +#include "lv_conf.h" +#include #include #include #include "misc/mem/dyn_mem.h" #include "misc/mem/linked_list.h" -#include "misc/others/color.h" +#include "misc/gfx/color.h" #include "lv_style.h" /********************* * DEFINES *********************/ + /*Error check of lv_conf.h*/ #if LV_HOR_RES == 0 || LV_VER_RES == 0 #error "LV: LV_HOR_RES and LV_VER_RES must be greater then 0" diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index e4d5530ba..4729b6bbb 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -230,12 +230,12 @@ static void lv_refr_area_with_vdb(const area_t * area_p) lv_vdb_t * vdb_p = lv_vdb_get(); /*Always use the full row*/ - vdb_p->vdb_area.x1 = area_p->x1; - vdb_p->vdb_area.y1 = area_p->y1; - vdb_p->vdb_area.x2 = area_p->x2; + vdb_p->area.x1 = area_p->x1; + vdb_p->area.y1 = area_p->y1; + vdb_p->area.x2 = area_p->x2; /*Calculate the max row num*/ - uint32_t max_row = (uint32_t) LV_VDB_SIZE / (vdb_p->vdb_area.x2 - vdb_p->vdb_area.x1 + 1); + uint32_t max_row = (uint32_t) LV_VDB_SIZE / (vdb_p->area.x2 - vdb_p->area.x1 + 1); if(max_row > area_get_height(area_p)) max_row = area_get_height(area_p); /*Round the row number with downscale*/ @@ -248,17 +248,17 @@ static void lv_refr_area_with_vdb(const area_t * area_p) for(row = area_p->y1; row + max_row - 1 <= area_p->y2; row += max_row) { /*Calc. the next y coordinates of VDB*/ - vdb_p->vdb_area.y1 = row; - vdb_p->vdb_area.y2 = row + max_row - 1; + vdb_p->area.y1 = row; + vdb_p->area.y2 = row + max_row - 1; lv_refr_area_part_vdb(area_p); } /*If the last y coordinates are not handled yet ...*/ - if(area_p->y2 != vdb_p->vdb_area.y2) { + if(area_p->y2 != vdb_p->area.y2) { /*Calc. the next y coordinates of VDB*/ - vdb_p->vdb_area.y1 = row; - vdb_p->vdb_area.y2 = area_p->y2; + vdb_p->area.y1 = row; + vdb_p->area.y2 = area_p->y2; /*Refresh this part too*/ lv_refr_area_part_vdb(area_p); @@ -277,7 +277,7 @@ static void lv_refr_area_part_vdb(const area_t * area_p) /*Get the new mask from the original area and the act. VDB It will be a part of 'area_p'*/ area_t start_mask; - area_union(&start_mask, area_p, &vdb_p->vdb_area); + area_union(&start_mask, area_p, &vdb_p->area); /*Get the most top object which is not covered by others*/ top_p = lv_refr_get_top_obj(&start_mask, lv_scr_act()); diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index f7b214247..ec9f884f8 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -33,8 +33,6 @@ static lv_style_t lv_style_plain; static lv_style_t lv_style_plain_color; static lv_style_t lv_style_pretty; static lv_style_t lv_style_pretty_color; -//static lv_style_t lv_style_focus; -//static lv_style_t lv_style_focus_color; static lv_style_t lv_style_btn_rel; static lv_style_t lv_style_btn_pr; static lv_style_t lv_style_btn_trel; @@ -54,10 +52,13 @@ static lv_style_t lv_style_btn_ina; */ void lv_style_init (void) { + + /* Not White/Black/Gray colors are created by HSV model with + * HUE = 210*/ + /*Screen style*/ lv_style_set_ccolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20, 0x20)); lv_style_set_opa(&lv_style_scr, OPA_COVER); - lv_style_set_opa_prop(&lv_style_scr, true); lv_style_set_mcolor(&lv_style_scr, COLOR_WHITE); lv_style_set_gcolor(&lv_style_scr, COLOR_WHITE); @@ -66,15 +67,15 @@ void lv_style_init (void) lv_style_set_radius(&lv_style_scr, 0); lv_style_set_bwidth(&lv_style_scr, 0); lv_style_set_swidth(&lv_style_scr, 0); - lv_style_set_vpad(&lv_style_scr, LV_DPI / 6); - lv_style_set_hpad(&lv_style_scr, LV_DPI / 4); - lv_style_set_opad(&lv_style_scr, LV_DPI / 6); + lv_style_set_vpad(&lv_style_scr, LV_DPI / 8); + lv_style_set_hpad(&lv_style_scr, LV_DPI / 8); + lv_style_set_opad(&lv_style_scr, LV_DPI / 8); lv_style_set_bopa(&lv_style_scr, OPA_COVER); lv_style_set_empty(&lv_style_scr, false); - lv_style_set_font(&lv_style_scr, font_get(LV_FONT_DEFAULT)); + lv_style_set_font(&lv_style_scr, font_get(FONT_DEFAULT)); lv_style_set_letter_space(&lv_style_scr, 1 * LV_DOWNSCALE); - lv_style_set_line_space(&lv_style_scr, 5 * LV_DOWNSCALE); + lv_style_set_line_space(&lv_style_scr, 2 * LV_DOWNSCALE); lv_style_set_txt_align(&lv_style_scr, 0); lv_style_set_img_recolor(&lv_style_scr, OPA_TRANSP); @@ -86,27 +87,28 @@ void lv_style_init (void) /*Plain color style*/ memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_plain_color, COLOR_RED);//MAKE(0xf0, 0xf0, 0xf0)); - lv_style_set_mcolor(&lv_style_plain_color, COLOR_MAKE(0x40, 0x60, 0x80)); - lv_style_set_gcolor(&lv_style_plain_color, COLOR_MAKE(0x40, 0x60, 0x80)); + lv_style_set_ccolor(&lv_style_plain_color, COLOR_MAKE(0xf0, 0xf0, 0xf0)); + lv_style_set_mcolor(&lv_style_plain_color, COLOR_MAKE(0x55, 0x96, 0xd8)); + lv_style_set_gcolor(&lv_style_plain_color, lv_style_plain_color.mcolor); /*Pretty style */ memcpy(&lv_style_pretty, &lv_style_plain, sizeof(lv_style_t)); + lv_style_set_ccolor(&lv_style_pretty, COLOR_MAKE(0x20, 0x20, 0x20)); lv_style_set_mcolor(&lv_style_pretty, COLOR_WHITE); lv_style_set_gcolor(&lv_style_pretty, COLOR_SILVER); - lv_style_set_bcolor(&lv_style_pretty, COLOR_GRAY); + lv_style_set_bcolor(&lv_style_pretty, COLOR_MAKE(0x40, 0x40, 0x40)); lv_style_set_radius(&lv_style_pretty, LV_DPI / 10); - lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 20 >= 1 ? LV_DPI / 30 >= 1 : 1); -// lv_style_set_swidth(&lv_style_pretty, LV_DPI / 6); -// lv_style_set_scolor(&lv_style_pretty, COLOR_BLACK); + lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 30 >= 1 ? LV_DPI / 30 : 1); + lv_style_set_bopa(&lv_style_pretty, OPA_50); /*Pretty color style*/ memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_pretty_color, COLOR_RED);//MAKE(0xf0, 0xf0, 0xf0)); - lv_style_set_mcolor(&lv_style_pretty_color, COLOR_WHITE); - lv_style_set_gcolor(&lv_style_pretty_color, COLOR_CYAN); - lv_style_set_scolor(&lv_style_pretty_color, COLOR_BLACK); - lv_style_set_swidth(&lv_style_pretty_color, LV_DPI / 2); + lv_style_set_ccolor(&lv_style_pretty_color, COLOR_MAKE(0xe0, 0xe0, 0xe0)); + lv_style_set_gcolor(&lv_style_pretty_color, COLOR_MAKE(0x2b, 0x59, 0x8b)); + lv_style_set_mcolor(&lv_style_pretty_color, COLOR_MAKE(0x90, 0xb3, 0xd5)); + lv_style_set_bcolor(&lv_style_pretty_color, COLOR_MAKE(0x15, 0x2c, 0x42)); + lv_style_set_scolor(&lv_style_pretty_color, COLOR_MAKE(0x6a, 0x8f, 0xb4)); + lv_style_set_swidth(&lv_style_pretty_color, 0); /*Transparent style*/ memcpy(&lv_style_transp, &lv_style_plain, sizeof(lv_style_t)); @@ -120,27 +122,44 @@ void lv_style_init (void) /*Button released style*/ memcpy(&lv_style_btn_rel, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_rel, COLOR_WHITE); - lv_style_set_gcolor(&lv_style_btn_rel, COLOR_GRAY); + lv_style_set_mcolor(&lv_style_btn_rel, COLOR_MAKE(0x76, 0xa2, 0xd0)); + lv_style_set_gcolor(&lv_style_btn_rel, COLOR_MAKE(0x19, 0x3a, 0x5d)); + lv_style_set_bcolor(&lv_style_btn_rel, COLOR_MAKE(0x0b, 0x19, 0x28)); + lv_style_set_ccolor(&lv_style_btn_rel, COLOR_MAKE(0xff, 0xff, 0xff)); + lv_style_set_bwidth(&lv_style_btn_rel, LV_DPI / 30 >= 1 ? LV_DPI / 30 : 1); + lv_style_set_radius(&lv_style_btn_rel, LV_DPI / 10); + lv_style_set_bopa(&lv_style_btn_rel, OPA_70); + lv_style_set_scolor(&lv_style_btn_rel, COLOR_GRAY); + lv_style_set_swidth(&lv_style_btn_rel, 0); + lv_style_set_hpad(&lv_style_btn_rel, LV_DPI / 3); + lv_style_set_vpad(&lv_style_btn_rel, LV_DPI / 4); + lv_style_set_opad(&lv_style_btn_rel, LV_DPI / 6); /*Button pressed style*/ memcpy(&lv_style_btn_pr, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_pr, COLOR_BLACK); - lv_style_set_ccolor(&lv_style_btn_pr, COLOR_SILVER); - lv_style_set_scolor(&lv_style_btn_pr, COLOR_GRAY); - lv_style_set_swidth(&lv_style_btn_pr, 10); + lv_style_set_mcolor(&lv_style_btn_pr, COLOR_MAKE(0x33, 0x62, 0x94)); + lv_style_set_gcolor(&lv_style_btn_pr, COLOR_MAKE(0x10, 0x26, 0x3c)); + lv_style_set_ccolor(&lv_style_btn_pr, COLOR_MAKE(0xa4, 0xb5, 0xc6)); /*Button toggle released style*/ memcpy(&lv_style_btn_trel, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_trel, COLOR_LIME); + lv_style_set_gcolor(&lv_style_btn_trel, COLOR_MAKE(0x37, 0x62, 0x90)); + lv_style_set_mcolor(&lv_style_btn_trel, COLOR_MAKE(0x0a, 0x11, 0x22)); + lv_style_set_bcolor(&lv_style_btn_trel, COLOR_MAKE(0x01, 0x07, 0x0d)); + lv_style_set_ccolor(&lv_style_btn_trel, COLOR_MAKE(0xc8, 0xdd, 0xf4)); /*Button toggle pressed style*/ memcpy(&lv_style_btn_tpr, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_tpr, COLOR_GREEN); + lv_style_set_gcolor(&lv_style_btn_tpr, COLOR_MAKE(0x2b, 0x4c, 0x70)); + lv_style_set_mcolor(&lv_style_btn_tpr, COLOR_MAKE(0x02, 0x14, 0x27)); + lv_style_set_ccolor(&lv_style_btn_tpr, COLOR_MAKE(0xa4, 0xb5, 0xc6)); /*Button inactive style*/ memcpy(&lv_style_btn_ina, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_ina, COLOR_YELLOW); + lv_style_set_gcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); + lv_style_set_mcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); + lv_style_set_bcolor(&lv_style_btn_ina, COLOR_MAKE(0x90, 0x90, 0x90)); + lv_style_set_ccolor(&lv_style_btn_ina, COLOR_MAKE(0x70, 0x70, 0x70)); } @@ -219,15 +238,6 @@ void lv_style_set_opa(lv_style_t * style, opa_t opa) style->opa = opa; } -/** - * Set the proportional opacity attribute of a style (make the opacity relative to the parent) - * @param style pointer to style - * @param opa_prop true: enabled, false: disabled - */ -void lv_style_set_opa_prop(lv_style_t * style, bool opa_prop) -{ - style->opa_prop = opa_prop == false ? 0 : 1; -} /** * Set the container main color of a style @@ -391,9 +401,9 @@ void lv_style_set_line_space(lv_style_t * style, cord_t line_space) /** * Set the text align of a style * @param style pointer to style - * @param align TODO + * @param align type of text alignment from 'lv_txt_align_t' */ -void lv_style_set_txt_align(lv_style_t * style, uint8_t align) +void lv_style_set_txt_align(lv_style_t * style, lv_txt_align_t align) { style->txt_align = align; } @@ -443,16 +453,6 @@ opa_t lv_style_get_opa(lv_style_t * style) return style->opa; } -/** - * Get the proportional opacity attribute of a style (make the opacity relative to the parent) - * @param style pointer to style - * @return true: enabled, false: disabled - */ -bool lv_style_get_opa_prop(lv_style_t * style) -{ - return style->opa_prop == 0 ? false : true; -} - /** * Get the container main color of a style * @param style pointer to style @@ -615,9 +615,9 @@ cord_t lv_style_get_line_space(lv_style_t * style) /** * Get the text align of a style * @param style pointer to style - * @return TODO + * @return type of text alignment from 'lv_txt_align_t' */ -uint8_t lv_style_get_txt_align(lv_style_t * style) +lv_txt_align_t lv_style_get_txt_align(lv_style_t * style) { return style->txt_align; } diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h index fe4d4ef33..39a3bf8f5 100644 --- a/lv_obj/lv_style.h +++ b/lv_obj/lv_style.h @@ -10,23 +10,29 @@ * INCLUDES *********************/ #include -#include "misc/others/color.h" -#include "../lv_misc/area.h" -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" +#include "misc/gfx/font.h" /********************* * DEFINES *********************/ +#define LV_DRAW_CIRCLE (CORD_MAX) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS **********************/ + +typedef enum { + LV_TXT_ALIGN_LEFT = 0, + LV_TXT_ALIGN_MID, +}lv_txt_align_t; + typedef struct { /*Object level styles*/ color_t ccolor; /*Content color (e.g. text or image re-color )*/ opa_t opa; /*Opacity of the object*/ - uint8_t opa_prop:1; /*Opacity is proportional to the parent*/ uint8_t empty :1; /*Transparent background (border drawn)*/ color_t mcolor; /*Main color of background*/ color_t gcolor; /*Gradient color of background*/ @@ -320,7 +326,7 @@ void lv_style_clear_line_space(lv_style_t * style); * @param style pointer to style * @param align TODO */ -void lv_style_set_txt_align(lv_style_t * style, uint8_t align); +void lv_style_set_txt_align(lv_style_t * style, lv_txt_align_t align); /** * Clear the text align of a style (it will be inherited from the parent style) diff --git a/lv_obj/lv_vdb.c b/lv_obj/lv_vdb.c index 860ea41d1..e2679b0c4 100644 --- a/lv_obj/lv_vdb.c +++ b/lv_obj/lv_vdb.c @@ -53,8 +53,7 @@ lv_vdb_t * lv_vdb_get(void) void lv_vdb_flush(void) { #if LV_ANTIALIAS == 0 - disp_area(DISP_ID_ALL, vdb.vdb_area.x1 , vdb.vdb_area.y1, vdb.vdb_area.x2, vdb.vdb_area.y2); - disp_map(DISP_ID_ALL, vdb.buf); + disp_map(vdb.area.x1, vdb.area.y1, vdb.area.x2, vdb.area.y2, vdb.buf); #else /* Get the average of 2x2 pixels and put the result back to the VDB * The reading goes much faster then the write back @@ -69,12 +68,12 @@ void lv_vdb_flush(void) * */ cord_t x; cord_t y; - cord_t w = area_get_width(&vdb.vdb_area); + cord_t w = area_get_width(&vdb.area); color_t * in1_buf = vdb.buf; /*Pointer to the first row*/ color_t * in2_buf = vdb.buf + w; /*Pointer to the second row*/ color_t * out_buf = vdb.buf; /*Store the result here*/ - for(y = vdb.vdb_area.y1; y < vdb.vdb_area.y2; y += 2) { - for(x = vdb.vdb_area.x1; x < vdb.vdb_area.x2; x += 2) { + for(y = vdb.area.y1; y < vdb.area.y2; y += 2) { + for(x = vdb.area.x1; x < vdb.area.x2; x += 2) { /*If the pixels are the same do not calculate the average */ if(in1_buf->full == (in1_buf + 1)->full && @@ -104,8 +103,7 @@ void lv_vdb_flush(void) /* Now the full the VDB is filtered and the result is stored in the first quarter of it * Write out the filtered map to the display*/ - disp_area(DISP_ID_ALL, vdb.vdb_area.x1 >> 1, vdb.vdb_area.y1 >> 1, vdb.vdb_area.x2 >> 1, vdb.vdb_area.y2 >> 1); - disp_map(DISP_ID_ALL, vdb.buf); + disp_map(vdb.area.x1 >> 1, vdb.area.y1 >> 1, vdb.area.x2 >> 1, vdb.area.y2 >> 1, vdb.buf); #endif } diff --git a/lv_obj/lv_vdb.h b/lv_obj/lv_vdb.h index ea74e98d8..60155c79c 100644 --- a/lv_obj/lv_vdb.h +++ b/lv_obj/lv_vdb.h @@ -13,9 +13,8 @@ #if LV_VDB_SIZE != 0 -#include "misc/others/color.h" -#include -#include "../lv_misc/font.h" +#include "misc/gfx/color.h" +#include "misc/gfx/area.h" /********************* * DEFINES @@ -27,7 +26,7 @@ typedef struct { - area_t vdb_area; + area_t area; color_t buf[LV_VDB_SIZE]; }lv_vdb_t; diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index ea2aa97da..0198fbe9f 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -79,7 +79,6 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_click(new_bar, false); lv_obj_set_size(new_bar, LV_BAR_DEF_WIDTH, LV_BAR_DEF_HEIGHT); lv_obj_set_style(new_bar, lv_style_get(LV_STYLE_PRETTY, NULL)); - lv_bar_set_value(new_bar, ext->act_value); } else { lv_bar_ext_t * ext_copy = lv_obj_get_ext(copy); @@ -106,11 +105,15 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_cont_signal(bar, sign, param); + valid = lv_obj_signal(bar, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { + if(sign == LV_SIGNAL_REFR_EXT_SIZE) { + lv_style_t * style_indic = lv_bar_get_style_indic(bar); + if(style_indic->swidth > bar->ext_size) bar->ext_size = style_indic->swidth; + } } @@ -131,12 +134,11 @@ void lv_bar_set_value(lv_obj_t * bar, int16_t value) lv_bar_ext_t * ext = lv_obj_get_ext(bar); ext->act_value = value > ext->max_value ? ext->max_value : value; ext->act_value = ext->act_value < ext->min_value ? ext->min_value : ext->act_value; - lv_obj_inv(bar); } /** - * Set minimum and the maximum values of a bar + * Set minimum and the maximum values of a bar * @param bar pointer to he bar object * @param min minimum value * @param max maximum value @@ -155,7 +157,7 @@ void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max) /** * Set the style of bar indicator - * @param bar pointer to a bar obeject + * @param bar pointer to a bar object * @param style pointer to a style */ void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style) @@ -164,6 +166,8 @@ void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style) ext->style_indic = style; + bar->signal_f(bar, LV_SIGNAL_REFR_EXT_SIZE, NULL); + lv_obj_inv(bar); } @@ -182,6 +186,28 @@ int16_t lv_bar_get_value(lv_obj_t * bar) return ext->act_value; } +/** + * Get the minimum value of a bar + * @param bar pointer to a bar object + * @return the minimum value of the bar + */ +int16_t lv_bar_get_min_value(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + return ext->min_value; +} + +/** + * Get the maximum value of a bar + * @param bar pointer to a bar object + * @return the maximum value of the bar + */ +int16_t lv_bar_get_max_value(lv_obj_t * bar) +{ + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + return ext->max_value; +} + /** * Get the style of bar indicator * @param bar pointer to a bar object @@ -213,29 +239,33 @@ lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar) static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t mode) { if(mode == LV_DESIGN_COVER_CHK) { - /*Return false if the object is not covers the mask_p area*/ - return ancestor_design_f(bar, mask, mode); + /*Return false if the object is not covers the mask area*/ + return ancestor_design_f(bar, mask, mode);; } else if(mode == LV_DESIGN_DRAW_MAIN) { - ancestor_design_f(bar, mask, mode); + ancestor_design_f(bar, mask, mode); lv_bar_ext_t * ext = lv_obj_get_ext(bar); - area_t bar_area; - area_cpy(&bar_area, &bar->cords); + lv_style_t * style_indic = lv_bar_get_style_indic(bar); + area_t indic_area; + area_cpy(&indic_area, &bar->cords); + indic_area.x1 += style_indic->hpad; + indic_area.x2 -= style_indic->hpad; + indic_area.y1 += style_indic->vpad; + indic_area.y2 -= style_indic->vpad; - cord_t w = lv_obj_get_width(bar); - cord_t h = lv_obj_get_height(bar); + cord_t w = area_get_width(&indic_area); + cord_t h = area_get_height(&indic_area); if(w >= h) { - bar_area.x2 = (int32_t) ((int32_t)w * ext->act_value) / (ext->max_value - ext->min_value); - bar_area.x2 += bar_area.x1; + indic_area.x2 = (int32_t) ((int32_t)w * ext->act_value) / (ext->max_value - ext->min_value); + indic_area.x2 += indic_area.x1; } else { - bar_area.y1 = (int32_t) ((int32_t)h * ext->act_value) / (ext->max_value - ext->min_value); - bar_area.y1 = bar_area.y2 - bar_area.y1; + indic_area.y1 = (int32_t) ((int32_t)h * ext->act_value) / (ext->max_value - ext->min_value); + indic_area.y1 = indic_area.y2 - indic_area.y1; } - /*Draw the main bar*/ - lv_style_t * style_indic = lv_bar_get_style_indic(bar); - lv_draw_rect(&bar_area, mask, style_indic); + /*Draw the indicator*/ + lv_draw_rect(&indic_area, mask, style_indic); } return true; } diff --git a/lv_objx/lv_bar.h b/lv_objx/lv_bar.h index b8fd40de2..00002b115 100644 --- a/lv_objx/lv_bar.h +++ b/lv_objx/lv_bar.h @@ -12,15 +12,6 @@ #include "lv_conf.h" #if USE_LV_BAR != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_bar: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_LABEL == 0 -#error "lv_bar: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " -#endif - #include "../lv_obj/lv_obj.h" #include #include "lv_btn.h" @@ -50,52 +41,71 @@ typedef struct **********************/ /** - * Create a progress bar objects - * @param par pointer to an object, it will be the parent of the new progress bar - * @param copy pointer to a progress bar object, if not NULL then the new object will be copied from it - * @return pointer to the created progress bar + * Create a bar objects + * @param par pointer to an object, it will be the parent of the new bar + * @param copy pointer to a bar object, if not NULL then the new object will be copied from it + * @return pointer to the created bar */ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy); /** - * Signal function of the progress bar - * @param bar pointer to a progress bar object + * Signal function of the bar + * @param bar pointer to a bar object * @param sign a signal type from lv_signal_t enum * @param param pointer to a signal specific variable */ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param); /** - * Set a new value on the progress bar - * @param bar pointer to a progress bar object + * Set a new value on the bar + * @param bar pointer to a bar object * @param value new value */ void lv_bar_set_value(lv_obj_t * bar, int16_t value); /** - * Set minimum and the maximum values of a progress bar - * @param bar pointer to he progress bar object + * Set minimum and the maximum values of a bar + * @param bar pointer to he bar object * @param min minimum value * @param max maximum value */ void lv_bar_set_range(lv_obj_t * bar, int16_t min, int16_t max); /** - * Set format string for the label of the progress bar - * @param bar pointer to progress bar object - * @param format a printf-like format string with one number (e.g. "Loading (%d)") + * Set the style of bar indicator + * @param bar pointer to a bar object + * @param style pointer to a style */ -void lv_bar_set_format_str(lv_obj_t * bar, const char * format); +void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style); /** - * Get the value of a progress bar - * @param bar pointer to a progress bar object - * @return the value of the progress bar + * Get the value of a bar + * @param bar pointer to a bar object + * @return the value of the bar */ int16_t lv_bar_get_value(lv_obj_t * bar); +/** + * Get the minimum value of a bar + * @param bar pointer to a bar object + * @return the minimum value of the bar + */ +int16_t lv_bar_get_min_value(lv_obj_t * bar); + +/** + * Get the maximum value of a bar + * @param bar pointer to a bar object + * @return the maximum value of the bar + */ +int16_t lv_bar_get_max_value(lv_obj_t * bar); + +/** + * Get the style of bar indicator + * @param bar pointer to a bar object + * @return pointer to the bar indicator style + */ lv_style_t * lv_bar_get_style_indic(lv_obj_t * bar); -void lv_bar_set_style_indic(lv_obj_t * bar, lv_style_t * style); + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index a2b776d39..305b7a886 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -7,9 +7,9 @@ * INCLUDES *********************/ -#include +#include #include -#include +#include #include #if USE_LV_BTN != 0 @@ -122,78 +122,69 @@ bool lv_btn_signal(lv_obj_t * btn, lv_signal_t sign, void * param) lv_btn_state_t state = lv_btn_get_state(btn); bool tgl = lv_btn_get_tgl(btn); - switch (sign) { - case LV_SIGNAL_PRESSED: - /*Refresh the state*/ - if(ext->state == LV_BTN_STATE_REL) { - lv_btn_set_state(btn, LV_BTN_STATE_PR); - } else if(ext->state == LV_BTN_STATE_TREL) { - lv_btn_set_state(btn, LV_BTN_STATE_TPR); - } + if(sign == LV_SIGNAL_PRESSED) { + /*Refresh the state*/ + if(ext->state == LV_BTN_STATE_REL) { + lv_btn_set_state(btn, LV_BTN_STATE_PR); + } else if(ext->state == LV_BTN_STATE_TREL) { + lv_btn_set_state(btn, LV_BTN_STATE_TPR); + } - ext->lpr_exec = 0; - /*Call the press action, here 'param' is the caller dispi*/ - if(ext->pr_action != NULL && state != LV_BTN_STATE_INA) { - valid = ext->pr_action(btn, param); - } - break; - - case LV_SIGNAL_PRESS_LOST: - /*Refresh the state*/ + ext->lpr_exec = 0; + /*Call the press action, 'param' is the caller dispi*/ + if(ext->pr_action != NULL && state != LV_BTN_STATE_INA) { + valid = ext->pr_action(btn, param); + } + } + else if(sign == LV_SIGNAL_PRESS_LOST) { + /*Refresh the state*/ + if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); + else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } + else if(sign == LV_SIGNAL_PRESSING) { + /*When the button begins to drag revert pressed states to released*/ + if(lv_dispi_is_dragging(param) != false) { if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); - - break; - case LV_SIGNAL_PRESSING: - /*When the button begins to drag revert pressed states to released*/ - if(lv_dispi_is_dragging(param) != false) { - if(ext->state == LV_BTN_STATE_PR) lv_btn_set_state(btn, LV_BTN_STATE_REL); - else if(ext->state == LV_BTN_STATE_TPR) lv_btn_set_state(btn, LV_BTN_STATE_TREL); - } - break; - - case LV_SIGNAL_RELEASED: - /*If not dragged and it was not long press action then - *change state and run the action*/ - if(lv_dispi_is_dragging(param) == false && ext->lpr_exec == 0) { - if(ext->state == LV_BTN_STATE_PR && tgl == false) { - lv_btn_set_state(btn, LV_BTN_STATE_REL); - } else if(ext->state == LV_BTN_STATE_TPR && tgl == false) { - lv_btn_set_state(btn, LV_BTN_STATE_TREL); - } else if(ext->state == LV_BTN_STATE_PR && tgl == true) { - lv_btn_set_state(btn, LV_BTN_STATE_TREL); - } else if(ext->state == LV_BTN_STATE_TPR && tgl == true) { - lv_btn_set_state(btn, LV_BTN_STATE_REL); - } - - if(ext->rel_action != NULL && state != LV_BTN_STATE_INA) { - valid = ext->rel_action(btn, param); - } - } else { /*If dragged change back the state*/ - if(ext->state == LV_BTN_STATE_PR) { - lv_btn_set_state(btn, LV_BTN_STATE_REL); - } else if(ext->state == LV_BTN_STATE_TPR) { - lv_btn_set_state(btn, LV_BTN_STATE_TREL); - } + } + } + else if(sign == LV_SIGNAL_RELEASED) { + /*If not dragged and it was not long press action then + *change state and run the action*/ + if(lv_dispi_is_dragging(param) == false && ext->lpr_exec == 0) { + if(ext->state == LV_BTN_STATE_PR && tgl == false) { + lv_btn_set_state(btn, LV_BTN_STATE_REL); + } else if(ext->state == LV_BTN_STATE_TPR && tgl == false) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } else if(ext->state == LV_BTN_STATE_PR && tgl == true) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } else if(ext->state == LV_BTN_STATE_TPR && tgl == true) { + lv_btn_set_state(btn, LV_BTN_STATE_REL); } - break; - case LV_SIGNAL_LONG_PRESS: - /*Call the long press action, here 'param' is the caller dispi*/ + if(ext->rel_action != NULL && state != LV_BTN_STATE_INA) { + valid = ext->rel_action(btn, param); + } + } else { /*If dragged change back the state*/ + if(ext->state == LV_BTN_STATE_PR) { + lv_btn_set_state(btn, LV_BTN_STATE_REL); + } else if(ext->state == LV_BTN_STATE_TPR) { + lv_btn_set_state(btn, LV_BTN_STATE_TREL); + } + } + } + else if(sign == LV_SIGNAL_LONG_PRESS) { + /*Call the long press action, 'param' is the caller dispi*/ if(ext->lpr_action != NULL && state != LV_BTN_STATE_INA) { ext->lpr_exec = 1; valid = ext->lpr_action(btn, param); } - break; - case LV_SIGNAL_LONG_PRESS_REP: - /*Call the release action, here 'param' is the caller dispi*/ - if(ext->lpr_rep_action != NULL && state != LV_BTN_STATE_INA) { - valid = ext->lpr_rep_action(btn, param); - } - break; - default: - /*Do nothing*/ - break; + } + else if(sign == LV_SIGNAL_LONG_PRESS_REP) { + /*Call the release action, 'param' is the caller dispi*/ + if(ext->lpr_rep_action != NULL && state != LV_BTN_STATE_INA) { + valid = ext->lpr_rep_action(btn, param); + } } } @@ -287,7 +278,9 @@ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action) * @param tpr pointer to a style for toggled pressed state * @param ina pointer to a style for inactive state */ -void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina) +void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, + lv_style_t * trel, lv_style_t * tpr, + lv_style_t * ina) { lv_btn_ext_t * ext = lv_obj_get_ext(btn); ext->styles[LV_BTN_STATE_REL] = rel; diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 1161b8ca8..365505fdd 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -119,6 +119,15 @@ void lv_btn_set_lpr_action(lv_obj_t * btn, lv_action_t lpr_action); */ void lv_btn_set_lpr_rep_action(lv_obj_t * btn, lv_action_t lpr_rep_action); +/** + * Set styles of a button is each state + * @param btn pointer to button object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ void lv_btn_set_styles(lv_obj_t * btn, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); /** @@ -135,7 +144,14 @@ lv_btn_state_t lv_btn_get_state(lv_obj_t * btn); */ bool lv_btn_get_tgl(lv_obj_t * btn); +/** + * Get the style of a button in a given state + * @param btn pointer to a button object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ lv_style_t * lv_btn_get_style(lv_obj_t * btn, lv_btn_state_t state); + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index 8843e5ff0..b2018a8f9 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -11,7 +11,7 @@ #include "lv_btnm.h" #include "../lv_draw/lv_draw.h" -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" #include "../lv_obj/lv_refr.h" /********************* @@ -88,7 +88,11 @@ lv_obj_t * lv_btnm_create(lv_obj_t * par, lv_obj_t * copy) } /*Copy an existing object*/ else { + lv_btnm_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->style_btn_rel = copy_ext->style_btn_rel; + ext->style_btn_pr = copy_ext->style_btn_pr; lv_btnm_set_map(new_btnm, lv_btnm_get_map(copy)); + ext->cb = copy_ext->cb; } return new_btnm; @@ -151,11 +155,12 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) ext->btn_pr = btn_pr; } else if(sign == LV_SIGNAL_RELEASED || sign == LV_SIGNAL_LONG_PRESS_REP) { - if(ext->cb != NULL && - ext->btn_pr != LV_BTNM_PR_NONE) { + if(ext->cb != NULL && ext->btn_pr != LV_BTNM_PR_NONE) { uint16_t txt_i = 0; uint16_t btn_i = 0; - /*Search the next valid text in the map*/ + + /* Search the text of ext->btn_pr the buttons text in the map + * Skip "\n"-s*/ while(btn_i != ext->btn_pr) { btn_i ++; txt_i ++; @@ -164,6 +169,7 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) ext->cb(btnm, txt_i); } + if(sign == LV_SIGNAL_RELEASED && ext->btn_pr != LV_BTNM_PR_NONE) { /*Invalidate to old area*/; lv_obj_get_cords(btnm, &btnm_area); @@ -177,7 +183,11 @@ bool lv_btnm_signal(lv_obj_t * btnm, lv_signal_t sign, void * param) ext->btn_pr = LV_BTNM_PR_NONE; } } + else if(sign == LV_SIGNAL_PRESS_LOST) { + ext->btn_pr = LV_BTNM_PR_NONE; + lv_obj_inv(btnm); + } } return valid; @@ -418,10 +428,10 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ while(strcmp(ext->map_p[txt_i], "\n") == 0) txt_i ++; /*Calculate the size of the text*/ - const font_t * font = style->font; + const font_t * font = btn_style->font; point_t txt_size; txt_get_size(&txt_size, ext->map_p[txt_i], font, - style->letter_space, style->line_space, + btn_style->letter_space, btn_style->line_space, area_get_width(&area_btnm), TXT_FLAG_NONE); area_tmp.x1 += (btn_w - txt_size.x) / 2; @@ -429,7 +439,7 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ area_tmp.x2 = area_tmp.x1 + txt_size.x; area_tmp.y2 = area_tmp.y1 + txt_size.y; - lv_draw_label(&area_tmp, mask, style, ext->map_p[txt_i], TXT_FLAG_NONE); + lv_draw_label(&area_tmp, mask, btn_style, ext->map_p[txt_i], TXT_FLAG_NONE); txt_i ++; } } diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index 8ea0df11b..0b3b23881 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -94,6 +94,12 @@ void lv_btnm_set_map(lv_obj_t * btnm, const char ** map); */ void lv_btnm_set_action(lv_obj_t * btnm, lv_btnm_callback_t cb); +/** + * Set the styles of the buttons of the button matrox + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @param style pointer to style + */ void lv_btnm_set_styles_btn(lv_obj_t * btnm, lv_style_t * rel, lv_style_t * pr); /** @@ -110,7 +116,14 @@ const char ** lv_btnm_get_map(lv_obj_t * btnm); */ lv_btnm_callback_t lv_btnm_get_action(lv_obj_t * btnm); +/** + * Get the style of buttons in button matrix + * @param btnm pointer to a button matrix object + * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) + * @return pointer the button style in the given state + */ lv_style_t * lv_btnm_get_style_btn(lv_obj_t * btnm, lv_btn_state_t state); + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 48b64f6c8..e83f95853 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -75,8 +75,9 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) ext->vdiv_num = LV_CHART_VDIV_DEF; ext->pnum = LV_CHART_PNUM_DEF; ext->type = LV_CHART_LINE; - ext->data_opa = OPA_COVER; - ext->dark_eff = OPA_50; + ext->dl_opa = OPA_COVER; + ext->dl_dark = OPA_50; + ext->dl_width = 2 * LV_DOWNSCALE; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_chart); @@ -94,7 +95,7 @@ lv_obj_t * lv_chart_create(lv_obj_t * par, lv_obj_t * copy) ext->hdiv_num = ext_copy->hdiv_num; ext->vdiv_num = ext_copy->vdiv_num; ext->pnum = ext_copy->pnum; - ext->data_opa = ext_copy->data_opa; + ext->dl_opa = ext_copy->dl_opa; /*Refresh the style with new signal function*/ lv_obj_refr_style(new_chart); @@ -136,18 +137,16 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) * Allocate and add a data line to the chart * @param chart pointer to a chart object * @param color color of the data line - * @param width line width/point radius/column width * @return pointer to the allocated data line ( */ -lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width) +lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); lv_chart_dl_t * dl = ll_ins_head(&ext->dl_ll); - cord_t def = (ext->ymax - ext->ymin) >> 2; /*1/4 range as default value*/ + cord_t def = (ext->ymin + ext->ymax) >> 1; /*half range as default value*/ if(dl == NULL) return NULL; - dl->width = width; dl->color = color; dl->points = dm_alloc(sizeof(cord_t) * ext->pnum); @@ -248,21 +247,33 @@ void lv_chart_set_pnum(lv_obj_t * chart, uint16_t pnum) * @param chart pointer to chart object * @param opa opacity of the data lines */ -void lv_chart_set_data_opa(lv_obj_t * chart, opa_t opa) +void lv_chart_set_dl_opa(lv_obj_t * chart, opa_t opa) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - ext->data_opa = opa; + ext->dl_opa = opa; + lv_obj_inv(chart); } +/** + * Set the line width or point radius of the data lines + * @param chart pointer to chart object + * @param width the new width + */ +void lv_chart_set_dl_width(lv_obj_t * chart, cord_t width) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + ext->dl_width = width; + lv_obj_inv(chart); +} /** * Set the dark effect on the bottom of the points or columns * @param chart pointer to chart object * @param dark_eff dark effect level (OPA_TRANSP to turn off) */ -void lv_chart_set_drak_effect(lv_obj_t * chart, opa_t dark_eff) +void lv_chart_set_dl_dark(lv_obj_t * chart, opa_t dark_eff) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - ext->dark_eff = dark_eff; + ext->dl_dark = dark_eff; } /** * Shift all data right and set the most right data on a data line @@ -318,10 +329,21 @@ uint16_t lv_chart_get_pnum(lv_obj_t * chart) * @param chart pointer to chart object * @return the opacity of the data lines */ -opa_t lv_chart_get_data_opa(lv_obj_t * chart) +opa_t lv_chart_get_dl_opa(lv_obj_t * chart) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - return ext->data_opa; + return ext->dl_opa; +} + +/** + * Get the data line width + * @param chart pointer to chart object + * @return the width the data lines (lines or points) + */ +cord_t lv_chart_get_dl_width(lv_obj_t * chart) +{ + lv_chart_ext_t * ext = lv_obj_get_ext(chart); + return ext->dl_width; } /** @@ -329,10 +351,10 @@ opa_t lv_chart_get_data_opa(lv_obj_t * chart) * @param chart pointer to chart object * @return dark effect level (OPA_TRANSP to turn off) */ -opa_t lv_chart_get_dark_effect(lv_obj_t * chart, opa_t dark_eff) +opa_t lv_chart_get_dl_dark(lv_obj_t * chart, opa_t dark_eff) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); - return ext->dark_eff; + return ext->dl_dark; } /********************** * STATIC FUNCTIONS @@ -362,19 +384,9 @@ static bool lv_chart_design(lv_obj_t * chart, const area_t * mask, lv_design_mod lv_chart_draw_div(chart, mask); - switch(ext->type) { - case LV_CHART_LINE: - lv_chart_draw_lines(chart, mask); - break; - case LV_CHART_COL: - lv_chart_draw_cols(chart, mask); - break; - case LV_CHART_POINT: - lv_chart_draw_points(chart, mask); - break; - default: - break; - } + if(ext->type & LV_CHART_LINE) lv_chart_draw_lines(chart, mask); + if(ext->type & LV_CHART_COL) lv_chart_draw_cols(chart, mask); + if(ext->type & LV_CHART_POINT) lv_chart_draw_points(chart, mask); } return true; } @@ -433,14 +445,13 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) cord_t y_ofs = chart->cords.y1; int32_t y_tmp; lv_chart_dl_t * dl; - uint8_t dl_cnt = 0; lv_style_t lines; lv_style_get(LV_STYLE_PLAIN, &lines); - lines.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; + lines.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; + lines.line_width = ext->dl_width; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, dl) { - lines.line_width = dl->width; lines.ccolor = dl->color; p1.x = 0 + x_ofs; @@ -461,7 +472,6 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const area_t * mask) lv_draw_line(&p1, &p2, mask, &lines); } - dl_cnt++; } } @@ -489,14 +499,14 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) style_point.bwidth = 0; style_point.empty = 0; - style_point.radius = LV_CONT_CIRCLE; - style_point.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; + style_point.radius = LV_DRAW_CIRCLE; + style_point.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; + style_point.radius = ext->dl_width; /*Go through all data lines*/ LL_READ_BACK(ext->dl_ll, dl) { - style_point.radius = dl->width; style_point.mcolor = dl->color; - style_point.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dark_eff); + style_point.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dl_dark); for(i = 0; i < ext->pnum; i ++) { cir_a.x1 = ((w * i) / (ext->pnum - 1)) + x_ofs; @@ -533,48 +543,42 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const area_t * mask) cord_t h = lv_obj_get_height(chart); int32_t y_tmp; lv_chart_dl_t * dl; - uint8_t dl_cnt = 0; lv_style_t rects; - cord_t col_w = w / (2 * ext->dl_num * ext->pnum); /* Suppose (2 * dl_num) * pnum columns*/ + cord_t col_w = w / ((ext->dl_num + 1) * ext->pnum); /* Suppose + 1 dl as separator*/ cord_t x_ofs = col_w / 2; /*Shift with a half col.*/ lv_style_get(LV_STYLE_PLAIN, &rects); rects.bwidth = 0; rects.empty = 0; rects.radius = 0; - rects.opa = (uint16_t)((uint16_t)style->opa * ext->data_opa) >> 8; + rects.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; col_a.y2 = chart->cords.y2; - /*Go through all data lines*/ - LL_READ_BACK(ext->dl_ll, dl) { - rects.mcolor = dl->color; - rects.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dark_eff); + cord_t x_act; - for(i = 0; i < ext->pnum; i ++) { - /* Calculate the x coordinates. Suppose (2 * dl_num) * pnum columns and draw to every second - * the other columns will be spaces. - * col_w = w / (2 * ext->dl_num * ext->pnum) - * act_col_x = col_w * i * ext->dl_num * 2 + 2 * dl_cnt - * Reorder the operation to multiply first*/ + /*Go through all points*/ + for(i = 0; i < ext->pnum; i ++) { + x_act = (int32_t)((int32_t) w * i) / ext->pnum; + x_act += chart->cords.x1 + x_ofs; - col_a.x1 = (int32_t)((int32_t) w * ((i * ext->dl_num * 2) + (2 * dl_cnt))) / - (ext->pnum * 2 * ext->dl_num); - col_a.x1 += chart->cords.x1; - col_a.x2 = col_a.x1 + col_w; - col_a.x1 += x_ofs; - col_a.x2 += x_ofs; + /*Draw the current point of all data line*/ + LL_READ_BACK(ext->dl_ll, dl) { + rects.mcolor = dl->color; + rects.gcolor = color_mix(COLOR_BLACK, dl->color, ext->dl_dark); + col_a.x1 = x_act; + col_a.x2 = col_a.x1 + col_w; + x_act += col_w; - y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; - y_tmp = y_tmp / (ext->ymax - ext->ymin); - col_a.y1 = h - y_tmp + chart->cords.y1; + y_tmp = (int32_t)((int32_t) dl->points[i] - ext->ymin) * h; + y_tmp = y_tmp / (ext->ymax - ext->ymin); + col_a.y1 = h - y_tmp + chart->cords.y1; - mask_ret = area_union(&col_mask, mask, &col_a); - if(mask_ret != false) { - lv_draw_rect(&chart->cords, &col_mask, &rects); - } - } - dl_cnt++; + mask_ret = area_union(&col_mask, mask, &col_a); + if(mask_ret != false) { + lv_draw_rect(&chart->cords, &col_mask, &rects); + } + } } } #endif diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index c503b24ec..87968dd0c 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -37,7 +37,6 @@ typedef struct { cord_t * points; color_t color; - cord_t width; }lv_chart_dl_t; /*Data of chart */ @@ -45,25 +44,26 @@ typedef struct { /*No inherited ext*/ /*Ext. of ancestor*/ /*New data for this type */ + ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores lv_chart_dl_t)*/ cord_t ymin; /*y min value (used to scale the data)*/ cord_t ymax; /*y max value (used to scale the data)*/ uint8_t hdiv_num; /*Number of horizontal division lines*/ uint8_t vdiv_num; /*Number of vertical division lines*/ - ll_dsc_t dl_ll; /*Linked list for the data line pointers (stores lv_chart_dl_t)*/ uint16_t pnum; /*Point number in a data line*/ - uint8_t type :3; /*Line, column or point chart (from 'lv_chart_type_t')*/ + cord_t dl_width; /*Line width or point radius*/ uint8_t dl_num; /*Number of data lines in dl_ll*/ - opa_t data_opa; /*Opacity of data lines*/ - opa_t dark_eff; /*Dark level of the point/column bottoms*/ + opa_t dl_opa; /*Opacity of data lines*/ + opa_t dl_dark; /*Dark level of the point/column bottoms*/ + uint8_t type :3; /*Line, column or point chart (from 'lv_chart_type_t')*/ }lv_chart_ext_t; /*Chart types*/ typedef enum { LV_CHART_NONE = 0, - LV_CHART_LINE, - LV_CHART_COL, - LV_CHART_POINT, + LV_CHART_LINE = 0x01, + LV_CHART_COL = 0x02, + LV_CHART_POINT = 0x04, }lv_chart_type_t; @@ -90,9 +90,10 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param); /** * Allocate and add a data line to the chart * @param chart pointer to a chart object - * @return pointer to the allocated data line + * @param color color of the data line + * @return pointer to the allocated data line ( */ -lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color, cord_t width); +lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color); /** * Refresh a chart if its data line has changed @@ -132,9 +133,26 @@ void lv_chart_set_type(lv_obj_t * chart, lv_chart_type_t type); */ void lv_chart_set_pnum(lv_obj_t * chart, uint16_t pnum); -void lv_chart_set_data_opa(lv_obj_t * chart, opa_t opa); +/** + * Set the opacity of the data lines + * @param chart pointer to chart object + * @param opa opacity of the data lines + */ +void lv_chart_set_dl_opa(lv_obj_t * chart, opa_t opa); -void lv_chart_set_drak_effect(lv_obj_t * chart, opa_t dark_eff); +/** + * Set the line width or point radius of the data lines + * @param chart pointer to chart object + * @param width the new width + */ +void lv_chart_set_dl_width(lv_obj_t * chart, cord_t width); + +/** + * Set the dark effect on the bottom of the points or columns + * @param chart pointer to chart object + * @param dark_eff dark effect level (OPA_TRANSP to turn off) + */ +void lv_chart_set_dl_dark(lv_obj_t * chart, opa_t dark_eff); /** * Shift all data right and set the most right data on a data line @@ -158,8 +176,27 @@ lv_chart_type_t lv_chart_get_type(lv_obj_t * chart); */ uint16_t lv_chart_get_pnum(lv_obj_t * chart); -opa_t lv_chart_get_data_opa(lv_obj_t * chart); -opa_t lv_chart_get_dark_effect(lv_obj_t * chart, opa_t dark_eff); +/** + * Get the opacity of the data lines + * @param chart pointer to chart object + * @return the opacity of the data lines + */ +opa_t lv_chart_get_dl_opa(lv_obj_t * chart); + +/** + * Get the data line width + * @param chart pointer to chart object + * @return the width the data lines (lines or points) + */ +cord_t lv_chart_get_dl_width(lv_obj_t * chart); + +/** + * Get the dark effect level on the bottom of the points or columns + * @param chart pointer to chart object + * @return dark effect level (OPA_TRANSP to turn off) + */ +opa_t lv_chart_get_dl_dark(lv_obj_t * chart, opa_t dark_eff); + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_cont.c b/lv_objx/lv_cont.c index c9a1373b5..c9387ca4e 100644 --- a/lv_objx/lv_cont.c +++ b/lv_objx/lv_cont.c @@ -14,14 +14,14 @@ #include #include -#include +#include "lv_cont.h" #include "../lv_draw/lv_draw.h" #include "../lv_draw/lv_draw_vbasic.h" -#include "../lv_misc/area.h" +#include "misc/gfx/area.h" #include "misc/mem/dyn_mem.h" #include "misc/mem/linked_list.h" -#include "misc/others/color.h" +#include "misc/gfx/color.h" #include "misc/math/math_base.h" /********************* @@ -77,8 +77,8 @@ lv_obj_t * lv_cont_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_alloc_ext(new_rect, sizeof(lv_cont_ext_t)); lv_cont_ext_t * ext = lv_obj_get_ext(new_rect); dm_assert(ext); - ext->hpad_en = 0; - ext->vpad_en = 0; + ext->hfit_en = 0; + ext->vfit_en = 0; ext->layout = LV_CONT_LAYOUT_OFF; lv_obj_set_signal_f(new_rect, lv_cont_signal); @@ -90,8 +90,8 @@ lv_obj_t * lv_cont_create(lv_obj_t * par, lv_obj_t * copy) /*Copy an existing object*/ else { lv_cont_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->hpad_en = copy_ext->hpad_en; - ext->vpad_en = copy_ext->vpad_en; + ext->hfit_en = copy_ext->hfit_en; + ext->vfit_en = copy_ext->vfit_en; ext->layout = copy_ext->layout; /*Refresh the style with new signal function*/ @@ -118,9 +118,6 @@ bool lv_cont_signal(lv_obj_t * cont, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - - lv_style_t * style = lv_obj_get_style(cont); - switch(sign) { case LV_SIGNAL_STYLE_CHG: /*Recalculate the padding if the style changed*/ lv_cont_refr_layout(cont); @@ -175,8 +172,8 @@ void lv_cont_set_fit(lv_obj_t * cont, bool hor_en, bool ver_en) { lv_obj_inv(cont); lv_cont_ext_t * ext = lv_obj_get_ext(cont); - ext->hpad_en = hor_en == false ? 0 : 1; - ext->vpad_en = ver_en == false ? 0 : 1; + ext->hfit_en = hor_en == false ? 0 : 1; + ext->vfit_en = ver_en == false ? 0 : 1; /*Send a signal to set a new size*/ cont->signal_f(cont, LV_SIGNAL_CORD_CHG, cont); @@ -205,7 +202,7 @@ lv_cont_layout_t lv_cont_get_layout(lv_obj_t * cont) bool lv_cont_get_hfit(lv_obj_t * cont) { lv_cont_ext_t * ext = lv_obj_get_ext(cont); - return ext->hpad_en == 0 ? false : true; + return ext->hfit_en == 0 ? false : true; } /** @@ -216,7 +213,7 @@ bool lv_cont_get_hfit(lv_obj_t * cont) bool lv_cont_get_vfit(lv_obj_t * cont) { lv_cont_ext_t * ext = lv_obj_get_ext(cont); - return ext->vpad_en == 0 ? false : true; + return ext->vfit_en == 0 ? false : true; } @@ -549,8 +546,8 @@ static void lv_cont_refr_autofit(lv_obj_t * cont) { lv_cont_ext_t * ext = lv_obj_get_ext(cont); - if(ext->hpad_en == 0 && - ext->vpad_en == 0) { + if(ext->hfit_en == 0 && + ext->vfit_en == 0) { return; } @@ -565,10 +562,10 @@ static void lv_cont_refr_autofit(lv_obj_t * cont) lv_obj_get_cords(cont, &ori); lv_obj_get_cords(cont, &new_cords); - new_cords.x1 = LV_CORD_MAX; - new_cords.y1 = LV_CORD_MAX; - new_cords.x2 = LV_CORD_MIN; - new_cords.y2 = LV_CORD_MIN; + new_cords.x1 = CORD_MAX; + new_cords.y1 = CORD_MAX; + new_cords.x2 = CORD_MIN; + new_cords.y2 = CORD_MIN; LL_READ(cont->child_ll, i) { if(lv_obj_get_hidden(i) != false) continue; @@ -579,15 +576,15 @@ static void lv_cont_refr_autofit(lv_obj_t * cont) } /*If the value is not the init value then the page has >=1 child.*/ - if(new_cords.x1 != LV_CORD_MAX) { - if(ext->hpad_en != 0) { + if(new_cords.x1 != CORD_MAX) { + if(ext->hfit_en != 0) { new_cords.x1 -= hpad; new_cords.x2 += hpad; } else { new_cords.x1 = cont->cords.x1; new_cords.x2 = cont->cords.x2; } - if(ext->vpad_en != 0) { + if(ext->vfit_en != 0) { new_cords.y1 -= vpad; new_cords.y2 += vpad; } else { diff --git a/lv_objx/lv_cont.h b/lv_objx/lv_cont.h index 3fb8a5d22..2cf5c4f7f 100644 --- a/lv_objx/lv_cont.h +++ b/lv_objx/lv_cont.h @@ -42,9 +42,9 @@ typedef struct { /*Inherited from 'base_obj' so no inherited ext. */ /*Ext. of ancestor*/ /*New data for this type */ - uint8_t layout :5; /*Set a layout from 'lv_cont_layout_t' enum*/ - uint8_t hpad_en :1; /*Enable horizontal padding according to the children*/ - uint8_t vpad_en :1; /*Enable horizontal padding according to the children*/ + uint8_t layout :5; /*A layout from 'lv_cont_layout_t' enum*/ + uint8_t hfit_en :1; /*Enable horizontal padding to involve all children*/ + uint8_t vfit_en :1; /*Enable horizontal padding to involve all children*/ }lv_cont_ext_t; /********************** @@ -99,12 +99,11 @@ bool lv_cont_get_hfit(lv_obj_t * cont); /** * Get vertical fit enable attribute of a container - * @param obj pointer to a container object + * @param cont pointer to a container object * @return true: vertical padding is enabled */ bool lv_cont_get_vfit(lv_obj_t * cont); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 1403e6d92..d3ae56634 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -12,7 +12,7 @@ #include "lv_ddlist.h" #include "../lv_draw/lv_draw.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/anim.h" /********************* * DEFINES @@ -85,7 +85,7 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); ext->opt_label = lv_label_create(new_ddlist, NULL); - lv_obj_set_style(ext->opt_label, NULL); /*Inherit the style*/ + lv_obj_set_style(ext->opt_label, lv_style_get(LV_STYLE_PRETTY, NULL)); lv_cont_set_fit(new_ddlist, true, false); lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); lv_page_set_sb_mode(new_ddlist, LV_PAGE_SB_MODE_DRAG); @@ -126,6 +126,8 @@ bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { if(sign == LV_SIGNAL_STYLE_CHG) { + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + lv_obj_set_style(ext->opt_label, lv_obj_get_style(ddlist)); lv_ddlist_refr_size(ddlist, false); } } @@ -296,7 +298,7 @@ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_m if(ext->opened != 0) { lv_style_t * style = lv_obj_get_style(ddlist); const font_t * font = style->font; - cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; area_t rect_area; lv_style_t * style_page_scrl = lv_obj_get_style(lv_page_get_scrl(ddlist)); rect_area.y1 = ext->opt_label->cords.y1; @@ -386,7 +388,7 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) } else { /*Close the list*/ const font_t * font = style->font; lv_style_t * label_style = lv_obj_get_style(ext->opt_label); - cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; new_height = font_h + 2 * label_style->line_space; } if(anim_en == false) { @@ -420,7 +422,7 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist) lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); lv_style_t * style = lv_obj_get_style(ddlist); const font_t * font = style->font; - cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; lv_style_t * label_style = lv_obj_get_style(ext->opt_label); lv_obj_t * scrl = lv_page_get_scrl(ddlist); lv_style_t * style_scrl = lv_obj_get_style(scrl); diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 017f1eb8f..518456947 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -83,7 +83,6 @@ void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt); */ void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, uint16_t)); - /** * Set the auto size attribute. If enabled the height will reduced to be visible on the parent. * In this case the drop down list can be scrolled. @@ -92,6 +91,11 @@ void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, u */ void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size); +/** + * Set the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @param style pointer the new style of the select rectangle + */ void lv_dlist_set_style_select(lv_obj_t * ddlist, lv_style_t * style); /** @@ -110,11 +114,16 @@ uint16_t lv_ddlist_get_selected(lv_obj_t * ddlist); /** * Get the auto size attribute. - * @param ddlist pointer to a drop down list + * @param ddlist pointer to a drop down list object * @return true: the auto_size is enabled, false: disabled */ bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size); +/** + * Get the style of the rectangle on the selected option + * @param ddlist pointer to a drop down list object + * @return pointer the style of the select rectangle + */ lv_style_t * lv_dlist_get_style_select(lv_obj_t * ddlist); /********************** diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 26c076078..c05afbe6e 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -14,7 +14,7 @@ #include #include #include "../lv_draw/lv_draw.h" -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" #include "misc/math/trigo.h" #include "misc/math/math_base.h" @@ -25,6 +25,7 @@ #define LV_GAUGE_DEF_HEIGHT (3 * LV_DPI) #define LV_GAUGE_DEF_NEEDLE_COLOR COLOR_RED #define LV_GAUGE_DEF_ANGLE 220 + /********************** * TYPEDEFS **********************/ @@ -406,7 +407,7 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_ point_t label_size; txt_get_size(&label_size, scale_txt, style->font, style->letter_space, style->line_space, - LV_CORD_MAX, TXT_FLAG_NONE); + CORD_MAX, TXT_FLAG_NONE); /*Draw the label*/ label_cord.x1 = x - label_size.x / 2; @@ -458,7 +459,7 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style lv_style_get(LV_STYLE_PLAIN, &style_neddle_mid); style_neddle_mid.mcolor = style->bcolor; style_neddle_mid.gcolor = style->bcolor; - style_neddle_mid.radius = LV_CONT_CIRCLE; + style_neddle_mid.radius = LV_DRAW_CIRCLE; area_t nm_cord; nm_cord.x1 = x_ofs - style->opad; diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index c37ec7d97..3f85f66b7 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -16,7 +16,7 @@ #include "misc/fs/ufs/ufs.h" #if LV_IMG_ENABLE_SYMBOLS != 0 -#include "../lv_misc/text.h" +#include "misc/gfx/text.h" #endif /********************* @@ -79,10 +79,13 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) * and must be screen sized*/ if(par != NULL) ext->auto_size = 1; else ext->auto_size = 0; - lv_obj_set_style(new_img, lv_style_get(LV_STYLE_PLAIN, NULL)); + if(par != NULL) lv_obj_set_style(new_img, NULL); /*Inherit the style by default*/ + else lv_obj_set_style(new_img, lv_style_get(LV_STYLE_PLAIN, NULL)); /*Set style for screens*/ } else { - ext->auto_size = lv_img_get_auto_size(copy); - lv_img_set_file(new_img, ext->fn); + lv_img_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->auto_size = copy_ext->auto_size; + ext->upscale = copy_ext->upscale; + lv_img_set_file(new_img, copy_ext->fn); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_img); @@ -107,14 +110,15 @@ bool lv_img_signal(lv_obj_t * img, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - lv_img_ext_t * img_p = lv_obj_get_ext(img); - switch(sign) { - /*TODO set file again if style changed with symbols*/ - case LV_SIGNAL_CLEANUP: - dm_free(img_p->fn); - break; - default: - break; + lv_img_ext_t * ext = lv_obj_get_ext(img); + if(sign == LV_SIGNAL_CLEANUP) { + dm_free(ext->fn); + } + else if(sign == LV_SIGNAL_STYLE_CHG) { + /*Refresh the file name to refresh the symbol text size*/ + if(lv_img_is_symbol(ext->fn) != false) { + lv_img_set_file(img, ext->fn); + } } } @@ -186,7 +190,7 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) #if LV_IMG_ENABLE_SYMBOLS lv_style_t * style = lv_obj_get_style(img); point_t size; - txt_get_size(&size, fn, style->font, 0, 0, LV_CORD_MAX, TXT_FLAG_NONE); + txt_get_size(&size, fn, style->font, style->letter_space, style->line_space, CORD_MAX, TXT_FLAG_NONE); ext->w = size.x; ext->h = size.y; ext->transp = 0; @@ -200,7 +204,7 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) } if(fn != NULL) { - ext->fn = dm_realloc(ext->fn, strlen(fn) + 1); + ext->fn = dm_realloc(ext->fn, strlen(fn) + 1); strcpy(ext->fn, fn); } else { ext->fn = NULL; @@ -347,6 +351,8 @@ static bool lv_img_is_symbol(const char * txt) return false; #endif + if(txt == NULL) return false; + /* if txt begins with an upper case letter then it refers to a driver * so it is a file name*/ if(txt[0] >= 'A' && txt[0] <= 'Z') return false; diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index d4a91fedd..3d1ddf67e 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -26,7 +26,7 @@ #if LV_IMG_ENABLE_SYMBOLS #include "lv_label.h" -#include "../lv_misc/fonts/symbol_def.h" +#include "misc/gfx/fonts/symbol_def.h" #endif /********************* diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index d9c8b37ae..9b7fdeded 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -9,12 +9,12 @@ #include "lv_conf.h" #if USE_LV_LABEL != 0 -#include "misc/others/color.h" +#include "misc/gfx/color.h" #include "misc/math/math_base.h" #include "lv_label.h" #include "../lv_obj/lv_obj.h" -#include "../lv_misc/text.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/text.h" +#include "misc/gfx/anim.h" #include "../lv_draw/lv_draw.h" /********************* @@ -351,7 +351,7 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) cord_t max_w = lv_obj_get_width(label); lv_style_t * style = lv_obj_get_style(label); const font_t * font = style->font; - uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; + uint8_t letter_height = font_get_height(font) >> FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -359,7 +359,7 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) /*If the width will be expanded the set the max length to very big */ if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) { - max_w = LV_CORD_MAX; + max_w = CORD_MAX; } /*Search the line of the index letter */; @@ -388,10 +388,10 @@ void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos) } } - x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; + x += (font_get_width(font, text[i]) >> FONT_ANTIALIAS) + style->letter_space; } - if(style->txt_align != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, font, style->letter_space, flag); @@ -418,7 +418,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) cord_t max_w = lv_obj_get_width(label); lv_style_t * style = lv_obj_get_style(label); const font_t * font = style->font; - uint8_t letter_height = font_get_height(font) >> LV_FONT_ANTIALIAS; + uint8_t letter_height = font_get_height(font) >> FONT_ANTIALIAS; cord_t y = 0; txt_flag_t flag = TXT_FLAG_NONE; @@ -426,7 +426,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) /*If the width will be expanded set the max length to very big */ if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) { - max_w = LV_CORD_MAX; + max_w = CORD_MAX; } /*Search the line of the index letter */; @@ -439,7 +439,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) /*Calculate the x coordinate*/ cord_t x = 0; - if(style->txt_align != 0) { + if(style->txt_align == LV_TXT_ALIGN_MID) { cord_t line_w; line_w = txt_get_width(&text[line_start], new_line_start - line_start, font, style->letter_space, flag); @@ -456,7 +456,7 @@ uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos) } } - x += (font_get_width(font, text[i]) >> LV_FONT_ANTIALIAS) + style->letter_space; + x += (font_get_width(font, text[i]) >> FONT_ANTIALIAS) + style->letter_space; if(pos->x < x) break; } @@ -519,7 +519,7 @@ static void lv_label_refr_text(lv_obj_t * label) /*If the width will be expanded set the max length to very big */ if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) { - max_w = LV_CORD_MAX; + max_w = CORD_MAX; } /*Calc. the height and longest line*/ @@ -544,7 +544,7 @@ static void lv_label_refr_text(lv_obj_t * label) anim.var = label; anim.repeat = 1; anim.playback = 1; - anim.start = font_get_width(font, ' ') >> LV_FONT_ANTIALIAS; + anim.start = font_get_width(font, ' ') >> FONT_ANTIALIAS; anim.act_time = 0; anim.end_cb = NULL; anim.path = anim_get_path(ANIM_PATH_LIN); @@ -555,7 +555,7 @@ static void lv_label_refr_text(lv_obj_t * label) bool hor_anim = false; if(lv_obj_get_width(label) > lv_obj_get_width(parent)) { anim.end = lv_obj_get_width(parent) - lv_obj_get_width(label) - - (font_get_width(font, ' ') >> LV_FONT_ANTIALIAS); + (font_get_width(font, ' ') >> FONT_ANTIALIAS); anim.fp = (anim_fp_t) lv_obj_set_x; anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end); anim_create(&anim); @@ -564,7 +564,7 @@ static void lv_label_refr_text(lv_obj_t * label) if(lv_obj_get_height(label) > lv_obj_get_height(parent)) { anim.end = lv_obj_get_height(parent) - lv_obj_get_height(label) - - (font_get_height(font) - LV_FONT_ANTIALIAS); + (font_get_height(font) - FONT_ANTIALIAS); anim.fp = (anim_fp_t)lv_obj_set_y; /*Different animation speed if horizontal animation is created too*/ diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index 2254e2baa..c5b6f7db3 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -13,8 +13,8 @@ #if USE_LV_LABEL != 0 #include "../lv_obj/lv_obj.h" -#include "../lv_misc/font.h" -#include "../lv_misc/text.h" +#include "misc/gfx/font.h" +#include "misc/gfx/text.h" /********************* * DEFINES @@ -41,8 +41,8 @@ typedef struct /*New data for this type */ char * txt; /*Text of the label*/ lv_label_long_mode_t long_mode; /*Determinate what to do with the long texts*/ - char dot_tmp[LV_LABEL_DOT_NUM]; /*Store character which are replaced with dots*/ - uint16_t dot_end; /*The text end position in dot mode*/ + char dot_tmp[LV_LABEL_DOT_NUM]; /*Store the character which are replaced by dots (Handled by the library)*/ + uint16_t dot_end; /*The text end position in dot mode (Handled by the library)*/ uint8_t static_txt :1; /*Flag to indicate the text is static*/ uint8_t recolor :1; /*Enable in-line letter re-coloring*/ }lv_label_ext_t; @@ -97,6 +97,7 @@ void lv_label_set_text_static(lv_obj_t * label, const char * text); * @param text pointe rto the new text */ void lv_label_append_text(lv_obj_t * label, const char * text); + /** * Set the behavior of the label with longer text then the object size * @param label pointer to a label object @@ -125,7 +126,6 @@ const char * lv_label_get_text(lv_obj_t * label); */ lv_label_long_mode_t lv_label_get_long_mode(lv_obj_t * label); - /** * Get the recoloring attribute * @param label pointer to a label object diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index aeadf2cc9..a842fd594 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -9,7 +9,6 @@ #include "lv_conf.h" #if USE_LV_LED != 0 -#include #include "lv_led.h" #include "../lv_draw/lv_draw.h" @@ -18,7 +17,7 @@ *********************/ #define LV_LED_WIDTH_DEF (LV_DPI / 2) #define LV_LED_HEIGHT_DEF (LV_DPI / 2) -#define LV_LED_BRIGHT_OFF 40 +#define LV_LED_BRIGHT_OFF 128 #define LV_LED_BRIGHT_ON 255 /********************** @@ -56,7 +55,7 @@ static lv_design_f_t ancestor_design_f; lv_obj_t * lv_led_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor basic object*/ - lv_obj_t * new_led = lv_cont_create(par, copy); + lv_obj_t * new_led = lv_obj_create(par, copy); dm_assert(new_led); /*Allocate the object type specific extended data*/ @@ -98,18 +97,12 @@ bool lv_led_signal(lv_obj_t * led, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_cont_signal(led, sign, param); + valid = lv_obj_signal(led, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - default: - break; - } + } return valid; @@ -210,9 +203,11 @@ static bool lv_led_design(lv_obj_t * led, const area_t * mask, lv_design_mode_t /*Mix. the color with black proportionally with brightness*/ leds_tmp.mcolor = color_mix(leds_tmp.mcolor, COLOR_BLACK, ext->bright); leds_tmp.gcolor = color_mix(leds_tmp.gcolor, COLOR_BLACK, ext->bright); + leds_tmp.bcolor = color_mix(leds_tmp.bcolor, COLOR_BLACK, ext->bright); /*Set the current swidth according to brightness proportionally between LV_LED_BRIGHT_OFF and LV_LED_BRIGHT_ON*/ - leds_tmp.swidth = (uint16_t)(uint16_t)(ext->bright * style->swidth) >> 8; + uint16_t bright_tmp = ext->bright; + leds_tmp.swidth = ((bright_tmp - LV_LED_BRIGHT_OFF) * style->swidth) / (LV_LED_BRIGHT_ON - LV_LED_BRIGHT_OFF); led->style_p = &leds_tmp; ancestor_design_f(led, mask, mode); diff --git a/lv_objx/lv_led.h b/lv_objx/lv_led.h index 50338513e..5faa9f1d9 100644 --- a/lv_objx/lv_led.h +++ b/lv_objx/lv_led.h @@ -12,11 +12,6 @@ #include "lv_conf.h" #if USE_LV_LED != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_led: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - #include "../lv_obj/lv_obj.h" /********************* @@ -30,7 +25,7 @@ /*Data of led*/ typedef struct { - lv_cont_ext_t bg_rect; /*Ext. of ancestor*/ + /*No inherited ext.*/ /*New data for this type */ uint8_t bright; /*Current brightness of the LED (0..255)*/ }lv_led_ext_t; diff --git a/lv_objx/lv_line.c b/lv_objx/lv_line.c index 867cb2ecf..870fc185d 100644 --- a/lv_objx/lv_line.c +++ b/lv_objx/lv_line.c @@ -13,10 +13,10 @@ #include "../lv_draw/lv_draw_vbasic.h" #include "../lv_draw/lv_draw_rbasic.h" #include "../lv_draw/lv_draw.h" -#include +#include #include #include -#include +#include #include #include #include @@ -76,11 +76,12 @@ lv_obj_t * lv_line_create(lv_obj_t * par, lv_obj_t * copy) } /*Copy an existing object*/ else { + lv_line_ext_t * copy_ext = lv_obj_get_ext(copy); lv_line_set_auto_size(new_line,lv_line_get_auto_size(copy)); lv_line_set_y_inv(new_line,lv_line_get_y_inv(copy)); lv_line_set_auto_size(new_line,lv_line_get_auto_size(copy)); lv_line_set_upscale(new_line,lv_line_get_upscale(copy)); - lv_line_set_points(new_line, ext->point_array, ext->point_num); + lv_line_set_points(new_line, copy_ext->point_array, copy_ext->point_num); /*Refresh the style with new signal function*/ lv_obj_refr_style(new_line); } @@ -121,7 +122,7 @@ bool lv_line_signal(lv_obj_t * line, lv_signal_t sign, void * param) * Set an array of points. The line object will connect these points. * @param line pointer to a line object * @param point_a an array of points. Only the address is saved, - * so the array can be a local variable which will be destroyed + * so the array can NOT be a local variable which will be destroyed * @param point_num number of points in 'point_a' */ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point_num) @@ -137,8 +138,8 @@ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point if(point_num > 0 && ext->auto_size != 0) { uint16_t i; - cord_t xmax = LV_CORD_MIN; - cord_t ymax = LV_CORD_MIN; + cord_t xmax = CORD_MIN; + cord_t ymax = CORD_MIN; for(i = 0; i < point_num; i++) { xmax = MATH_MAX(point_a[i].x * us, xmax); ymax = MATH_MAX(point_a[i].y * us, ymax); diff --git a/lv_objx/lv_line.h b/lv_objx/lv_line.h index 0815988ef..220b16686 100644 --- a/lv_objx/lv_line.h +++ b/lv_objx/lv_line.h @@ -37,7 +37,6 @@ typedef struct * GLOBAL PROTOTYPES **********************/ - /** * Create a line objects * @param par pointer to an object, it will be the parent of the new line @@ -57,7 +56,7 @@ bool lv_line_signal(lv_obj_t * line, lv_signal_t sign, void * param); * Set an array of points. The line object will connect these points. * @param line pointer to a line object * @param point_a an array of points. Only the address is saved, - * so the array can be a local variable which will be destroyed + * so the array can NOT be a local variable which will be destroyed * @param point_num number of points in 'point_a' */ void lv_line_set_points(lv_obj_t * line, const point_t * point_a, uint16_t point_num); diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index b43f71bda..b18718d09 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -59,23 +59,35 @@ lv_obj_t * lv_list_create(lv_obj_t * par, lv_obj_t * copy) lv_list_ext_t * ext = lv_obj_alloc_ext(new_list, sizeof(lv_list_ext_t)); dm_assert(ext); - ext->width_sb = 0; - ext->styles_liste[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); - ext->styles_liste[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); - ext->styles_liste[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); - ext->styles_liste[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); - ext->styles_liste[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); + ext->sb_out = 0; + ext->style_img = NULL; + ext->styles_btn[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->styles_btn[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->styles_btn[LV_BTN_STATE_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); + ext->styles_btn[LV_BTN_STATE_PR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); + ext->styles_btn[LV_BTN_STATE_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); lv_obj_set_signal_f(new_list, lv_list_signal); /*Init the new list object*/ if(copy == NULL) { - lv_obj_set_size_us(new_list, 2 * LV_DPI, 3 * LV_DPI); + lv_obj_set_size(new_list, 2 * LV_DPI, 3 * LV_DPI); lv_cont_set_layout(ext->page.scrl, LV_LIST_LAYOUT_DEF); lv_obj_set_style(new_list, lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_style(lv_page_get_scrl(new_list), lv_style_get(LV_STYLE_PRETTY, NULL)); lv_page_set_sb_mode(new_list, LV_PAGE_SB_MODE_AUTO); } else { + lv_list_ext_t * copy_ext = lv_obj_get_ext(copy); + + lv_list_set_styles_btn(new_list, copy_ext->styles_btn[LV_BTN_STATE_REL], + copy_ext->styles_btn[LV_BTN_STATE_PR], + copy_ext->styles_btn[LV_BTN_STATE_TREL], + copy_ext->styles_btn[LV_BTN_STATE_TPR], + copy_ext->styles_btn[LV_BTN_STATE_INA]); + lv_list_set_style_img(new_list, copy_ext->style_img); + + lv_list_set_sb_out(new_list, copy_ext->sb_out); + /*Refresh the style with new signal function*/ lv_obj_refr_style(new_list); } @@ -115,9 +127,9 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l /*Create a list element with the image an the text*/ lv_obj_t * liste; liste = lv_btn_create(list, NULL); - lv_btn_set_styles(liste, ext->styles_liste[LV_BTN_STATE_REL], ext->styles_liste[LV_BTN_STATE_PR], - ext->styles_liste[LV_BTN_STATE_TREL], ext->styles_liste[LV_BTN_STATE_TPR], - ext->styles_liste[LV_BTN_STATE_INA]); + lv_btn_set_styles(liste, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], + ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], + ext->styles_btn[LV_BTN_STATE_INA]); lv_btn_set_rel_action(liste, rel_action); lv_page_glue_obj(liste, true); @@ -127,14 +139,14 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l if(img_fn != NULL && img_fn[0] != '\0') { lv_obj_t * img = lv_img_create(liste, NULL); lv_img_set_file(img, img_fn); - lv_obj_set_style(img, ext->styles_liste[LV_BTN_STATE_REL]); + lv_obj_set_style(img, ext->style_img); lv_obj_set_click(img, false); } if(txt != NULL) { lv_obj_t * label = lv_label_create(liste, NULL); lv_label_set_text(label, txt); - lv_obj_set_style(label, ext->styles_liste[LV_BTN_STATE_REL]); + lv_obj_set_style(label, ext->styles_btn[LV_BTN_STATE_REL]); lv_obj_set_click(label, false); } @@ -145,7 +157,7 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const char * img_fn, const char * txt, l w -= hpad_tot * 2; /*Make place for the scrollbar if hpad_tot is too small*/ - if(ext->width_sb != 0) { + if(ext->sb_out != 0) { if(hpad_tot < ext->page.sb_width) w -= ext->page.sb_width - hpad_tot; } lv_obj_set_width(liste, w); @@ -202,6 +214,19 @@ void lv_list_down(lv_obj_t * list) * Setter functions *====================*/ +/** + * Enable/Disable to scrollbar outside attribute + * @param list pointer to list object + * @param out true: reduce the buttons width therefore scroll bar will be out of the buttons, + * false: keep button size and place scroll bar on the buttons + */ +void lv_list_set_sb_out(lv_obj_t * list, bool out) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + ext->sb_out = out == false ? 0 : 1; +} + /** * Set styles of the list elements of a list in each state * @param list pointer to list object @@ -211,15 +236,17 @@ void lv_list_down(lv_obj_t * list) * @param tpr pointer to a style for toggled pressed state * @param ina pointer to a style for inactive state */ -void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina) +void lv_list_set_styles_btn(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, + lv_style_t * trel, lv_style_t * tpr, + lv_style_t * ina) { lv_list_ext_t * ext = lv_obj_get_ext(list); - ext->styles_liste[LV_BTN_STATE_REL] = rel; - ext->styles_liste[LV_BTN_STATE_PR] = pr; - ext->styles_liste[LV_BTN_STATE_TREL] = trel; - ext->styles_liste[LV_BTN_STATE_TPR] = tpr; - ext->styles_liste[LV_BTN_STATE_INA] = ina; + ext->styles_btn[LV_BTN_STATE_REL] = rel; + ext->styles_btn[LV_BTN_STATE_PR] = pr; + ext->styles_btn[LV_BTN_STATE_TREL] = trel; + ext->styles_btn[LV_BTN_STATE_TPR] = tpr; + ext->styles_btn[LV_BTN_STATE_INA] = ina; lv_obj_t * scrl = lv_page_get_scrl(list); lv_obj_t * liste = lv_obj_get_child(scrl, NULL); @@ -228,7 +255,31 @@ void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr lv_btn_set_styles(liste, rel, pr, trel, tpr, ina); liste = lv_obj_get_child(scrl, liste); } +} + +/** + * Set the styles of the list element image (typically to set symbol font) + * @param list pointer to list object + * @param style pointer to the new style of the button images + */ +void lv_list_set_style_img(lv_obj_t * list, lv_style_t * style) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + ext->style_img = style; + + lv_obj_t * scrl = lv_page_get_scrl(list); + lv_obj_t * liste = lv_obj_get_child(scrl, NULL); + lv_obj_t * img; + while(liste != NULL) + { + img = lv_obj_get_child(liste, NULL); /*Now img = the label*/ + img = lv_obj_get_child(liste, img); /*Now img = the image (if ULL then no image) */ + if(img != NULL) lv_obj_set_style(img, style); + + liste = lv_obj_get_child(scrl, liste); + } } /*===================== @@ -247,10 +298,20 @@ const char * lv_list_element_get_txt(lv_obj_t * liste) return lv_label_get_text(label); } +/** + * Get the scroll bar outside attribute + * @param list pointer to list object + * @param en true: scroll bar outside the buttons, false: scroll bar inside + */ +bool lv_list_get_sb_out(lv_obj_t * list, bool en) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + return ext->sb_out == 0 ? false : true; +} /** * Get the style of the list elements in a given state - * @param list pointer to a button object + * @param list pointer to a list object * @param state a state from 'lv_btn_state_t' in which style should be get * @return pointer to the style in the given state */ @@ -258,12 +319,26 @@ lv_style_t * lv_list_get_style_liste(lv_obj_t * list, lv_btn_state_t state) { lv_list_ext_t * ext = lv_obj_get_ext(list); - if(ext->styles_liste[state] == NULL) return lv_obj_get_style(list); + if(ext->styles_btn[state] == NULL) return lv_obj_get_style(list); - return ext->styles_liste[state]; + return ext->styles_btn[state]; } +/** + * Get the style of the list elements images + * @param list pointer to a list object + * @return pointer to the image style + */ +lv_style_t * lv_list_get_style_img(lv_obj_t * list, lv_btn_state_t state) +{ + lv_list_ext_t * ext = lv_obj_get_ext(list); + + if(ext->style_img == NULL) return lv_list_get_style_liste(list, LV_BTN_STATE_REL); + + return ext->style_img; +} + /********************** * STATIC FUNCTIONS **********************/ diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index 377f4a61b..3dc1ee78e 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -43,8 +43,9 @@ typedef struct { lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ - lv_style_t * styles_liste[LV_BTN_STATE_NUM]; /*Styles of the list element buttons*/ - uint8_t width_sb :1; /*1: Keep space for the scrollbar*/ + lv_style_t * styles_btn[LV_BTN_STATE_NUM]; /*Styles of the list element buttons*/ + lv_style_t * style_img; /*Style of the list element images on buttons*/ + uint8_t sb_out :1; /*1: Keep space for the scrollbar*/ }lv_list_ext_t; /********************** @@ -89,7 +90,34 @@ void lv_list_up(lv_obj_t * list); */ void lv_list_down(lv_obj_t * list); -void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); +/** + * Enable/Disable to scrollbar outside attribute + * @param list pointer to list object + * @param out true: reduce the buttons width therefore scroll bar will be out of the buttons, + * false: keep button size and place scroll bar on the buttons + */ +void lv_list_set_sb_out(lv_obj_t * list, bool out); + +/** + * Set styles of the list elements of a list in each state + * @param list pointer to list object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_list_set_styles_btn(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, +lv_style_t * trel, lv_style_t * tpr, +lv_style_t * ina); + +/** + * Set the styles of the list element image (typically to set symbol font) + * @param list pointer to list object + * @param style pointer to the new style of the button images + */ +void lv_list_set_style_img(lv_obj_t * list, lv_style_t * style); + /** * Get the text of a list element * @param liste pointer to list element @@ -97,7 +125,28 @@ void lv_list_set_styles_liste(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr */ const char * lv_list_element_get_txt(lv_obj_t * liste); +/** + * Get the scroll bar outside attribute + * @param list pointer to list object + * @param en true: scroll bar outside the buttons, false: scroll bar inside + */ +bool lv_list_get_sb_out(lv_obj_t * list, bool en); + +/** + * Get the style of the list elements in a given state + * @param list pointer to a list object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ lv_style_t * lv_list_get_style_liste(lv_obj_t * list, lv_btn_state_t state); + +/** + * Get the style of the list elements images + * @param list pointer to a list object + * @return pointer to the image style + */ +lv_style_t * lv_list_get_style_img(lv_obj_t * list, lv_btn_state_t state); + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index 62800355c..6d1129686 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -11,7 +11,7 @@ #if USE_LV_MBOX != 0 #include "lv_mbox.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/anim.h" #include "misc/math/math_base.h" /********************* @@ -67,11 +67,8 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) dm_assert(ext); ext->txt = NULL; ext->btnh = NULL; - ext->styles_btn[LV_BTN_STATE_REL] = lv_style_get(LV_STYLE_BTN_REL, NULL); - ext->styles_btn[LV_STYLE_BTN_PR] = lv_style_get(LV_STYLE_BTN_PR, NULL); - ext->styles_btn[LV_STYLE_BTN_TREL] = lv_style_get(LV_STYLE_BTN_TREL, NULL); - ext->styles_btn[LV_STYLE_BTN_TPR] = lv_style_get(LV_STYLE_BTN_TPR, NULL); - ext->styles_btn[LV_STYLE_BTN_INA] = lv_style_get(LV_STYLE_BTN_INA, NULL); + ext->style_btn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); + ext->style_btn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_f(new_mbox, lv_mbox_signal); @@ -97,12 +94,10 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_t * btn_copy; const char * btn_txt_copy; lv_btn_ext_t * btn_ext_copy; - btn_copy = lv_obj_get_child(copy_ext->btnh, NULL); - while(btn_copy != NULL) { + LL_READ_BACK(copy_ext->btnh->child_ll, btn_copy) { btn_txt_copy = lv_label_get_text(lv_obj_get_child(btn_copy, NULL)); btn_ext_copy = lv_obj_get_ext(btn_copy); lv_mbox_add_btn(new_mbox, btn_txt_copy, btn_ext_copy->rel_action); - btn_copy = lv_obj_get_child(copy_ext->btnh, btn_copy); } } /*Refresh the style with new signal function*/ @@ -150,20 +145,14 @@ bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param) lv_dispi_wait_release(param); } else if(sign == LV_SIGNAL_STYLE_CHG) { - lv_obj_set_style(ext->txt, ext->styles_btn[LV_BTN_STATE_REL]); - /*Refresh all the buttons*/ if(ext->btnh != NULL) { lv_obj_t * btn; btn = lv_obj_get_child(ext->btnh, NULL); while(btn != NULL) { /*Refresh the next button's style*/ - lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], - ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], - ext->styles_btn[LV_BTN_STATE_INA]); + lv_btn_set_styles(btn, ext->style_btn_rel, ext->style_btn_pr, NULL, NULL, NULL); - /*Refresh the button label too*/ - lv_obj_set_style(lv_obj_get_child(btn, NULL), ext->styles_btn[LV_BTN_STATE_REL]); btn = lv_obj_get_child(ext->btnh, btn); } } @@ -211,14 +200,11 @@ lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t re lv_obj_t * btn; btn = lv_btn_create(ext->btnh, NULL); lv_btn_set_rel_action(btn, rel_action); - lv_btn_set_styles(btn, ext->styles_btn[LV_BTN_STATE_REL], ext->styles_btn[LV_BTN_STATE_PR], - ext->styles_btn[LV_BTN_STATE_TREL], ext->styles_btn[LV_BTN_STATE_TPR], - ext->styles_btn[LV_BTN_STATE_INA]); + lv_btn_set_styles(btn, ext->style_btn_rel, ext->style_btn_pr, NULL, NULL, NULL); lv_cont_set_fit(btn, true, true); lv_obj_t * label; label = lv_label_create(btn, NULL); - lv_obj_set_style(label, ext->styles_btn[LV_BTN_STATE_REL]); lv_label_set_text(label, btn_txt); lv_mbox_realign(mbox); @@ -252,20 +238,16 @@ void lv_mbox_set_text(lv_obj_t * mbox, const char * txt) * @param tpr pointer to a style for toggled pressed state * @param ina pointer to a style for inactive state */ -void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina) +void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr) { lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); - ext->styles_btn[LV_BTN_STATE_REL] = rel; - ext->styles_btn[LV_BTN_STATE_PR] = pr; - ext->styles_btn[LV_BTN_STATE_TREL] = trel; - ext->styles_btn[LV_BTN_STATE_TPR] = tpr; - ext->styles_btn[LV_BTN_STATE_INA] = ina; - + ext->style_btn_rel = rel; + ext->style_btn_pr = pr; lv_obj_t * btn = lv_obj_get_child(ext->btnh, NULL); while(btn != NULL) { - lv_btn_set_styles(btn, rel, pr, trel, tpr, ina); + lv_btn_set_styles(btn, rel, pr, NULL, NULL, NULL); btn = lv_obj_get_child(mbox, btn); } } diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index b64d85522..60af1e7ca 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -44,9 +44,10 @@ typedef struct { lv_cont_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * txt; /*Text of the message box*/ - lv_obj_t * btnh; /*Holder of the buttons*/ - lv_style_t * styles_btn[LV_BTN_STATE_NUM]; /*Style of the buttons*/ + lv_obj_t * txt; /*Text of the message box*/ + lv_obj_t * btnh; /*Holder of the buttons*/ + lv_style_t * style_btn_rel; /*Style of the released buttons*/ + lv_style_t * style_btn_pr; /*Style of the pressed buttons*/ }lv_mbox_ext_t; /********************** @@ -71,28 +72,39 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy); bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param); /** - * Set the text of the message box - * @param mbox pointer to a message box - * @param txt a '\0' terminated character string which will be the message box text + * A release action which can be assigned to a message box button to close it + * @param btn pointer to the released button + * @param dispi pointer to the caller display input + * @return always lv_action_res_t because the button is deleted with the mesage box */ -void lv_mbox_set_text(lv_obj_t * mbox, const char * txt); -void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr, lv_style_t * trel, lv_style_t * tpr, lv_style_t * ina); +lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi); + /** * Add a button to the message box * @param mbox pointer to message box object * @param btn_txt the text of the button - * @param rel_action a function which will be called when the button is relesed + * @param rel_action a function which will be called when the button is released * @return pointer to the created button (lv_btn) */ lv_obj_t * lv_mbox_add_btn(lv_obj_t * mbox, const char * btn_txt, lv_action_t rel_action); /** - * A release action which can be assigned to a message box button to close it - * @param btn pointer to the released button - * @param dispi pointer to the caller display input - * @return always LV_ACTION_RES_INV because the button is deleted with the message box + * Set the text of the message box + * @param mbox pointer to a message box + * @param txt a '\0' terminated character string which will be the message box text */ -lv_action_res_t lv_mbox_close_action(lv_obj_t * btn, lv_dispi_t * dispi); +void lv_mbox_set_text(lv_obj_t * mbox, const char * txt); + +/** + * Set styles of the buttons of a message box in each state + * @param mbox pointer to a message box object + * @param rel pointer to a style for releases state + * @param pr pointer to a style for pressed state + * @param trel pointer to a style for toggled releases state + * @param tpr pointer to a style for toggled pressed state + * @param ina pointer to a style for inactive state + */ +void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr); /** * Automatically delete the message box after a given time @@ -122,6 +134,15 @@ const char * lv_mbox_get_txt(lv_obj_t * mbox); */ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn); +/** + * Get the style of the buttons on a message box + * @param mbox pointer to a message box object + * @param state a state from 'lv_btn_state_t' in which style should be get + * @return pointer to the style in the given state + */ +lv_style_t * lv_mbox_get_style_btn(lv_obj_t * mbox, lv_btn_state_t state); + + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index aca44c695..07feb0354 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -14,7 +14,7 @@ #include "../lv_objx/lv_cont.h" #include "../lv_draw/lv_draw.h" #include "../lv_obj/lv_refr.h" -#include "../lv_misc/anim.h" +#include "misc/gfx/anim.h" /********************* * DEFINES @@ -73,7 +73,7 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) ext->sbh_draw = 0; ext->sbv_draw = 0; ext->style_sb = lv_style_get(LV_STYLE_PRETTY, NULL); - ext->sb_width = LV_DPI / 8; + ext->sb_width = LV_DPI / 6; ext->sb_mode = LV_PAGE_SB_MODE_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_page); @@ -89,6 +89,10 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) lv_cont_set_fit(ext->scrl, true, true); lv_obj_set_style(ext->scrl, lv_style_get(LV_STYLE_PRETTY, NULL)); + lv_page_set_sb_width(new_page, ext->sb_width); + lv_page_set_sb_mode(new_page, ext->sb_mode); + lv_page_set_style_sb(new_page, ext->style_sb); + /* Add the signal function only if 'scrolling' is created * because everything has to be ready before any signal is received*/ lv_obj_set_signal_f(new_page, lv_page_signal); @@ -101,6 +105,9 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) lv_page_set_pr_action(new_page, copy_ext->pr_action); lv_page_set_rel_action(new_page, copy_ext->rel_action); + lv_page_set_sb_mode(new_page, copy_ext->sb_mode); + lv_page_set_sb_width(new_page, copy_ext->sb_width); + lv_page_set_style_sb(new_page, copy_ext->style_sb); /* Add the signal function only if 'scrolling' is created * because everything has to be ready before any signal is received*/ @@ -150,9 +157,6 @@ bool lv_page_signal(lv_obj_t * page, lv_signal_t sign, void * param) break; case LV_SIGNAL_STYLE_CHG: - area_set_height(&ext->sbh, ext->sb_width); - area_set_width(&ext->sbv, ext->sb_width); - if(ext->sb_mode == LV_PAGE_SB_MODE_ON) { ext->sbh_draw = 1; ext->sbv_draw = 1; @@ -367,8 +371,11 @@ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action) void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width) { lv_page_ext_t * ext = lv_obj_get_ext(page); - ext->sb_width = sb_width; - lv_obj_inv(page); + ext->sb_width = sb_width; + area_set_height(&ext->sbh, ext->sb_width); + area_set_width(&ext->sbv, ext->sb_width); + lv_page_sb_refresh(page); + lv_obj_inv(page); } /** @@ -379,8 +386,9 @@ void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width) void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode) { lv_page_ext_t * ext = lv_obj_get_ext(page); - ext->sb_mode = sb_mode; - lv_obj_inv(page); + ext->sb_mode = sb_mode; + page->signal_f(page, LV_SIGNAL_STYLE_CHG, NULL); + lv_obj_inv(page); } /** @@ -391,8 +399,8 @@ void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode) void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style) { lv_page_ext_t * ext = lv_obj_get_ext(page); - ext->style_sb = style; - lv_obj_inv(page); + ext->style_sb = style; + lv_obj_inv(page); } /** @@ -579,7 +587,6 @@ static bool lv_page_design(lv_obj_t * page, const area_t * mask, lv_design_mode_ */ static void lv_page_sb_refresh(lv_obj_t * page) { -// return; /*Always let sb_width padding above,under, left and right to the scrollbars * else: * - horizontal and vertical scrollbars can overlap on the corners diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index c1ee020ca..ca89425a0 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -40,7 +40,7 @@ typedef enum /*Data of page*/ typedef struct { - lv_cont_ext_t bg_rect; /*Ext. of ancestor*/ + lv_cont_ext_t bg; /*Ext. of ancestor*/ /*New data for this type */ lv_obj_t * scrl; /*The scrollable object on the background*/ lv_action_t rel_action; /*Function to call when the page is released*/ @@ -89,6 +89,27 @@ void lv_page_set_rel_action(lv_obj_t * page, lv_action_t rel_action); */ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action); +/** + * Set the scroll bar width on a page + * @param page pointer to a page object + * @param sb_width the new scroll bar width in pixels + */ +void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width); + +/** + * Set the scroll bar mode on a page + * @param page pointer to a page object + * @param sb_mode the new mode from 'lv_page_sb_mode_t' enum + */ +void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode); + +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @param style pointer to a style for the scroll bars + */ +void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style); + /** * Glue the object to the page. After it the page can be moved (dragged) with this object too. * @param obj pointer to an object on a page @@ -96,9 +117,6 @@ void lv_page_set_pr_action(lv_obj_t * page, lv_action_t pr_action); */ void lv_page_glue_obj(lv_obj_t * obj, bool glue); -void lv_page_set_sb_width(lv_obj_t * page, cord_t sb_width); -void lv_page_set_sb_mode(lv_obj_t * page, lv_page_sb_mode_t sb_mode); -void lv_page_set_style_sb(lv_obj_t * page, lv_style_t * style); /** * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object @@ -110,10 +128,15 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en); /** * Get the scrollable object of a page- * @param page pointer to page object - * @return pointer to container which is the scrollable part of the page + * @return pointer to a container which is the scrollable part of the page */ lv_obj_t * lv_page_get_scrl(lv_obj_t * page); +/** + * Get the scroll bar width on a page + * @param page pointer to a page object + * @return the scroll bar width in pixels + */ cord_t lv_page_get_sb_width(lv_obj_t * page); /** @@ -123,6 +146,11 @@ cord_t lv_page_get_sb_width(lv_obj_t * page); */ lv_page_sb_mode_t lv_page_get_sb_mode(lv_obj_t * page); +/** + * Set a new style for the scroll bars object on the page + * @param page pointer to a page object + * @return pointer to a style for the scroll bars + */ lv_style_t * lv_page_get_style_sb(lv_obj_t * page); /********************** diff --git a/lv_objx/lv_slider.c b/lv_objx/lv_slider.c index fe81680bb..c631f1c64 100644 --- a/lv_objx/lv_slider.c +++ b/lv_objx/lv_slider.c @@ -63,7 +63,7 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) /*Initialize the allocated 'ext' */ ext->cb = NULL; ext->tmp_value = ext->bar.min_value; - ext->style_knob = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); + ext->style_knob = lv_style_get(LV_STYLE_PRETTY, NULL); /* Save the bar design function. * It will be used in the sllider design function*/ @@ -76,6 +76,7 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new slider slider*/ if(copy == NULL) { lv_obj_set_click(new_slider, true); + lv_slider_set_style_knob(new_slider, ext->style_knob); } /*Copy an existing slider*/ else { @@ -108,40 +109,46 @@ bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param) * make the object specific signal handling */ if(valid != false) { lv_slider_ext_t * ext = lv_obj_get_ext(slider); - // lv_bars_t * style = lv_obj_get_style(slider); point_t p; cord_t w = lv_obj_get_width(slider); cord_t h = lv_obj_get_height(slider); int16_t tmp; - switch(sign) { - case LV_SIGNAL_PRESSED: - ext->tmp_value = lv_bar_get_value(slider); - break; - case LV_SIGNAL_PRESSING: - lv_dispi_get_point(param, &p); - if(w > h) { - p.x -= slider->cords.x1 + h / 2; /*Modify the point to shift with half knob (important on the start and end)*/ - tmp = (int32_t) ((int32_t) p.x * (ext->bar.max_value - ext->bar.min_value + 1)) / (w - h); - } else { - p.y -= slider->cords.y1 + w / 2; /*Modify the point to shift with half knob (important on the start and end)*/ - tmp = (int32_t) ((int32_t) p.y * (ext->bar.max_value - ext->bar.min_value + 1)) / (h - w); - tmp = ext->bar.max_value - tmp; /*Invert he value: small value means higher y*/ - } + if(sign == LV_SIGNAL_PRESSED) { + ext->tmp_value = lv_bar_get_value(slider); + } + else if(sign == LV_SIGNAL_PRESSING) { + lv_dispi_get_point(param, &p); + if(w > h) { + p.x -= slider->cords.x1 + h / 2; /*Modify the point to shift with half knob (important on the start and end)*/ + tmp = (int32_t) ((int32_t) p.x * (ext->bar.max_value - ext->bar.min_value + 1)) / (w - h); + } else { + p.y -= slider->cords.y1 + w / 2; /*Modify the point to shift with half knob (important on the start and end)*/ + tmp = (int32_t) ((int32_t) p.y * (ext->bar.max_value - ext->bar.min_value + 1)) / (h - w); + tmp = ext->bar.max_value - tmp; /*Invert he value: small value means higher y*/ + } - lv_bar_set_value(slider, tmp); - break; - - case LV_SIGNAL_PRESS_LOST: - lv_bar_set_value(slider, ext->tmp_value); - break; - case LV_SIGNAL_RELEASED: - ext->tmp_value = lv_bar_get_value(slider); - lv_bar_set_value(slider, ext->tmp_value); - if(ext->cb != NULL) ext->cb(slider, param); - break; - default: - break; + lv_bar_set_value(slider, tmp); + } + else if (sign == LV_SIGNAL_PRESS_LOST) { + lv_bar_set_value(slider, ext->tmp_value); + } + else if (sign == LV_SIGNAL_RELEASED) { + ext->tmp_value = lv_bar_get_value(slider); + lv_bar_set_value(slider, ext->tmp_value); + if(ext->cb != NULL) ext->cb(slider, param); + } + else if(sign == LV_SIGNAL_CORD_CHG) { + /* The knob size depends on slider size. + * During the drawing method the ext. size is used by the knob so refresh the ext. size.*/ + if(lv_obj_get_width(slider) != area_get_width(param) || + lv_obj_get_height(slider) != area_get_height(param)) { + slider->signal_f(slider, LV_SIGNAL_REFR_EXT_SIZE, NULL); + } + } + else if(sign == LV_SIGNAL_REFR_EXT_SIZE) { + cord_t x = MATH_MIN(w, h); + if(slider->ext_size < x) slider->ext_size = x; } } @@ -168,10 +175,13 @@ void lv_slider_set_action(lv_obj_t * slider, lv_action_t cb) * @param slider pointer to slider object * @param style pointer the new knob style */ -void lv_slider_set_sytle_knob(lv_obj_t * slider, lv_style_t * style) +void lv_slider_set_style_knob(lv_obj_t * slider, lv_style_t * style) { lv_slider_ext_t * ext = lv_obj_get_ext(slider); ext->style_knob = style; + + slider->signal_f(slider, LV_SIGNAL_REFR_EXT_SIZE, NULL); + lv_obj_inv(slider); } @@ -195,7 +205,7 @@ lv_action_t lv_slider_get_action(lv_obj_t * slider) * @param slider pointer to slider object * @return pointer the new knob style */ -lv_style_t * lv_slider_get_sytle_knob(lv_obj_t * slider) +lv_style_t * lv_slider_get_style_knob(lv_obj_t * slider) { lv_slider_ext_t * ext = lv_obj_get_ext(slider); return ext->style_knob; @@ -220,50 +230,66 @@ static bool lv_slider_design(lv_obj_t * slider, const area_t * mask, lv_design_m { /*Return false if the object is not covers the mask_p area*/ if(mode == LV_DESIGN_COVER_CHK) { - return ancestor_design_f(slider, mask, mode); + return false; } /*Draw the object*/ else if(mode == LV_DESIGN_DRAW_MAIN) { + lv_style_t * style_slider = lv_obj_get_style(slider); + lv_style_t * style_knob = lv_slider_get_style_knob(slider); + lv_style_t * style_indic = lv_bar_get_style_indic(slider); - lv_slider_ext_t * ext = lv_obj_get_ext(slider); + area_t area_bar; + area_cpy(&area_bar, &slider->cords); + area_bar.x1 += style_knob->hpad; + area_bar.x2 -= style_knob->hpad; + area_bar.y1 += style_knob->vpad; + area_bar.y2 -= style_knob->vpad; + lv_draw_rect(&area_bar, mask, style_slider); - cord_t w = lv_obj_get_width(slider); - cord_t h = lv_obj_get_height(slider); + area_t area_indic; + area_cpy(&area_indic, &area_bar); + area_indic.x1 += style_indic->hpad; + area_indic.x2 -= style_indic->hpad; + area_indic.y1 += style_indic->vpad; + area_indic.y2 -= style_indic->vpad; - /*Modify the bar act_value to keep until the farer edge of knob*/ - int16_t tmp; - int16_t range = ext->bar.max_value - ext->bar.min_value; - if(w >= h) { - int16_t knob_value = (int32_t)((int32_t)h * range) / w; - tmp = (int32_t)((int32_t)(range - (ext->bar.act_value - ext->bar.min_value)) * knob_value) / range; - ext->bar.act_value +=tmp; + cord_t slider_w = area_get_width(&slider->cords); + cord_t slider_h = area_get_height(&slider->cords); + cord_t act_value = lv_bar_get_value(slider); + cord_t min_value = lv_bar_get_min_value(slider); + cord_t max_value = lv_bar_get_max_value(slider); + + if(slider_w >= slider_h) { + area_indic.x2 = (int32_t) ((int32_t)area_get_width(&area_indic) * act_value) / (max_value - min_value); + area_indic.x2 += area_indic.x1; } else { - int16_t knob_value = (int32_t)((int32_t)w * range) / h; - tmp = (int32_t)((int32_t)(range - (ext->bar.act_value - ext->bar.min_value)) * knob_value) / range; - ext->bar.act_value +=tmp; - + area_indic.y1 = (int32_t) ((int32_t)area_get_height(&area_indic) * act_value) / (max_value - min_value); + area_indic.y1 = area_indic.y2 - area_indic.y1; } - ancestor_design_f(slider, mask, mode); - ext->bar.act_value -=tmp; + /*Draw the indicator*/ + lv_draw_rect(&area_indic, mask, style_indic); + area_t knob_area; area_cpy(&knob_area, &slider->cords); - if(w >= h) { - knob_area.x2 = (int32_t) ((int32_t)(w - h) * ext->bar.act_value) / range; - knob_area.x2 += knob_area.x1; - knob_area.x2 += h; - knob_area.x1 = knob_area.x2 - h; - } else { + if(slider_w >= slider_h) { + knob_area.x1 = area_indic.x2 - slider_h / 2; + knob_area.x2 = knob_area.x1 + slider_h; + + knob_area.y1 = slider->cords.y1; + knob_area.y2 = slider->cords.y2; + } else { + knob_area.y1 = area_indic.y1 - slider_w / 2; + knob_area.y2 = knob_area.y1 + slider_w; + + knob_area.x1 = slider->cords.x1; + knob_area.x2 = slider->cords.x2; - knob_area.y1 = (int32_t) ((int32_t)(h - w) * ext->bar.act_value) / range; - knob_area.y1 = knob_area.y2 - knob_area.y1; - knob_area.y1 -= w; - knob_area.y2 = knob_area.y1 + w; } - lv_draw_rect(&knob_area, mask, ext->style_knob); + lv_draw_rect(&knob_area, mask, style_knob); } /*Post draw when the children are drawn*/ diff --git a/lv_objx/lv_slider.h b/lv_objx/lv_slider.h index 9edf352f0..7c0e61e69 100644 --- a/lv_objx/lv_slider.h +++ b/lv_objx/lv_slider.h @@ -25,11 +25,11 @@ /*Data of slider*/ typedef struct { - lv_bar_ext_t bar; /*Ext. of ancestor*/ + lv_bar_ext_t bar; /*Ext. of ancestor*/ /*New data for this type */ - lv_action_t cb; /*Function to call when a new value is set*/ - int16_t tmp_value; /*Store temporal value during press until release (Handled by the library)*/ - lv_style_t * style_knob; /*Styée of the knob*/ + lv_action_t cb; /*Function to call when a new value is set*/ + lv_style_t * style_knob; /*Style of the knob*/ + int16_t tmp_value; /*Store a temporal value during press until release (Handled by the library)*/ }lv_slider_ext_t; /*Built-in styles of slider*/ @@ -59,6 +59,33 @@ lv_obj_t * lv_slider_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_slider_signal(lv_obj_t * slider, lv_signal_t sign, void * param); +/** + * Set a function which will be called when a new value is set on the slider + * @param slider pointer to slider object + * @param cb a callback function + */ +void lv_slider_set_action(lv_obj_t * slider, lv_action_t cb); + +/** + * Set the style of knob on a slider + * @param slider pointer to slider object + * @param style pointer the new knob style + */ +void lv_slider_set_style_knob(lv_obj_t * slider, lv_style_t * style); + +/** + * Get the slider callback function + * @param slider pointer to slider object + * @return the callback function + */ +lv_action_t lv_slider_get_action(lv_obj_t * slider); + +/** + * Get the style of knob on a slider + * @param slider pointer to slider object + * @return pointer the new knob style + */ +lv_style_t * lv_slider_get_style_knob(lv_obj_t * slider); /********************** * MACROS diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index e8275e712..4f32419fb 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -11,7 +11,7 @@ #if USE_LV_TA != 0 #include "lv_ta.h" -#include "lvgl/lv_misc/anim.h" +#include "misc/gfx/anim.h" #include "../lv_draw/lv_draw.h" /********************* @@ -38,7 +38,7 @@ **********************/ static bool lv_ta_design(lv_obj_t * ta, const area_t * mask, lv_design_mode_t mode); static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_design_mode_t mode); -static void lv_ta_hide_cursor(lv_obj_t * ta, uint8_t hide); +static void lv_ta_hide_cursor_anim(lv_obj_t * ta, uint8_t hide); static void lv_ta_save_valid_cursor_x(lv_obj_t * ta); /********************** @@ -74,7 +74,8 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) /*Allocate the object type specific extended data*/ lv_ta_ext_t * ext = lv_obj_alloc_ext(new_ta, sizeof(lv_ta_ext_t)); dm_assert(ext); - ext->cur_hide = 0; + ext->cursor_show = 1; + ext->cursor_state = 0; ext->cursor_pos = 0; ext->cursor_valid_x = 0; ext->label = NULL; @@ -113,7 +114,7 @@ lv_obj_t * lv_ta_create(lv_obj_t * par, lv_obj_t * copy) /*Create a cursor blinker animation*/ anim_t a; a.var = new_ta; - a.fp = (anim_fp_t)lv_ta_hide_cursor; + a.fp = (anim_fp_t)lv_ta_hide_cursor_anim; a.time = LV_TA_CUR_BLINK_TIME; a.act_time = 0; a.end_cb = NULL; @@ -325,7 +326,7 @@ void lv_ta_set_cursor_pos(lv_obj_t * ta, int16_t pos) } /*Check the bottom*/ - cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; + cord_t font_h = font_get_height(font_p) >> FONT_ANTIALIAS; if(label_cords.y1 + cur_pos.y + font_h + style_scrl->vpad > ta_cords.y2) { lv_obj_set_y(label_par, -(cur_pos.y - lv_obj_get_height(ta) + font_h + 2 * style_scrl->vpad)); @@ -380,7 +381,7 @@ void lv_ta_cursor_down(lv_obj_t * ta) /*Increment the y with one line and keep the valid x*/ lv_style_t * label_style = lv_obj_get_style(ext->label); const font_t * font_p = label_style->font; - cord_t font_h = font_get_height(font_p) >> LV_FONT_ANTIALIAS; + cord_t font_h = font_get_height(font_p) >> FONT_ANTIALIAS; pos.y += font_h + label_style->line_space + 1; pos.x = ext->cursor_valid_x; @@ -407,7 +408,7 @@ void lv_ta_cursor_up(lv_obj_t * ta) /*Decrement the y with one line and keep the valid x*/ lv_style_t * label_style = lv_obj_get_style(ext->label); const font_t * font = label_style->font; - cord_t font_h = font_get_height(font) >> LV_FONT_ANTIALIAS; + cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; pos.y -= font_h + label_style->line_space - 1; pos.x = ext->cursor_valid_x; @@ -416,6 +417,17 @@ void lv_ta_cursor_up(lv_obj_t * ta) lv_ta_set_cursor_pos(ta, new_cur_pos); } +/** + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return show true: show the cursor and blink it, false: hide cursor + */ +void lv_ta_set_cursor_show(lv_obj_t * ta, bool show) +{ + lv_ta_ext_t * ext = lv_obj_get_ext(ta); + ext->cursor_show = show == false ? 0 : 1; +} + /*===================== * Getter functions *====================*/ @@ -442,6 +454,17 @@ uint16_t lv_ta_get_cursor_pos(lv_obj_t * ta) return ext->cursor_pos; } +/** + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return true: the cursor is drawn, false: the cursor is hidden + */ +bool lv_ta_get_cursor_show(lv_obj_t * ta) +{ + lv_ta_ext_t * ext = lv_obj_get_ext(ta); + return ext->cursor_show; +} + /********************** * STATIC FUNCTIONS **********************/ @@ -497,7 +520,7 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des lv_ta_ext_t * ta_ext = lv_obj_get_ext(ta); lv_style_t * ta_style = lv_obj_get_style(ta); - if(ta_ext->cursor_show != 0 && ta_ext->cur_hide == 0) { + if(ta_ext->cursor_show != 0 && ta_ext->cursor_state == 0) { uint16_t cur_pos = lv_ta_get_cursor_pos(ta); point_t letter_pos; lv_label_get_letter_pos(ta_ext->label, cur_pos, &letter_pos); @@ -507,7 +530,7 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1; cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + LV_DOWNSCALE ; - cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> LV_FONT_ANTIALIAS); + cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> FONT_ANTIALIAS); lv_style_t cur_rects; lv_style_get(LV_STYLE_PLAIN, &cur_rects); @@ -524,16 +547,16 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des /** - * Set the cursor visibility to make a blinking cursor + * Called to blink the cursor * @param ta pointer to a text area - * @param hide 1: hide the cursor, 0: draw it + * @param hide 1: hide the cursor, 0: show it */ -static void lv_ta_hide_cursor(lv_obj_t * ta, uint8_t hide) +static void lv_ta_hide_cursor_anim(lv_obj_t * ta, uint8_t hide) { lv_ta_ext_t * ta_ext = lv_obj_get_ext(ta); - if(hide != ta_ext->cur_hide) { - ta_ext->cur_hide = hide == 0 ? 0 : 1; - lv_obj_inv(ta); + if(hide != ta_ext->cursor_state) { + ta_ext->cursor_state = hide == 0 ? 0 : 1; + if(ta_ext->cursor_show != 0) lv_obj_inv(ta); } } diff --git a/lv_objx/lv_ta.h b/lv_objx/lv_ta.h index 1ddea97e4..86baf4264 100644 --- a/lv_objx/lv_ta.h +++ b/lv_objx/lv_ta.h @@ -39,11 +39,11 @@ typedef struct { lv_page_ext_t page; /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * label; /*Label of the text area*/ - cord_t cursor_valid_x; /*Used when stepping up/down in text area. Handled by the library*/ - uint16_t cursor_pos; /*The current cursor position (0: before 1. letter, 1: before 2. letter etc.)*/ - uint8_t cur_hide :1; /*Indicates that the cursor is visible now or not*/ - uint8_t cursor_show :1; /*Flag to indicate the cursor is now being shown or not (Handled by the library)*/ + lv_obj_t * label; /*Label of the text area*/ + cord_t cursor_valid_x; /*Used when stepping up/down in text area when stepping to a shorter line. (Handled by the library)*/ + uint16_t cursor_pos; /*The current cursor position (0: before 1. letter; 1: before 2. letter etc.)*/ + uint8_t cursor_show :1; /*Show or hide cursor */ + uint8_t cursor_state :1; /*Indicates that the cursor is visible now or not (Handled by the library)*/ }lv_ta_ext_t; /********************** @@ -127,6 +127,13 @@ void lv_ta_cursor_down(lv_obj_t * ta); */ void lv_ta_cursor_up(lv_obj_t * ta); +/** + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return show true: show the cursor and blink it, false: hide cursor + */ +void lv_ta_set_cursor_show(lv_obj_t * ta, bool show); + /** * Get the text of the i the text area * @param ta obj pointer to a text area object @@ -141,6 +148,14 @@ const char * lv_ta_get_txt(lv_obj_t * ta); */ uint16_t lv_ta_get_cursor_pos(lv_obj_t * ta); +/** + * Get the current cursor visibility. + * @param ta pointer to a text area object + * @return true: the cursor is drawn, false: the cursor is hidden + */ +bool lv_ta_get_cursor_show(lv_obj_t * ta); + + /********************** * MACROS diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 9bbf2f5c6..42855f8af 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -75,7 +75,7 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) ext->page = lv_page_create(new_win, NULL); lv_obj_set_protect(ext->page, LV_PROTECT_PARENT); - lv_obj_set_style(ext->page, lv_style_get(LV_STYLE_TRANSP, NULL)); + lv_obj_set_style(ext->page, lv_style_get(LV_STYLE_PLAIN, NULL)); lv_page_set_sb_mode(ext->page, LV_PAGE_SB_MODE_AUTO); lv_obj_t * scrl = lv_page_get_scrl(ext->page); @@ -271,19 +271,18 @@ void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size) /** * Set the style of the window control buttons in a given state * @param win pointer to a window object - * @param state style in this state (LV_BTN_STATE_PR or LV_BTN_STATE_REL) - * @param style pointer to style + * @param rel spointer to the style in released state + * @param pr pointer to the style in pressed state */ -void lv_win_set_style_cbtn(lv_obj_t * win, lv_btn_state_t state, lv_style_t * style) +void lv_win_set_style_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr) { lv_win_ext_t * ext = lv_obj_get_ext(win); - if(state == LV_BTN_STATE_REL) ext->style_cbtn_rel = style; - if(state == LV_BTN_STATE_PR) ext->style_cbtn_pr = style; + ext->style_cbtn_rel = rel; + ext->style_cbtn_pr = pr; lv_obj_t * cbtn; cbtn = lv_obj_get_child(ext->btnh, NULL); while(cbtn != NULL) { lv_btn_set_styles(cbtn, ext->style_cbtn_rel, ext->style_cbtn_pr, NULL, NULL, NULL); - cbtn = lv_obj_get_child(ext->btnh, cbtn); } diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index 04bb96766..710beea12 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -13,10 +13,6 @@ #if USE_LV_WIN != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_win: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - #if USE_LV_BTN == 0 #error "lv_win: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " #endif @@ -29,9 +25,6 @@ #error "lv_win: lv_img is required. Enable it in lv_conf.h (USE_LV_IMG 1) " #endif -#if USE_LV_PAGE == 0 -#error "lv_win: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " -#endif #if USE_LV_PAGE == 0 #error "lv_win: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " @@ -57,14 +50,14 @@ typedef struct { /*Ext. of ancestor*/ /*New data for this type */ - lv_obj_t * page; - lv_obj_t * header; /*Pointer to the header container of the window*/ - lv_obj_t * title; /*Pointer to the title label of the window*/ - lv_obj_t * btnh; /*Pointer to the control button holder container of the window*/ + lv_obj_t * page; /*Pointer to a page which holds the content*/ + lv_obj_t * header; /*Pointer to the header container of the window*/ + lv_obj_t * title; /*Pointer to the title label of the window*/ + lv_obj_t * btnh; /*Pointer to the control button holder container of the window*/ lv_style_t * style_header; /*Style of the header container*/ lv_style_t * style_cbtn_rel; /*Control button releases style*/ - lv_style_t * style_cbtn_pr; /*Control button pressed style*/ - cord_t cbtn_size; /*Size of the control buttons (square)*/ + lv_style_t * style_cbtn_pr; /*Control button pressed style*/ + cord_t cbtn_size; /*Size of the control buttons (square)*/ }lv_win_ext_t; /********************** @@ -101,9 +94,9 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ * A release action which can be assigned to a window control button to close it * @param btn pointer to the released button * @param dispi pointer to the caller display input - * @return always false because the button is deleted with the window + * @return always LV_ACTION_RES_INV because the button is deleted with the window */ -lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); +lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); /** * Set the title of a window @@ -112,6 +105,21 @@ lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi); */ void lv_win_set_title(lv_obj_t * win, const char * title); +/** + * Set the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size); + +/** + * Set the style of the window control buttons in a given state + * @param win pointer to a window object + * @param rel spointer to the style in released state + * @param pr pointer to the style in pressed state + */ +void lv_win_set_style_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr); + /** * Get the title of a window * @param win pointer to a window object @@ -119,10 +127,32 @@ void lv_win_set_title(lv_obj_t * win, const char * title); */ const char * lv_win_get_title(lv_obj_t * win); +/** + * Get the page of a window + * @param win pointer to a window object + * @return page pointer to the page object of the window + */ lv_obj_t * lv_win_get_page(lv_obj_t * win); +/** + * Get the s window header + * @param win pointer to a window object + * @return pointer to the window header object (lv_rect) + */ lv_obj_t * lv_win_get_header(lv_obj_t * win); +/** + * Get the control button size of a window + * @param win pointer to a window object + * @return control button size + */ +cord_t lv_win_get_cbtn_size(lv_obj_t * win); + +/** + * Get width of the content area (page scrollable) of the window + * @param win pointer to a window object + * @return the width of the contetn area + */ cord_t lv_win_get_width(lv_obj_t * win); /** From 373bf2de84b5fb84662477f9f9b488a1cd3eb942 Mon Sep 17 00:00:00 2001 From: Gabor Date: Fri, 21 Apr 2017 17:11:47 +0200 Subject: [PATCH 33/53] lv_lmeter: added --- lv_draw/lv_draw.c | 2 +- lv_obj/lv_refr.c | 2 +- lv_obj/lv_style.c | 26 ++--- lv_objx/lv_btnm.c | 1 + lv_objx/lv_gauge.c | 119 ++++++++------------ lv_objx/lv_gauge.h | 59 ++++------ lv_objx/lv_img.c | 13 +-- lv_objx/lv_img.h | 26 ++--- lv_objx/lv_label.c | 3 + lv_objx/lv_lmeter.c | 242 ++++++++++++++++++++++++++++++++++++++++ lv_objx/lv_lmeter.h | 89 +++++++++++++++ lv_objx/lv_objx_templ.c | 58 +--------- lv_objx/lv_objx_templ.h | 20 ---- lvgl.h | 1 + 14 files changed, 444 insertions(+), 217 deletions(-) create mode 100644 lv_objx/lv_lmeter.c create mode 100644 lv_objx/lv_lmeter.h diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index bcf566b07..99a86ce98 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -1049,7 +1049,7 @@ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, c { cord_t swidth = style->swidth; if(swidth == 0) return; - uint8_t res = LV_DOWNSCALE * 2; + uint8_t res = LV_DOWNSCALE * 1; if(swidth < res) return; area_t shadow_area; diff --git a/lv_obj/lv_refr.c b/lv_obj/lv_refr.c index 4729b6bbb..8eafb559f 100644 --- a/lv_obj/lv_refr.c +++ b/lv_obj/lv_refr.c @@ -406,7 +406,7 @@ static void lv_refr_obj(lv_obj_t * obj, const area_t * mask_ori_p) lv_style_t * style = lv_obj_get_style(obj); if(style->opa != OPA_TRANSP) { obj->design_f(obj, &obj_ext_mask, LV_DESIGN_DRAW_MAIN); - /* tick_wait_ms(100); */ /*DEBUG: Wait after every object draw to see the order of drawing*/ + //tick_wait_ms(100); /*DEBUG: Wait after every object draw to see the order of drawing*/ } /*Create a new 'obj_mask' without 'ext_size' because the children can't be visible there*/ diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index ec9f884f8..2326f3100 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -67,15 +67,15 @@ void lv_style_init (void) lv_style_set_radius(&lv_style_scr, 0); lv_style_set_bwidth(&lv_style_scr, 0); lv_style_set_swidth(&lv_style_scr, 0); - lv_style_set_vpad(&lv_style_scr, LV_DPI / 8); - lv_style_set_hpad(&lv_style_scr, LV_DPI / 8); - lv_style_set_opad(&lv_style_scr, LV_DPI / 8); + lv_style_set_vpad(&lv_style_scr, LV_DPI / 12); + lv_style_set_hpad(&lv_style_scr, LV_DPI / 12); + lv_style_set_opad(&lv_style_scr, LV_DPI / 12); lv_style_set_bopa(&lv_style_scr, OPA_COVER); lv_style_set_empty(&lv_style_scr, false); lv_style_set_font(&lv_style_scr, font_get(FONT_DEFAULT)); lv_style_set_letter_space(&lv_style_scr, 1 * LV_DOWNSCALE); - lv_style_set_line_space(&lv_style_scr, 2 * LV_DOWNSCALE); + lv_style_set_line_space(&lv_style_scr, 3 * LV_DOWNSCALE); lv_style_set_txt_align(&lv_style_scr, 0); lv_style_set_img_recolor(&lv_style_scr, OPA_TRANSP); @@ -98,14 +98,14 @@ void lv_style_init (void) lv_style_set_gcolor(&lv_style_pretty, COLOR_SILVER); lv_style_set_bcolor(&lv_style_pretty, COLOR_MAKE(0x40, 0x40, 0x40)); lv_style_set_radius(&lv_style_pretty, LV_DPI / 10); - lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 30 >= 1 ? LV_DPI / 30 : 1); + lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 40 >= 1 ? LV_DPI / 40 : 1); lv_style_set_bopa(&lv_style_pretty, OPA_50); /*Pretty color style*/ memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); lv_style_set_ccolor(&lv_style_pretty_color, COLOR_MAKE(0xe0, 0xe0, 0xe0)); + lv_style_set_mcolor(&lv_style_pretty_color, COLOR_MAKE(0x6b, 0x9a, 0xc7)); lv_style_set_gcolor(&lv_style_pretty_color, COLOR_MAKE(0x2b, 0x59, 0x8b)); - lv_style_set_mcolor(&lv_style_pretty_color, COLOR_MAKE(0x90, 0xb3, 0xd5)); lv_style_set_bcolor(&lv_style_pretty_color, COLOR_MAKE(0x15, 0x2c, 0x42)); lv_style_set_scolor(&lv_style_pretty_color, COLOR_MAKE(0x6a, 0x8f, 0xb4)); lv_style_set_swidth(&lv_style_pretty_color, 0); @@ -126,14 +126,14 @@ void lv_style_init (void) lv_style_set_gcolor(&lv_style_btn_rel, COLOR_MAKE(0x19, 0x3a, 0x5d)); lv_style_set_bcolor(&lv_style_btn_rel, COLOR_MAKE(0x0b, 0x19, 0x28)); lv_style_set_ccolor(&lv_style_btn_rel, COLOR_MAKE(0xff, 0xff, 0xff)); - lv_style_set_bwidth(&lv_style_btn_rel, LV_DPI / 30 >= 1 ? LV_DPI / 30 : 1); + lv_style_set_bwidth(&lv_style_btn_rel, LV_DPI / 40 >= 1 ? LV_DPI / 40 : 1); lv_style_set_radius(&lv_style_btn_rel, LV_DPI / 10); lv_style_set_bopa(&lv_style_btn_rel, OPA_70); lv_style_set_scolor(&lv_style_btn_rel, COLOR_GRAY); lv_style_set_swidth(&lv_style_btn_rel, 0); - lv_style_set_hpad(&lv_style_btn_rel, LV_DPI / 3); - lv_style_set_vpad(&lv_style_btn_rel, LV_DPI / 4); - lv_style_set_opad(&lv_style_btn_rel, LV_DPI / 6); + lv_style_set_hpad(&lv_style_btn_rel, LV_DPI / 4); + lv_style_set_vpad(&lv_style_btn_rel, LV_DPI / 6); + lv_style_set_opad(&lv_style_btn_rel, LV_DPI / 10); /*Button pressed style*/ memcpy(&lv_style_btn_pr, &lv_style_btn_rel, sizeof(lv_style_t)); @@ -143,21 +143,21 @@ void lv_style_init (void) /*Button toggle released style*/ memcpy(&lv_style_btn_trel, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_gcolor(&lv_style_btn_trel, COLOR_MAKE(0x37, 0x62, 0x90)); lv_style_set_mcolor(&lv_style_btn_trel, COLOR_MAKE(0x0a, 0x11, 0x22)); + lv_style_set_gcolor(&lv_style_btn_trel, COLOR_MAKE(0x37, 0x62, 0x90)); lv_style_set_bcolor(&lv_style_btn_trel, COLOR_MAKE(0x01, 0x07, 0x0d)); lv_style_set_ccolor(&lv_style_btn_trel, COLOR_MAKE(0xc8, 0xdd, 0xf4)); /*Button toggle pressed style*/ memcpy(&lv_style_btn_tpr, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_gcolor(&lv_style_btn_tpr, COLOR_MAKE(0x2b, 0x4c, 0x70)); lv_style_set_mcolor(&lv_style_btn_tpr, COLOR_MAKE(0x02, 0x14, 0x27)); + lv_style_set_gcolor(&lv_style_btn_tpr, COLOR_MAKE(0x2b, 0x4c, 0x70)); lv_style_set_ccolor(&lv_style_btn_tpr, COLOR_MAKE(0xa4, 0xb5, 0xc6)); /*Button inactive style*/ memcpy(&lv_style_btn_ina, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_gcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); lv_style_set_mcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); + lv_style_set_gcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); lv_style_set_bcolor(&lv_style_btn_ina, COLOR_MAKE(0x90, 0x90, 0x90)); lv_style_set_ccolor(&lv_style_btn_ina, COLOR_MAKE(0x70, 0x70, 0x70)); } diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index b2018a8f9..620e86a0e 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -469,6 +469,7 @@ static void lv_btnm_create_btns(lv_obj_t * btnm, const char ** map) if(ext->btn_areas != NULL) { dm_free(ext->btn_areas); + ext->btn_areas = NULL; } ext->btn_areas = dm_alloc(sizeof(area_t) * btn_cnt); diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index c05afbe6e..202bb8b8a 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -21,10 +21,7 @@ /********************* * DEFINES *********************/ -#define LV_GAUGE_DEF_WIDTH (3 * LV_DPI) -#define LV_GAUGE_DEF_HEIGHT (3 * LV_DPI) #define LV_GAUGE_DEF_NEEDLE_COLOR COLOR_RED -#define LV_GAUGE_DEF_ANGLE 220 /********************** * TYPEDEFS @@ -63,7 +60,7 @@ static lv_design_f_t ancestor_design_f = NULL; lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) { /*Create the ancestor gauge*/ - lv_obj_t * new_gauge = lv_cont_create(par, copy); + lv_obj_t * new_gauge = lv_lmeter_create(par, copy); dm_assert(new_gauge); /*Allocate the gauge type specific extended data*/ @@ -71,14 +68,10 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) dm_assert(ext); /*Initialize the allocated 'ext' */ - ext->min = 0; - ext->max = 100; ext->needle_num = 0; ext->values = NULL; - ext->needle_color = NULL; + ext->needle_colors = NULL; ext->low_critical = 0; - ext->scale_angle = LV_GAUGE_DEF_ANGLE; - ext->scale_label_num = 6; ext->style_critical = lv_style_get(LV_STYLE_PRETTY_COLOR, NULL); if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_gauge); @@ -89,17 +82,17 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new gauge gauge*/ if(copy == NULL) { + lv_lmeter_set_scale(new_gauge, 220, 6); lv_gauge_set_needle_num(new_gauge, 1, NULL); - lv_obj_set_size(new_gauge, LV_GAUGE_DEF_WIDTH, LV_GAUGE_DEF_HEIGHT); + lv_obj_set_size(new_gauge, 2 * LV_DPI, 2 * LV_DPI); lv_obj_set_style(new_gauge, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing gauge*/ else { lv_gauge_ext_t * copy_ext = lv_obj_get_ext(copy); - ext->min = copy_ext->min; - ext->max = copy_ext->max; ext->low_critical = copy_ext->low_critical; - lv_gauge_set_needle_num(new_gauge, copy_ext->needle_num, copy_ext->needle_color); + lv_gauge_set_style_critical(new_gauge, lv_gauge_get_style_critical(copy)); + lv_gauge_set_needle_num(new_gauge, copy_ext->needle_num, copy_ext->needle_colors); uint8_t i; for(i = 0; i < ext->needle_num; i++) { @@ -125,7 +118,7 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) bool valid; /* Include the ancient signal function */ - valid = lv_cont_signal(gauge, sign, param); + valid = lv_lmeter_signal(gauge, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ @@ -136,7 +129,7 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) ext->values = NULL; } else if(sign == LV_SIGNAL_REFR_EXT_SIZE) { - lv_style_t * style_crit = lv_gauge_get_style_crit(gauge); + lv_style_t * style_crit = lv_gauge_get_style_critical(gauge); if(style_crit->swidth > gauge->ext_size) gauge->ext_size = style_crit->swidth; } } @@ -157,36 +150,24 @@ bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param) void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num, color_t * colors) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - if(ext->values != NULL) dm_free(ext->values); + if(ext->values != NULL) { + dm_free(ext->values); + ext->values = NULL; + } ext->values = dm_realloc(ext->values, num * sizeof(int16_t)); + int16_t min = lv_bar_get_min_value(gauge); uint8_t n; for(n = ext->needle_num; n < num; n++) { - ext->values[n] = ext->min; + ext->values[n] = min; } ext->needle_num = num; - ext->needle_color = colors; + ext->needle_colors = colors; lv_obj_inv(gauge); } -/** - * Set the range of a gauge - * @param gauge pointer to gauge object - * @param min min value - * @param max max value - */ -void lv_gauge_set_range(lv_obj_t * gauge, int16_t min, int16_t max) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - - /*Be sure the smaller value is min and the greater is max*/ - ext->min = MATH_MIN(min, max); - ext->max = MATH_MAX(min, max); - - lv_obj_inv(gauge); -} /** * Set the value of a needle @@ -200,8 +181,11 @@ void lv_gauge_set_value(lv_obj_t * gauge, uint8_t needle, int16_t value) if(needle >= ext->needle_num) return; - if(value > ext->max) value = ext->max; - if(value < ext->min) value = ext->min; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); + + if(value > max) value = max; + else if(value < min) value = min; ext->values[needle] = value; @@ -222,21 +206,6 @@ void lv_gauge_set_low_critical(lv_obj_t * gauge, bool low) lv_obj_inv(gauge); } -/** - * Set the scale settings of a gauge - * @param gauge pointer to a gauge object - * @param angle angle of the scale (0..360) - * @param label_num number of labels on the scale (~5) - */ -void lv_gauge_set_scale(lv_obj_t * gauge, uint16_t angle, uint8_t label_num) -{ - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - ext->scale_angle = angle; - ext->scale_label_num = label_num; - - lv_obj_inv(gauge); -} - /** * Set the critical style of the gauge * @param gauge pointer to a gauge object @@ -274,8 +243,9 @@ uint8_t lv_gauge_get_needle_num(lv_obj_t * gauge) int16_t lv_gauge_get_value(lv_obj_t * gauge, uint8_t needle) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); + int16_t min = lv_bar_get_min_value(gauge); - if(needle >= ext->needle_num) return ext->min; + if(needle >= ext->needle_num) return min; return ext->values[needle]; } @@ -297,7 +267,7 @@ bool lv_gauge_get_low_critical(lv_obj_t * gauge) * @param gauge pointer to a gauge object * @return pointer to the critical style */ -lv_style_t * lv_gauge_get_style_crit(lv_obj_t * gauge) +lv_style_t * lv_gauge_get_style_critical(lv_obj_t * gauge) { lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); @@ -322,28 +292,31 @@ lv_style_t * lv_gauge_get_style_crit(lv_obj_t * gauge) */ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mode_t mode) { + /*Return false if the object is not covers the mask_p area*/ if(mode == LV_DESIGN_COVER_CHK) { - return ancestor_design_f(gauge, mask, mode); + return false; } /*Draw the object*/ else if(mode == LV_DESIGN_DRAW_MAIN) { lv_style_t * style_base = lv_obj_get_style(gauge); - lv_style_t * style_critical = lv_gauge_get_style_crit(gauge); + lv_style_t * style_critical = lv_gauge_get_style_critical(gauge); lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); /* Draw the background * Re-color the gauge according to the critical value*/ lv_style_t style_bg; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); - int16_t critical_val = ext->low_critical == 0 ? ext->min : ext->max; + int16_t critical_val = ext->low_critical == 0 ? min : max; uint8_t i; for(i = 0; i < ext->needle_num; i++) { critical_val = ext->low_critical == 0 ? MATH_MAX(critical_val, ext->values[i]) : MATH_MIN(critical_val, ext->values[i]); } - opa_t ratio = ((critical_val - ext->min) * OPA_COVER) / (ext->max - ext->min); + opa_t ratio = ((critical_val - min) * OPA_COVER) / (max - min); if(ext->low_critical != 0) ratio = OPA_COVER - ratio; @@ -356,9 +329,7 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod style_bg.scolor = color_mix(style_critical->scolor, style_base->scolor, ratio); style_bg.swidth = (cord_t)((cord_t)(style_critical->swidth + style_base->swidth) * ratio) >> 8; - gauge->style_p = &style_bg; - ancestor_design_f(gauge, mask, mode); - gauge->style_p = style_base; + lv_draw_rect(&gauge->cords, mask, &style_bg); lv_gauge_draw_scale(gauge, mask, &style_bg); @@ -379,19 +350,21 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod */ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_t * style) { - lv_gauge_ext_t * ext = lv_obj_get_ext(gauge); - char scale_txt[16]; cord_t r = lv_obj_get_width(gauge) / 2 - style->hpad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; - int16_t angle_ofs = 90 + (360 - ext->scale_angle) / 2; + int16_t scale_angle = lv_lmeter_get_scale_angle(gauge); + uint16_t scale_num = lv_lmeter_get_scale_num(gauge); + int16_t angle_ofs = 90 + (360 - scale_angle) / 2; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); uint8_t i; - for(i = 0; i < ext->scale_label_num; i++) { + for(i = 0; i < scale_num; i++) { /*Calculate the position a scale label*/ - int16_t angle = (i * ext->scale_angle) / (ext->scale_label_num - 1) + angle_ofs; + int16_t angle = (i * scale_angle) / (scale_num - 1) + angle_ofs; cord_t y = (int32_t)((int32_t)trigo_sin(angle) * r) / TRIGO_SIN_MAX; y += y_ofs; @@ -399,8 +372,8 @@ static void lv_gauge_draw_scale(lv_obj_t * gauge, const area_t * mask, lv_style_ cord_t x = (int32_t)((int32_t)trigo_sin(angle + 90) * r) / TRIGO_SIN_MAX; x += x_ofs; - int16_t scale_act = (int32_t)((int32_t)(ext->max - ext->min) * i) / (ext->scale_label_num - 1); - scale_act += ext->min; + int16_t scale_act = (int32_t)((int32_t)(max - min) * i) / (scale_num - 1); + scale_act += min; sprintf(scale_txt, "%d", scale_act); area_t label_cord; @@ -431,7 +404,10 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style cord_t r = lv_obj_get_width(gauge) / 2 - style->opad; cord_t x_ofs = lv_obj_get_width(gauge) / 2 + gauge->cords.x1; cord_t y_ofs = lv_obj_get_height(gauge) / 2 + gauge->cords.y1; - int16_t angle_ofs = 90 + (360 - ext->scale_angle) / 2; + uint16_t angle = lv_lmeter_get_scale_angle(gauge); + int16_t angle_ofs = 90 + (360 - angle) / 2; + int16_t min = lv_bar_get_min_value(gauge); + int16_t max = lv_bar_get_max_value(gauge); point_t p_mid; point_t p_end; uint8_t i; @@ -442,14 +418,13 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style p_mid.y = y_ofs; for(i = 0; i < ext->needle_num; i++) { /*Calculate the end point of a needle*/ - int16_t needle_angle = (ext->values[i] - ext->min) * ext->scale_angle / - (ext->max - ext->min) + angle_ofs; + int16_t needle_angle = (ext->values[i] - min) * angle / (max - min) + angle_ofs; p_end.y = (trigo_sin(needle_angle) * r) / TRIGO_SIN_MAX + y_ofs; p_end.x = (trigo_sin(needle_angle + 90) * r) / TRIGO_SIN_MAX + x_ofs; /*Draw the needle with the corresponding color*/ - if(ext->needle_color == NULL) style_needle.ccolor = LV_GAUGE_DEF_NEEDLE_COLOR; - else style_needle.ccolor = ext->needle_color[i]; + if(ext->needle_colors == NULL) style_needle.ccolor = LV_GAUGE_DEF_NEEDLE_COLOR; + else style_needle.ccolor = ext->needle_colors[i]; lv_draw_line(&p_mid, &p_end, mask, &style_needle); } diff --git a/lv_objx/lv_gauge.h b/lv_objx/lv_gauge.h index 17bb8e806..505ccfe04 100644 --- a/lv_objx/lv_gauge.h +++ b/lv_objx/lv_gauge.h @@ -32,7 +32,7 @@ #include "../lv_obj/lv_obj.h" -#include +#include "lv_lmeter.h" #include "lv_label.h" #include "lv_line.h" @@ -48,17 +48,13 @@ /*Data of gauge*/ typedef struct { - /*No inherited ext*/ /*Ext. of ancestor*/ + lv_lmeter_ext_t lmeter; /*Ext. of ancestor*/ /*New data for this type */ - int16_t min; /*Minimum value of the scale*/ - int16_t max; /*Maximum value of the scale*/ - int16_t * values; /*Array of the set values (for needles) */ - lv_style_t * style_critical;/*Fade to this style nearer to the critical value*/ - color_t * needle_color; /*A color of the needles (color_t my_colors[needle_num])*/ - uint16_t scale_angle; /*Angle of the scale in deg. (e.g. 220)*/ - uint8_t scale_label_num; /*Number of scale labels (~6)*/ - uint8_t needle_num; /*Number of needles*/ - uint8_t low_critical:1; /*0: the higher value is more critical, 1: the lower value is more critical*/ + int16_t * values; /*Array of the set values (for needles) */ + lv_style_t * style_critical; /*Fade to this style nearer to the critical value*/ + color_t * needle_colors; /*Color of the needles (color_t my_colors[needle_num])*/ + uint8_t needle_num; /*Number of needles*/ + uint8_t low_critical:1; /*0: the higher value is more critical, 1: the lower value is more critical*/ }lv_gauge_ext_t; /********************** @@ -83,20 +79,13 @@ lv_obj_t * lv_gauge_create(lv_obj_t * par, lv_obj_t * copy); bool lv_gauge_signal(lv_obj_t * gauge, lv_signal_t sign, void * param); /** - * Set the number of needles (should be <= LV_GAUGE_MAX_NEEDLE) + * Set the number of needles * @param gauge pointer to gauge object * @param num number of needles + * @param colors an array of colors for needles (with 'num' elements) */ void lv_gauge_set_needle_num(lv_obj_t * gauge, uint8_t num, color_t * colors); -/** - * Set the range of a gauge - * @param gauge pointer to gauge object - * @param min min value - * @param max max value - */ -void lv_gauge_set_range(lv_obj_t * gauge, int16_t min, int16_t max); - /** * Set the value of a needle * @param gauge pointer to gauge @@ -105,14 +94,6 @@ void lv_gauge_set_range(lv_obj_t * gauge, int16_t min, int16_t max); */ void lv_gauge_set_value(lv_obj_t * gauge, uint8_t needle, int16_t value); -/** - * Set text on a gauge - * @param gauge pinter to a gauge object - * @param txt a printf like format string - * with 1 place for a number (e.g. "Value: %d"); - */ -void lv_gauge_set_text(lv_obj_t * gauge, const char * txt); - /** * Set which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -120,7 +101,13 @@ void lv_gauge_set_text(lv_obj_t * gauge, const char * txt); */ void lv_gauge_set_low_critical(lv_obj_t * gauge, bool low); -void lv_gauge_vet_style_critical(lv_obj_t * gauge, lv_style_t * style); +/** + * Set the critical style of the gauge + * @param gauge pointer to a gauge object + * @param style pointer to the new critical style + */ +void lv_gauge_set_style_critical(lv_obj_t * gauge, lv_style_t * style); + /** * Get the number of needles on a gauge * @param gauge pointer to gauge @@ -136,13 +123,6 @@ uint8_t lv_gauge_get_needle_num(lv_obj_t * gauge); */ int16_t lv_gauge_get_value(lv_obj_t * gauge, uint8_t needle); -/** - * Get the text of a gauge - * @param gauge pointer to gauge - * @return the set text. (not with the current value) - */ -const char * lv_gauge_get_text(lv_obj_t * gauge); - /** * Get which value is more critical (lower or higher) * @param gauge pointer to a gauge object @@ -150,7 +130,12 @@ const char * lv_gauge_get_text(lv_obj_t * gauge); */ bool lv_gauge_get_low_critical(lv_obj_t * gauge); -lv_style_t * lv_gauge_get_style_crit(lv_obj_t * gauge); +/** + * Get the critical style of the gauge + * @param gauge pointer to a gauge object + * @return pointer to the critical style + */ +lv_style_t * lv_gauge_get_style_critical(lv_obj_t * gauge); /********************** * MACROS diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index 3f85f66b7..b7a1cf52a 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -170,6 +170,7 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) header.w = lv_obj_get_width(img); header.h = lv_obj_get_height(img); header.transp = 0; + header.cd = 0; } fs_close(&file); @@ -193,7 +194,7 @@ void lv_img_set_file(lv_obj_t * img, const char * fn) txt_get_size(&size, fn, style->font, style->letter_space, style->line_space, CORD_MAX, TXT_FLAG_NONE); ext->w = size.x; ext->h = size.y; - ext->transp = 0; + ext->transp = 1; /*Symbols always have transparent parts*/ #else /*Never goes here, just to be sure handle this */ ext->w = lv_obj_get_width(img); @@ -299,12 +300,10 @@ static bool lv_img_design(lv_obj_t * img, const area_t * mask, lv_design_mode_t lv_img_ext_t * ext = lv_obj_get_ext(img); if(mode == LV_DESIGN_COVER_CHK) { - if(ext->transp == 0) { - bool cover; - cover = area_is_in(mask, &img->cords); - return cover; - } - else return false; + bool cover = false; + if(ext->transp == 0) cover = area_is_in(mask, &img->cords); + return cover; + } else if(mode == LV_DESIGN_DRAW_MAIN) { if(ext->h == 0 || ext->w == 0) return true; area_t cords; diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index 3d1ddf67e..4bf3e55ea 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -41,33 +41,33 @@ typedef struct { /*No inherited ext. because inherited from the base object*/ /*Ext. of ancestor*/ /*New data for this type */ - char* fn; /*Image file name. E.g. "U:/my_image"*/ - cord_t w; /*Width of the image (doubled when upscaled)*/ - cord_t h; /*Height of the image (doubled when upscaled)*/ - uint8_t auto_size :1; /*1: automatically set the object size to the image size*/ - uint8_t upscale :1; /*1: upscale to double size with antialaissing*/ - uint8_t transp :1; /*Transp. bit in the image header (Handled by the library)*/ + char* fn; /*Image file name. E.g. "U:/my_image"*/ + cord_t w; /*Width of the image (doubled when upscaled) (Handled by the library)*/ + cord_t h; /*Height of the image (doubled when upscaled) (Handled by the library)*/ + uint8_t auto_size :1; /*1: automatically set the object size to the image size*/ + uint8_t upscale :1; /*1: upscale to double size with antialaissing*/ + uint8_t transp :1; /*Transp. bit in the image header (Handled by the library)*/ }lv_img_ext_t; /* Image header it is compatible with * the result image converter utility*/ typedef struct { - uint16_t w; /*Width of the image map*/ - uint16_t h; /*Height of the image map*/ - uint16_t cd; /*Color depth (8/16 or 24)*/ - uint16_t transp :1; /*1: Do not draw LV_IMG_TRANSP_COLOR pixels*/ + uint32_t w:12; /*Width of the image map*/ + uint32_t h:12; /*Height of the image map*/ + uint32_t transp:1; /*1: The image contains transparent pixels with LV_COLOR_TRANSP color*/ + uint32_t cd:3; /*Color depth (0: reserved, 1: 8 bit, 2: 16 bit or 3: 24 bit, 4-7: reserved)*/ + uint32_t res :4; /*Reserved*/ }lv_img_raw_header_t; /********************** * GLOBAL PROTOTYPES **********************/ - /** * Create an image objects * @param par pointer to an object, it will be the parent of the new button - * @param copy pointer to a rectangle object, if not NULL then the new object will be copied from it + * @param copy pointer to a image object, if not NULL then the new object will be copied from it * @return pointer to the created image */ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy); @@ -105,6 +105,7 @@ void lv_img_set_auto_size(lv_obj_t * img, bool en); /** * Enable the upscaling with LV_DOWNSCALE. + * If enabled the object size will be same as the picture size. * @param img pointer to an image * @param en true: upscale enable, false: upscale disable */ @@ -117,7 +118,6 @@ void lv_img_set_upscale(lv_obj_t * img, bool en); */ bool lv_img_get_auto_size(lv_obj_t * img); - /** * Get the upscale enable attribute * @param img pointer to an image diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index 9b7fdeded..bcb732ac8 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -171,6 +171,7 @@ void lv_label_set_text(lv_obj_t * label, const char * text) uint32_t len = strlen(text) + 1; if(ext->txt != NULL && ext->static_txt == 0) { dm_free(ext->txt); + ext->txt = NULL; } ext->txt = dm_alloc(len); strcpy(ext->txt, text); @@ -200,6 +201,7 @@ void lv_label_set_text_array(lv_obj_t * label, const char * array, uint16_t size /*Allocate space for the new text*/ if(ext->txt != NULL && ext->static_txt == 0) { dm_free(ext->txt); + ext->txt = NULL; } ext->txt = dm_alloc(size + 1); memcpy(ext->txt, array, size); @@ -220,6 +222,7 @@ void lv_label_set_text_static(lv_obj_t * label, const char * text) lv_label_ext_t * ext = lv_obj_get_ext(label); if(ext->static_txt == 0 && ext->txt != NULL) { dm_free(ext->txt); + ext->txt = NULL; } if(text != NULL) { diff --git a/lv_objx/lv_lmeter.c b/lv_objx/lv_lmeter.c new file mode 100644 index 000000000..7dd3b5435 --- /dev/null +++ b/lv_objx/lv_lmeter.c @@ -0,0 +1,242 @@ +/** + * @file lv_lmeter.c + * + */ + +/*Search an replace: line meter -> object normal name with lower case (e.g. button, label etc.) + * lmeter -> object short name with lower case(e.g. btn, label etc) + * LMETER -> object short name with upper case (e.g. BTN, LABEL etc.) + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_LMETER != 0 + +#include "lv_lmeter.h" +#include "misc/math/trigo.h" +#include "../lv_draw/lv_draw.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static bool lv_lmeter_design(lv_obj_t * lmeter, const area_t * mask, lv_design_mode_t mode); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/*----------------- + * Create function + *-----------------*/ + +/** + * Create a line meter objects + * @param par pointer to an object, it will be the parent of the new line meter + * @param copy pointer to a line meter object, if not NULL then the new object will be copied from it + * @return pointer to the created line meter + */ +lv_obj_t * lv_lmeter_create(lv_obj_t * par, lv_obj_t * copy) +{ + /*Create the ancestor of line meter*/ + lv_obj_t * new_lmeter = lv_bar_create(par, copy); + dm_assert(new_lmeter); + + /*Allocate the line meter type specific extended data*/ + lv_lmeter_ext_t * ext = lv_obj_alloc_ext(new_lmeter, sizeof(lv_lmeter_ext_t)); + dm_assert(ext); + + /*Initialize the allocated 'ext' */ + ext->scale_num = 31; /*Odd scale number looks better*/ + ext->scale_angle = 240; /*(scale_num - 1) * N looks better */ + + /*The signal and design functions are not copied so set them here*/ + lv_obj_set_signal_f(new_lmeter, lv_lmeter_signal); + lv_obj_set_design_f(new_lmeter, lv_lmeter_design); + + /*Init the new line meter line meter*/ + if(copy == NULL) { + lv_obj_set_size(new_lmeter, 1 * LV_DPI, 1 * LV_DPI); + lv_obj_set_style(new_lmeter, lv_style_get(LV_STYLE_PRETTY_COLOR, NULL)); + } + /*Copy an existing line meter*/ + else { + lv_lmeter_ext_t * copy_ext = lv_obj_get_ext(copy); + ext->scale_angle = copy_ext->scale_angle; + ext->scale_num = copy_ext->scale_num; + + + /*Refresh the style with new signal function*/ + lv_obj_refr_style(new_lmeter); + } + + return new_lmeter; +} + +/** + * Signal function of the line meter + * @param lmeter pointer to a line meter object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_lmeter_signal(lv_obj_t * lmeter, lv_signal_t sign, void * param) +{ + bool valid; + + /* Include the ancient signal function */ + valid = lv_bar_signal(lmeter, sign, param); + + /* The object can be deleted so check its validity and then + * make the object specific signal handling */ + if(valid != false) { + if(sign == LV_SIGNAL_CLEANUP) { + /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ + } + } + + return valid; +} + +/*===================== + * Setter functions + *====================*/ + +/** + * Set the scale settings of a line meter + * @param lmeter pointer to a line meter object + * @param angle angle of the scale (0..360) + * @param num number of scale units + */ +void lv_lmeter_set_scale(lv_obj_t * lmeter, uint16_t angle, uint8_t num) +{ + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + ext->scale_angle = angle; + ext->scale_num = num; + + lv_obj_inv(lmeter); +} + + +/*===================== + * Getter functions + *====================*/ + +/** + * Get the scale number of a line meter + * @param lmeter pointer to a line meter object + * @return number of the scale units + */ +uint8_t lv_lmeter_get_scale_num(lv_obj_t * lmeter) +{ + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + return ext->scale_num ; +} + +/** + * Get the scale angle of a line meter + * @param lmeter pointer to a line meter object + * @return angle of the scale + */ +uint16_t lv_lmeter_get_scale_angle(lv_obj_t * lmeter) +{ + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + return ext->scale_angle; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Handle the drawing related tasks of the line meters + * @param lmeter pointer to an object + * @param mask the object will be drawn only in this area + * @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area + * (return 'true' if yes) + * LV_DESIGN_DRAW: draw the object (always return 'true') + * LV_DESIGN_DRAW_POST: drawing after every children are drawn + * @param return true/false, depends on 'mode' + */ +static bool lv_lmeter_design(lv_obj_t * lmeter, const area_t * mask, lv_design_mode_t mode) +{ + /*Return false if the object is not covers the mask_p area*/ + if(mode == LV_DESIGN_COVER_CHK) { + return false; + } + /*Draw the object*/ + else if(mode == LV_DESIGN_DRAW_MAIN) { + lv_lmeter_ext_t * ext = lv_obj_get_ext(lmeter); + lv_style_t * style = lv_obj_get_style(lmeter); + + lv_style_t style_tmp; + memcpy(&style_tmp, style, sizeof(lv_style_t)); + + cord_t r_out = lv_obj_get_width(lmeter) / 2; + cord_t r_in =r_out - style->hpad; + cord_t x_ofs = lv_obj_get_width(lmeter) / 2 + lmeter->cords.x1; + cord_t y_ofs = lv_obj_get_height(lmeter) / 2 + lmeter->cords.y1; + int16_t angle_ofs = 90 + (360 - ext->scale_angle) / 2; + int16_t min = lv_bar_get_min_value(lmeter); + int16_t max = lv_bar_get_max_value(lmeter); + int16_t level = (int32_t)((int32_t)(lv_bar_get_value(lmeter) - min) * ext->scale_num) / (max - min); + uint8_t i; + + style_tmp.ccolor = style->mcolor; + + for(i = 0; i < ext->scale_num; i++) { + /*Calculate the position a scale label*/ + int16_t angle = (i * ext->scale_angle) / (ext->scale_num - 1) + angle_ofs; + + cord_t y_out = (int32_t)((int32_t)trigo_sin(angle) * r_out) / TRIGO_SIN_MAX; + cord_t x_out = (int32_t)((int32_t)trigo_sin(angle + 90) * r_out) / TRIGO_SIN_MAX; + cord_t y_in = (int32_t)((int32_t)trigo_sin(angle) * r_in) / TRIGO_SIN_MAX; + cord_t x_in = (int32_t)((int32_t)trigo_sin(angle + 90) * r_in) / TRIGO_SIN_MAX; + + point_t p1; + point_t p2; + + p2.x = x_in + x_ofs; + p2.y = y_in + y_ofs; + + p1.x = x_out+ x_ofs; + p1.y = y_out + y_ofs; + + if(i > level) style_tmp.ccolor = style->ccolor; + else { + style_tmp.ccolor=color_mix(style->gcolor, style->mcolor, (255 * i) / ext->scale_num); + } + + lv_draw_line(&p1, &p2, mask, &style_tmp); + } + + } + /*Post draw when the children are drawn*/ + else if(mode == LV_DESIGN_DRAW_POST) { + + } + + return true; +} + + +#endif diff --git a/lv_objx/lv_lmeter.h b/lv_objx/lv_lmeter.h new file mode 100644 index 000000000..52669b062 --- /dev/null +++ b/lv_objx/lv_lmeter.h @@ -0,0 +1,89 @@ +/** + * @file lv_lmeter.h + * + */ + + +/*Search an replace: line meter -> object normal name with lower case (e.g. button, label etc.) + * lmeter -> object short name with lower case(e.g. btn, label etc) + * LMETER -> object short name with upper case (e.g. BTN, LABEL etc.) + * + */ + +#ifndef LV_LMETER_H +#define LV_LMETER_H + +/********************* + * INCLUDES + *********************/ +#include "lv_conf.h" +#if USE_LV_LMETER != 0 + +#include "../lv_obj/lv_obj.h" +#include "lv_bar.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/*Data of line meter*/ +typedef struct +{ + lv_bar_ext_t bar; /*Ext. of ancestor*/ + /*New data for this type */ + uint16_t scale_angle; /*Angle of the scale in deg. (0..360)*/ + uint8_t scale_num; /*Number of scale units */ +}lv_lmeter_ext_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a line meter objects + * @param par pointer to an object, it will be the parent of the new line meter + * @param copy pointer to a line meter object, if not NULL then the new object will be copied from it + * @return pointer to the created line meter + */ +lv_obj_t * lv_lmeter_create(lv_obj_t * par, lv_obj_t * copy); + +/** + * Signal function of the line meter + * @param lmeter pointer to a line meter object + * @param sign a signal type from lv_signal_t enum + * @param param pointer to a signal specific variable + * @return true: the object is still valid (not deleted), false: the object become invalid + */ +bool lv_lmeter_signal(lv_obj_t * lmeter, lv_signal_t sign, void * param); + +/** + * Set the scale settings of a line meter + * @param lmeter pointer to a line meter object + * @param angle angle of the scale (0..360) + * @param num number of scale units + */ +void lv_lmeter_set_scale(lv_obj_t * lmeter, uint16_t angle, uint8_t num); + +/** + * Get the scale number of a line meter + * @param lmeter pointer to a line meter object + * @return number of the scale units + */ +uint8_t lv_lmeter_get_scale_num(lv_obj_t * lmeter); + +/** + * Get the scale angle of a line meter + * @param lmeter pointer to a line meter object + * @return angle of the scale + */ +uint16_t lv_lmeter_get_scale_angle(lv_obj_t * lmeter); +/********************** + * MACROS + **********************/ + +#endif + +#endif diff --git a/lv_objx/lv_objx_templ.c b/lv_objx/lv_objx_templ.c index fc83e8615..3ee6b7287 100644 --- a/lv_objx/lv_objx_templ.c +++ b/lv_objx/lv_objx_templ.c @@ -29,12 +29,10 @@ * STATIC PROTOTYPES **********************/ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mode_t mode); -static void lv_templs_init(void); /********************** * STATIC VARIABLES **********************/ -static lv_templs_t lv_templs_def; /*Default template style*/ /********************** * MACROS @@ -56,7 +54,7 @@ static lv_templs_t lv_templs_def; /*Default template style*/ */ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy) { - /*Create the ancestor template*/ + /*Create the ancestor of template*/ /*TODO modify it to the ancestor create function */ lv_obj_t * new_templ = lv_ANCESTOR_create(par, copy); dm_assert(new_templ); @@ -66,7 +64,7 @@ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy) dm_assert(ext); /*Initialize the allocated 'ext' */ - + ext->xyz = 0; /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_f(new_templ, lv_templ_signal); @@ -74,7 +72,7 @@ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new template template*/ if(copy == NULL) { - lv_obj_set_style(new_templ, lv_templs_get(LV_TEMPLS_DEF, NULL)); + lv_obj_set_style(new_templ, lv_style_get(LV_STYLE_PRETTY, NULL)); } /*Copy an existing template*/ else { @@ -105,12 +103,8 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param) /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { - switch(sign) { - case LV_SIGNAL_CLEANUP: - /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ - break; - default: - break; + if(sign == LV_SIGNAL_CLEANUP) { + /*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/ } } @@ -135,40 +129,6 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param) */ -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_templs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_templs_t style - */ -lv_templs_t * lv_templs_get(lv_templs_builtin_t style, lv_templs_t * copy) -{ - static bool style_inited = false; - - /*Make the style initialization if it is not done yet*/ - if(style_inited == false) { - lv_templs_init(); - style_inited = true; - } - - lv_templs_t *style_p; - - switch(style) { - case LV_TEMPLS_DEF: - style_p = &lv_templs_def; - break; - default: - style_p = &lv_templs_def; - } - - if(copy != NULL) { - if(style_p != NULL) memcpy(copy, style_p, sizeof(lv_templs_t)); - else memcpy(copy, &lv_templs_def, sizeof(lv_templs_t)); - } - - return style_p; -} - /********************** * STATIC FUNCTIONS **********************/ @@ -203,12 +163,4 @@ static bool lv_templ_design(lv_obj_t * templ, const area_t * mask, lv_design_mod } -/** - * Initialize the built-in template styles - */ -static void lv_templs_init(void) -{ - /*Default style*/ -} - #endif diff --git a/lv_objx/lv_objx_templ.h b/lv_objx/lv_objx_templ.h index 039c85f9d..6998a6484 100644 --- a/lv_objx/lv_objx_templ.h +++ b/lv_objx/lv_objx_templ.h @@ -35,19 +35,6 @@ typedef struct /*New data for this type */ }lv_templ_ext_t; -/*Style of template*/ -typedef struct -{ - /*Style of ancestor*/ - /*New style element for this type */ -}lv_templs_t; - -/*Built-in styles of template*/ -typedef enum -{ - LV_TEMPLS_DEF, -}lv_templs_builtin_t; - /********************** * GLOBAL PROTOTYPES **********************/ @@ -69,13 +56,6 @@ lv_obj_t * lv_templ_create(lv_obj_t * par, lv_obj_t * copy); */ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param); -/** - * Return with a pointer to a built-in style and/or copy it to a variable - * @param style a style name from lv_templs_builtin_t enum - * @param copy copy the style to this variable. (NULL if unused) - * @return pointer to an lv_templs_t style - */ -lv_templs_t * lv_templs_get(lv_templs_builtin_t style, lv_templs_t * copy); /********************** * MACROS diff --git a/lvgl.h b/lvgl.h index a047cf558..5e85b1f42 100644 --- a/lvgl.h +++ b/lvgl.h @@ -47,6 +47,7 @@ #include "lv_objx/lv_win.h" #include "lv_objx/lv_mbox.h" #include "lv_objx/lv_gauge.h" +#include "lv_objx/lv_lmeter.h" #include "lv_app/lv_app.h" From 462244684e913fa27763953eb9c35e27e3f500da Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Sun, 23 Apr 2017 21:28:24 +0200 Subject: [PATCH 34/53] lv_draw: new shadow drawing algorithm (filter based) introduced --- lv_draw/lv_draw.c | 208 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 204 insertions(+), 4 deletions(-) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 99a86ce98..b135a328b 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -48,6 +48,8 @@ static void lv_draw_cont_main_corner(const area_t * cords_p, const area_t * mask static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map); + static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h); #endif /*USE_LV_RECT != 0*/ @@ -89,6 +91,10 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_ { if(area_get_height(cords_p) < 1 || area_get_width(cords_p) < 1) return; + if(style_p->swidth != 0) { + lv_draw_cont_shadow(cords_p, mask_p, style_p); + } + if(style_p->empty == 0){ lv_draw_cont_main_mid(cords_p, mask_p, style_p); @@ -105,9 +111,6 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_ } } - if(style_p->swidth != 0) { - lv_draw_cont_shadow(cords_p, mask_p, style_p); - } } #endif /*USE_LV_RECT != 0*/ @@ -1039,6 +1042,7 @@ static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * ma } } +#define S_OLD 0 /** * Draw a shadow @@ -1047,6 +1051,147 @@ static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * ma */ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { +#if S_OLD == 0 + cord_t radius = style->radius; + + // if(mask_p->y1 > cords_p->y1 + radius && mask_p->y2 < cords_p->y2 - radius) return; + // if(mask_p->x1 > cords_p->x1 + radius && mask_p->x2 < cords_p->x2 - radius) return; + + cord_t cruve_x[LV_VER_RES] = {CORD_MIN}; + memset(cruve_x, 0, sizeof(cruve_x)); + point_t circ; + cord_t circ_tmp; + circ_init(&circ, &circ_tmp, radius); + while(circ_cont(&circ)) { + cruve_x[CIRC_OCT1_Y(circ)] = CIRC_OCT1_X(circ); + cruve_x[CIRC_OCT2_Y(circ)] = CIRC_OCT2_X(circ); + circ_next(&circ, &circ_tmp); + } + int16_t row; + + opa_t opa_h_result[LV_HOR_RES]; + int16_t filter_size = 2 * style->swidth + 1; + + for(row = 0; row < filter_size; row++) { + opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * OPA_COVER) / (filter_size); + } + + for(; row < LV_HOR_RES; row++) { + opa_h_result[row] = OPA_COVER; + } + + uint16_t p; + area_t sarea_rt; + area_t sarea_rb; + area_t sarea_lt; + area_t sarea_lb; + point_t ofs_rb; + point_t ofs_rt; + point_t ofs_lb; + point_t ofs_lt; + opa_t opa_v_result[LV_VER_RES]; + + ofs_rb.x = cords_p->x2 - radius; + ofs_rb.y = cords_p->y2 - radius; + + ofs_rt.x = cords_p->x2 - radius; + ofs_rt.y = cords_p->y1 + radius; + + ofs_lb.x = cords_p->x1 + radius; + ofs_lb.y = cords_p->y2 - radius; + + ofs_lt.x = cords_p->x1 + radius; + ofs_lt.y = cords_p->y1 + radius; + for(row = 0; row < radius + style->swidth; row++) { + for(p = 0; p < radius + style->swidth; p++) { + int16_t v; + uint32_t opa_tmp = 0; + int16_t row_v; + bool swidth_out = false; + for(v = -style->swidth; v < style->swidth; v++) { + row_v = row + v; + if(row_v < 0) row_v = 0; /*Rows above the corner*/ + + /*Rows below the bottom are empty so they won't modify the filter*/ + if(row_v > radius) { + break; + } + else + { + int16_t p_tmp = p - (cruve_x[row_v] - cruve_x[row]); + if(p_tmp < -style->swidth) { /*Cols before the filtered shadow (still not blurred)*/ + opa_tmp += OPA_COVER; + } + /*Cols after the filtered shadow (already no effect) */ + else if (p_tmp > style->swidth) { + /* If on the current point the filter top point is already out of swidth then + * the remaining part will not do not anything on this point*/ + if(v == -style->swidth) { /*Is the first point?*/ + swidth_out = true; + } + break; + } else { + opa_tmp += opa_h_result[p_tmp + style->swidth]; + } + } + } + if(swidth_out == false) { + opa_tmp = opa_tmp / (filter_size); + opa_v_result[p] = opa_tmp; + } + else { + break; + } + } + + sarea_rt.x1 = cruve_x[row] + ofs_rt.x; + sarea_rt.y1 = ofs_rt.y - row; + sarea_rt.x2 = sarea_rt.x1; + sarea_rt.y2 = sarea_rt.y1; + + sarea_rb.x1 = cruve_x[row] + ofs_rb.x; + sarea_rb.y1 = ofs_rb.y + row; + sarea_rb.x2 = sarea_rt.x1; + sarea_rb.y2 = sarea_rb.y1; + + sarea_lt.x1 = ofs_lt.x - cruve_x[row]; + sarea_lt.y1 = ofs_lt.y - row; + sarea_lt.x2 = sarea_lt.x1; + sarea_lt.y2 = sarea_lt.y1; + + sarea_lb.x1 = ofs_lb.x - cruve_x[row]; + sarea_lb.y1 = ofs_lb.y + row; + sarea_lb.x2 = sarea_lb.x1; + sarea_lb.y2 = sarea_lb.y1; + + uint16_t d; + for(d= 0; d < p; d++) { + fill_fp(&sarea_rb, mask_p, style->scolor, opa_v_result[d]); + sarea_rb.x1++; + sarea_rb.x2++; + + fill_fp(&sarea_rt, mask_p, style->scolor, opa_v_result[d]); + sarea_rt.x1++; + sarea_rt.x2++; + + fill_fp(&sarea_lb, mask_p, style->scolor, opa_v_result[d]); + sarea_lb.x1--; + sarea_lb.x2--; + + fill_fp(&sarea_lt, mask_p, style->scolor, opa_v_result[d]); + sarea_lt.x1--; + sarea_lt.x2--; + } + + /*When the first row is known draw the straight pars with same opa. map*/ + if(row == 0) { + lv_draw_cont_shadow_full_straight(cords_p, mask_p, style, opa_v_result); + } + } + + +#else + cord_t swidth = style->swidth; if(swidth == 0) return; uint8_t res = LV_DOWNSCALE * 1; @@ -1074,9 +1219,14 @@ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, c shadow_area.y2 += swidth - 1; cord_t i; - shadow_style.opa = style->opa / (swidth / res); + shadow_style.bopa = style->opa / (swidth / res); + + static color_t x; + x.full = 0x1C224; for(i = 1; i < swidth; i += res) { + x.full += 0xFCA34; + // shadow_style.bcolor.full = x.full; lv_draw_cont_border_straight(&shadow_area, mask_p, &shadow_style); lv_draw_cont_border_corner(&shadow_area, mask_p, &shadow_style); shadow_style.radius -= res; @@ -1086,9 +1236,59 @@ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, c shadow_area.x2 -= res; shadow_area.y2 -= res; } + +#endif } +static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map) +{ + cord_t radius = style->radius; + + area_t sider_area; + sider_area.x1 = cords_p->x2; + sider_area.y1 = cords_p->y1 + radius + 1; + sider_area.x2 = sider_area.x1; + sider_area.y2 = cords_p->y2 - radius - 1; + + area_t sidel_area; + sidel_area.x1 = cords_p->x1; + sidel_area.y1 = cords_p->y1 + radius + 1; + sidel_area.x2 = sidel_area.x1; + sidel_area.y2 = cords_p->y2 - radius - 1; + + area_t sidet_area; + sidet_area.x1 = cords_p->x1 + radius + 1; + sidet_area.y1 = cords_p->y1; + sidet_area.x2 = cords_p->x2 - radius - 1; + sidet_area.y2 = sidet_area.y1; + + area_t sideb_area; + sideb_area.x1 = cords_p->x1 + radius + 1; + sideb_area.y1 = cords_p->y2; + sideb_area.x2 = cords_p->x2 - radius - 1; + sideb_area.y2 = sideb_area.y1; + + int16_t d; + for(d = 0; d < style->swidth; d++) { + fill_fp(&sider_area, mask_p, style->scolor, map[d]); + sider_area.x1++; + sider_area.x2++; + + fill_fp(&sidel_area, mask_p, style->scolor, map[d]); + sidel_area.x1--; + sidel_area.x2--; + + fill_fp(&sidet_area, mask_p, style->scolor, map[d]); + sidet_area.y1--; + sidet_area.y2--; + + fill_fp(&sideb_area, mask_p, style->scolor, map[d]); + sideb_area.y1++; + sideb_area.y2++; + } + +} static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h) { if(r >= (w >> 1)){ From d1bec14de8f7efb1f0bdf88c9e1df70cb28504a7 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 24 Apr 2017 12:08:24 +0200 Subject: [PATCH 35/53] shadow bottom added --- lv_draw/lv_draw.c | 368 ++++++++++++++++++++++++--------------- lv_draw/lv_draw_rbasic.c | 42 ++--- lv_draw/lv_draw_rbasic.h | 3 + lv_draw/lv_draw_vbasic.c | 41 ++++- lv_draw/lv_draw_vbasic.h | 1 + lv_obj/lv_obj.c | 4 +- lv_obj/lv_style.c | 21 +++ lv_obj/lv_style.h | 10 ++ 8 files changed, 328 insertions(+), 162 deletions(-) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index b135a328b..bac9c4920 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -47,7 +47,9 @@ static void lv_draw_cont_main_mid(const area_t * cords_p, const area_t * mask_p, static void lv_draw_cont_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); -static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_cont_shadow_bottom(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map); static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h); @@ -62,10 +64,12 @@ static void point_swap(point_t * p1, point_t * p2); * STATIC VARIABLES **********************/ #if LV_VDB_SIZE != 0 +static void (*px_fp)(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) = lv_vpx; static void (*fill_fp)(const area_t * cords_p, const area_t * mask_p, color_t color, opa_t opa) = lv_vfill; static void (*letter_fp)(const point_t * pos_p, const area_t * mask_p, const font_t * font_p, uint8_t letter, color_t color, opa_t opa) = lv_vletter; static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color_t * map_p, opa_t opa, bool transp, bool upscale, color_t recolor, opa_t recolor_opa) = lv_vmap; #else +static void (*px_fp)(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) = lv_rpx; static void (*fill_fp)(const area_t * cords_p, const area_t * mask_p, color_t color, opa_t opa) = lv_rfill; static void (*letter_fp)(const point_t * pos_p, const area_t * mask_p, const font_t * font_p, uint8_t letter, color_t color, opa_t opa) = lv_rletter; static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color_t * map_p, opa_t opa, bool transp, bool upscale, color_t recolor, opa_t recolor_opa) = lv_rmap; @@ -1051,145 +1055,32 @@ static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * ma */ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { -#if S_OLD == 0 + /* If mask is in the middle of cords do not draw shadow*/ cord_t radius = style->radius; + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + radius = lv_draw_cont_radius_corr(radius, width, height); + area_t area_tmp; - // if(mask_p->y1 > cords_p->y1 + radius && mask_p->y2 < cords_p->y2 - radius) return; - // if(mask_p->x1 > cords_p->x1 + radius && mask_p->x2 < cords_p->x2 - radius) return; + /*Check horizontally without radius*/ + area_cpy(&area_tmp, cords_p); + area_tmp.x1 += radius; + area_tmp.x2 -= radius; + if(area_is_in(mask_p, &area_tmp) != false) return; - cord_t cruve_x[LV_VER_RES] = {CORD_MIN}; - memset(cruve_x, 0, sizeof(cruve_x)); - point_t circ; - cord_t circ_tmp; - circ_init(&circ, &circ_tmp, radius); - while(circ_cont(&circ)) { - cruve_x[CIRC_OCT1_Y(circ)] = CIRC_OCT1_X(circ); - cruve_x[CIRC_OCT2_Y(circ)] = CIRC_OCT2_X(circ); - circ_next(&circ, &circ_tmp); + /*Check vertically without radius*/ + area_cpy(&area_tmp, cords_p); + area_tmp.y1 += radius; + area_tmp.y2 -= radius; + if(area_is_in(mask_p, &area_tmp) != false) return; + + +#if S_OLD == 0 + if(style->stype == LV_STYPE_FULL) { + lv_draw_cont_shadow_full(cords_p, mask_p, style); + } else if(style->stype == LV_STYPE_BOTTOM) { + lv_draw_cont_shadow_bottom(cords_p, mask_p, style); } - int16_t row; - - opa_t opa_h_result[LV_HOR_RES]; - int16_t filter_size = 2 * style->swidth + 1; - - for(row = 0; row < filter_size; row++) { - opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * OPA_COVER) / (filter_size); - } - - for(; row < LV_HOR_RES; row++) { - opa_h_result[row] = OPA_COVER; - } - - uint16_t p; - area_t sarea_rt; - area_t sarea_rb; - area_t sarea_lt; - area_t sarea_lb; - point_t ofs_rb; - point_t ofs_rt; - point_t ofs_lb; - point_t ofs_lt; - opa_t opa_v_result[LV_VER_RES]; - - ofs_rb.x = cords_p->x2 - radius; - ofs_rb.y = cords_p->y2 - radius; - - ofs_rt.x = cords_p->x2 - radius; - ofs_rt.y = cords_p->y1 + radius; - - ofs_lb.x = cords_p->x1 + radius; - ofs_lb.y = cords_p->y2 - radius; - - ofs_lt.x = cords_p->x1 + radius; - ofs_lt.y = cords_p->y1 + radius; - for(row = 0; row < radius + style->swidth; row++) { - for(p = 0; p < radius + style->swidth; p++) { - int16_t v; - uint32_t opa_tmp = 0; - int16_t row_v; - bool swidth_out = false; - for(v = -style->swidth; v < style->swidth; v++) { - row_v = row + v; - if(row_v < 0) row_v = 0; /*Rows above the corner*/ - - /*Rows below the bottom are empty so they won't modify the filter*/ - if(row_v > radius) { - break; - } - else - { - int16_t p_tmp = p - (cruve_x[row_v] - cruve_x[row]); - if(p_tmp < -style->swidth) { /*Cols before the filtered shadow (still not blurred)*/ - opa_tmp += OPA_COVER; - } - /*Cols after the filtered shadow (already no effect) */ - else if (p_tmp > style->swidth) { - /* If on the current point the filter top point is already out of swidth then - * the remaining part will not do not anything on this point*/ - if(v == -style->swidth) { /*Is the first point?*/ - swidth_out = true; - } - break; - } else { - opa_tmp += opa_h_result[p_tmp + style->swidth]; - } - } - } - if(swidth_out == false) { - opa_tmp = opa_tmp / (filter_size); - opa_v_result[p] = opa_tmp; - } - else { - break; - } - } - - sarea_rt.x1 = cruve_x[row] + ofs_rt.x; - sarea_rt.y1 = ofs_rt.y - row; - sarea_rt.x2 = sarea_rt.x1; - sarea_rt.y2 = sarea_rt.y1; - - sarea_rb.x1 = cruve_x[row] + ofs_rb.x; - sarea_rb.y1 = ofs_rb.y + row; - sarea_rb.x2 = sarea_rt.x1; - sarea_rb.y2 = sarea_rb.y1; - - sarea_lt.x1 = ofs_lt.x - cruve_x[row]; - sarea_lt.y1 = ofs_lt.y - row; - sarea_lt.x2 = sarea_lt.x1; - sarea_lt.y2 = sarea_lt.y1; - - sarea_lb.x1 = ofs_lb.x - cruve_x[row]; - sarea_lb.y1 = ofs_lb.y + row; - sarea_lb.x2 = sarea_lb.x1; - sarea_lb.y2 = sarea_lb.y1; - - uint16_t d; - for(d= 0; d < p; d++) { - fill_fp(&sarea_rb, mask_p, style->scolor, opa_v_result[d]); - sarea_rb.x1++; - sarea_rb.x2++; - - fill_fp(&sarea_rt, mask_p, style->scolor, opa_v_result[d]); - sarea_rt.x1++; - sarea_rt.x2++; - - fill_fp(&sarea_lb, mask_p, style->scolor, opa_v_result[d]); - sarea_lb.x1--; - sarea_lb.x2--; - - fill_fp(&sarea_lt, mask_p, style->scolor, opa_v_result[d]); - sarea_lt.x1--; - sarea_lt.x2--; - } - - /*When the first row is known draw the straight pars with same opa. map*/ - if(row == 0) { - lv_draw_cont_shadow_full_straight(cords_p, mask_p, style, opa_v_result); - } - } - - #else cord_t swidth = style->swidth; @@ -1240,11 +1131,216 @@ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, c #endif } +static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +{ + cord_t radius = style->radius; + + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + + radius = lv_draw_cont_radius_corr(radius, width, height); + + cord_t cruve_x[LV_VER_RES] = {CORD_MIN}; + memset(cruve_x, 0, sizeof(cruve_x)); + point_t circ; + cord_t circ_tmp; + circ_init(&circ, &circ_tmp, radius); + while(circ_cont(&circ)) { + cruve_x[CIRC_OCT1_Y(circ)] = CIRC_OCT1_X(circ); + cruve_x[CIRC_OCT2_Y(circ)] = CIRC_OCT2_X(circ); + circ_next(&circ, &circ_tmp); + } + int16_t row; + + opa_t opa_h_result[LV_HOR_RES]; + int16_t filter_size = 2 * style->swidth + 1; + + for(row = 0; row < filter_size; row++) { + opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * style->opa) / (filter_size); + } + + uint16_t p; + opa_t opa_v_result[LV_VER_RES]; + + point_t point_rt; + point_t point_rb; + point_t point_lt; + point_t point_lb; + point_t ofs_rb; + point_t ofs_rt; + point_t ofs_lb; + point_t ofs_lt; + ofs_rb.x = cords_p->x2 - radius; + ofs_rb.y = cords_p->y2 - radius; + + ofs_rt.x = cords_p->x2 - radius; + ofs_rt.y = cords_p->y1 + radius; + + ofs_lb.x = cords_p->x1 + radius; + ofs_lb.y = cords_p->y2 - radius; + + ofs_lt.x = cords_p->x1 + radius; + ofs_lt.y = cords_p->y1 + radius; + + + for(row = 0; row < radius + style->swidth; row++) { + for(p = 0; p < radius + style->swidth; p++) { + int16_t v; + uint32_t opa_tmp = 0; + int16_t row_v; + bool swidth_out = false; + for(v = -style->swidth; v < style->swidth; v++) { + row_v = row + v; + if(row_v < 0) row_v = 0; /*Rows above the corner*/ + + /*Rows below the bottom are empty so they won't modify the filter*/ + if(row_v > radius) { + break; + } + else + { + int16_t p_tmp = p - (cruve_x[row_v] - cruve_x[row]); + if(p_tmp < -style->swidth) { /*Cols before the filtered shadow (still not blurred)*/ + opa_tmp += style->opa; + } + /*Cols after the filtered shadow (already no effect) */ + else if (p_tmp > style->swidth) { + /* If on the current point the filter top point is already out of swidth then + * the remaining part will not do not anything on this point*/ + if(v == -style->swidth) { /*Is the first point?*/ + swidth_out = true; + } + break; + } else { + opa_tmp += opa_h_result[p_tmp + style->swidth]; + } + } + } + if(swidth_out == false) { + opa_tmp = opa_tmp / (filter_size); + opa_v_result[p] = opa_tmp; + } + else { + break; + } + } + + point_rt.x = cruve_x[row] + ofs_rt.x; + point_rt.y = ofs_rt.y - row; + + point_rb.x = cruve_x[row] + ofs_rb.x; + point_rb.y = ofs_rb.y + row; + + point_lt.x = ofs_lt.x - cruve_x[row]; + point_lt.y = ofs_lt.y - row; + + point_lb.x = ofs_lb.x - cruve_x[row]; + point_lb.y = ofs_lb.y + row; + + uint16_t d; + for(d= 0; d < p; d++) { + px_fp(point_rb.x,point_rb.y , mask_p, style->scolor, opa_v_result[d]); + point_rb.x++; + + px_fp(point_rt.x,point_rt.y , mask_p, style->scolor, opa_v_result[d]); + point_rt.x++; + + px_fp(point_lb.x,point_rb.y , mask_p, style->scolor, opa_v_result[d]); + point_lb.x--; + + px_fp(point_lt.x,point_lt.y , mask_p, style->scolor, opa_v_result[d]); + point_lt.x--; + } + + /*When the first row is known draw the straight pars with same opa. map*/ + if(row == 0) { + lv_draw_cont_shadow_full_straight(cords_p, mask_p, style, opa_v_result); + } + } +} + + +static void lv_draw_cont_shadow_bottom(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +{ + cord_t radius = style->radius; + + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + + radius = lv_draw_cont_radius_corr(radius, width, height); + + cord_t cruve_x[LV_VER_RES] = {CORD_MIN}; + memset(cruve_x, 0, sizeof(cruve_x)); + point_t circ; + cord_t circ_tmp; + circ_init(&circ, &circ_tmp, radius); + while(circ_cont(&circ)) { + cruve_x[CIRC_OCT1_Y(circ)] = CIRC_OCT1_X(circ); + cruve_x[CIRC_OCT2_Y(circ)] = CIRC_OCT2_X(circ); + circ_next(&circ, &circ_tmp); + } + int16_t row; + + opa_t opa_h_result[LV_HOR_RES]; + int16_t filter_size = 2 * style->swidth + 1; + + for(row = 0; row < filter_size; row++) { + opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * style->opa) / (filter_size); + } + + point_t point_l; + point_t point_r; + area_t area_mid; + point_t ofs1; + point_t ofs2; + + ofs1.x = cords_p->x1 + radius; + ofs1.y = cords_p->y2 - radius; + + ofs2.x = cords_p->x2 - radius; + ofs2.y = cords_p->y2 - radius; + + for(row = 0; row < radius; row++) { + point_l.x = ofs1.x + radius - row - radius; + point_l.y = ofs1.y + cruve_x[row]; + + point_r.x = ofs2.x + row; + point_r.y = ofs2.y + cruve_x[row]; + + uint16_t d; + for(d= style->swidth; d < filter_size; d++) { + px_fp(point_l.x, point_l.y, mask_p, style->scolor, opa_h_result[d]); + point_l.y ++; + + px_fp(point_r.x, point_r.y, mask_p, style->scolor, opa_h_result[d]); + point_r.y ++; + } + + } + + area_mid.x1 = ofs1.x + 1; + area_mid.y1 = ofs1.y + radius; + area_mid.x2 = ofs2.x - 1; + area_mid.y2 = area_mid.y1; + + uint16_t d; + for(d= style->swidth; d < filter_size; d++) { + fill_fp(&area_mid, mask_p, style->scolor, opa_h_result[d]); + area_mid.y1 ++; + area_mid.y2 ++; + } +} + static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map) { cord_t radius = style->radius; + cord_t width = area_get_width(cords_p); + cord_t height = area_get_height(cords_p); + + radius = lv_draw_cont_radius_corr(radius, width, height); + area_t sider_area; sider_area.x1 = cords_p->x2; sider_area.y1 = cords_p->y1 + radius + 1; diff --git a/lv_draw/lv_draw_rbasic.c b/lv_draw/lv_draw_rbasic.c index 02219c306..198701d4e 100644 --- a/lv_draw/lv_draw_rbasic.c +++ b/lv_draw/lv_draw_rbasic.c @@ -22,7 +22,6 @@ /********************** * STATIC PROTOTYPES **********************/ -static void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color); /********************** * STATIC VARIABLES @@ -36,6 +35,25 @@ static void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color); * GLOBAL FUNCTIONS **********************/ +/** + * Put a pixel to the display + * @param x x coordinate of the pixel + * @param y y coordinate of the pixel + * @param mask_p the pixel will be drawn on this area + * @param color color of the pixel + * @param opa opacity (ignored, only for compatibility with lv_vpx) + */ +void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) +{ + area_t area; + area.x1 = x; + area.y1 = y; + area.x2 = x; + area.y2 = y; + + lv_rfill(&area, mask_p, color, OPA_COVER); +} + /** * Fill an area on the display * @param cords_p coordinates of the area to fill @@ -84,7 +102,7 @@ void lv_rletter(const point_t * pos_p, const area_t * mask_p, for(row = 0; row < font_p->height_row; row ++) { for(col = 0, col_sub = 7; col < w; col ++, col_sub--) { if(*bitmap_p & (1 << col_sub)) { - lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color); + lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color, opa); } if(col_sub == 0) { @@ -185,7 +203,7 @@ void lv_rmap(const area_t * cords_p, const area_t * mask_p, cord_t col; for(col = 0; col < area_get_width(&masked_a); col ++) { if(map_p[col].full != transp_color.full) { - lv_rpx(masked_a.x1 + col, masked_a.y1 + row, mask_p, map_p[col]); + lv_rpx(masked_a.x1 + col, masked_a.y1 + row, mask_p, map_p[col], opa); } } map_p += map_width; @@ -196,21 +214,3 @@ void lv_rmap(const area_t * cords_p, const area_t * mask_p, /********************** * STATIC FUNCTIONS **********************/ - -/** - * Put a pixel to the display - * @param x x coordinate of the pixel - * @param y y coordinate of the pixel - * @param mask_p the pixel will be drawn on this area - * @param color color of the pixel - */ -static void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color) -{ - area_t area; - area.x1 = x; - area.y1 = y; - area.x2 = x; - area.y2 = y; - - lv_rfill(&area, mask_p, color, OPA_COVER); -} diff --git a/lv_draw/lv_draw_rbasic.h b/lv_draw/lv_draw_rbasic.h index 4f867b57f..08d19e93b 100644 --- a/lv_draw/lv_draw_rbasic.h +++ b/lv_draw/lv_draw_rbasic.h @@ -24,6 +24,9 @@ /********************** * GLOBAL PROTOTYPES **********************/ + +void lv_rpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa); + /** * Fill an area on the display * @param cords_p coordinates of the area to fill diff --git a/lv_draw/lv_draw_vbasic.c b/lv_draw/lv_draw_vbasic.c index f1136ae5b..39ccb9173 100644 --- a/lv_draw/lv_draw_vbasic.c +++ b/lv_draw/lv_draw_vbasic.c @@ -44,10 +44,45 @@ * GLOBAL FUNCTIONS **********************/ + +/** + * Put a pixel in the Virtual Display Buffer + * @param x pixel x coordinate + * @param y pixel y coordinate + * @param mask_p fill only on this mask (truncated to VDB area) + * @param color pixel color + * @param opa opacity of the area (0..255) + */ +void lv_vpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa) +{ + lv_vdb_t * vdb_p = lv_vdb_get(); + + /*Pixel out of the mask*/ + if(x < mask_p->x1 || x > mask_p->x2 || + y < mask_p->y1 || y > mask_p->y2) { + return; + } + + uint32_t vdb_width = area_get_width(&vdb_p->area); + + /*Make the coordinates relative to VDB*/ + x-=vdb_p->area.x1; + y-=vdb_p->area.y1; + color_t * vdb_px_p = vdb_p->buf + y * vdb_width + x; + if(opa == OPA_COVER) { + *vdb_px_p = color; + } + else { + *vdb_px_p = color_mix(color,*vdb_px_p, opa); + } + +} + + /** * Fill an area in the Virtual Display Buffer * @param cords_p coordinates of the area to fill - * @param mask_p fill only o this mask + * @param mask_p fill only o this mask (truncated to VDB area) * @param color fill color * @param opa opacity of the area (0..255) */ @@ -118,7 +153,7 @@ void lv_vfill(const area_t * cords_p, const area_t * mask_p, /** * Draw a letter in the Virtual Display Buffer * @param pos_p left-top coordinate of the latter - * @param mask_p the letter will be drawn only on this area + * @param mask_p the letter will be drawn only on this area (truncated to VDB area) * @param font_p pointer to font * @param letter a letter to draw * @param color color of letter @@ -241,7 +276,7 @@ void lv_vletter(const point_t * pos_p, const area_t * mask_p, /** * Draw a color map to the display * @param cords_p coordinates the color map - * @param mask_p the map will drawn only on this area + * @param mask_p the map will drawn only on this area (truncated to VDB area) * @param map_p pointer to a color_t array * @param opa opacity of the map (ignored, only for compatibility with lv_vmap) * @param transp true: enable transparency of LV_IMG_COLOR_TRANSP color pixels diff --git a/lv_draw/lv_draw_vbasic.h b/lv_draw/lv_draw_vbasic.h index 599f67731..235244d02 100644 --- a/lv_draw/lv_draw_vbasic.h +++ b/lv_draw/lv_draw_vbasic.h @@ -29,6 +29,7 @@ * GLOBAL PROTOTYPES **********************/ +void lv_vpx(cord_t x, cord_t y, const area_t * mask_p, color_t color, opa_t opa); /** * Fill an area in the Virtual Display Buffer * @param cords_p coordinates of the area to fill diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 3258a3858..52519b2d1 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -1448,13 +1448,13 @@ static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode lv_obj_get_cords(obj, &area_tmp); area_tmp.x1 += r; area_tmp.x2 -= r; - if(area_is_in(mask_p, &area_tmp) != true) return false; + if(area_is_in(mask_p, &area_tmp) == false) return false; /*Check vertically without radius*/ lv_obj_get_cords(obj, &area_tmp); area_tmp.y1 += r; area_tmp.y2 -= r; - if(area_is_in(mask_p, &area_tmp) != true) return false; + if(area_is_in(mask_p, &area_tmp) == false) return false; } else if(mode == LV_DESIGN_DRAW_MAIN) { lv_style_t * style = lv_obj_get_style(obj); diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index 2326f3100..63205e8ea 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -72,6 +72,7 @@ void lv_style_init (void) lv_style_set_opad(&lv_style_scr, LV_DPI / 12); lv_style_set_bopa(&lv_style_scr, OPA_COVER); lv_style_set_empty(&lv_style_scr, false); + lv_style_set_stype(&lv_style_scr, LV_STYPE_FULL); lv_style_set_font(&lv_style_scr, font_get(FONT_DEFAULT)); lv_style_set_letter_space(&lv_style_scr, 1 * LV_DOWNSCALE); @@ -366,6 +367,16 @@ void lv_style_set_empty(lv_style_t * style, bool empty) style->empty = empty == false ? 0 : 1; } +/** + * Set the shadow type (position) of a style + * @param style pointer to style + * @param stype shadow type from 'lv_shadow_type_t' enum + */ +void lv_style_set_stype(lv_style_t * style, lv_stype_t stype) +{ + style->stype = stype; +} + /** * Set the font of a style * @param style pointer to style @@ -580,6 +591,16 @@ bool lv_style_get_empty(lv_style_t * style, bool empty) return style->empty == false ? 0 : 1; } +/** + * Get the shadow type attribute + * @param style pointer to style + * @return shadow type from 'lv_stype_t' enum + */ +bool lv_style_get_stype(lv_style_t * style, bool empty) +{ + return style->stype; +} + /** * Get the font of a style * @param style pointer to style diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h index 39a3bf8f5..a7eadb67c 100644 --- a/lv_obj/lv_style.h +++ b/lv_obj/lv_style.h @@ -28,12 +28,21 @@ typedef enum { LV_TXT_ALIGN_MID, }lv_txt_align_t; + +/*Shadow types*/ +typedef enum +{ + LV_STYPE_BOTTOM = 0, + LV_STYPE_FULL, +}lv_stype_t; + typedef struct { /*Object level styles*/ color_t ccolor; /*Content color (e.g. text or image re-color )*/ opa_t opa; /*Opacity of the object*/ uint8_t empty :1; /*Transparent background (border drawn)*/ + uint8_t stype :3; /*Shadow type from 'lv_shadow_type_t'*/ color_t mcolor; /*Main color of background*/ color_t gcolor; /*Gradient color of background*/ color_t bcolor; /*Border color of background*/ @@ -100,6 +109,7 @@ lv_style_t * lv_style_inherit(lv_style_t * result, const lv_style_t * child, con */ void lv_style_set_ccolor(lv_style_t * style, color_t ccolor); +void lv_style_set_stype(lv_style_t * style, lv_stype_t stype); /** * Clear the content color of a style (it will be inherited from the parent style) * @param style pointer to a style From dadb8973bf323c6f67b7f956a1b610d72483753c Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 24 Apr 2017 14:12:32 +0200 Subject: [PATCH 36/53] shadow draw iprovments --- lv_draw/lv_draw.c | 62 ++++----------------------------------------- lv_obj/lv_style.c | 2 +- lv_objx/lv_ddlist.c | 9 +++---- lv_objx/lv_ddlist.h | 10 +++----- lv_objx/lv_led.c | 4 +-- 5 files changed, 15 insertions(+), 72 deletions(-) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index bac9c4920..e6bf15669 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -1046,8 +1046,6 @@ static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * ma } } -#define S_OLD 0 - /** * Draw a shadow * @param rect pointer to rectangle object @@ -1074,61 +1072,11 @@ static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, c area_tmp.y2 -= radius; if(area_is_in(mask_p, &area_tmp) != false) return; - -#if S_OLD == 0 if(style->stype == LV_STYPE_FULL) { lv_draw_cont_shadow_full(cords_p, mask_p, style); } else if(style->stype == LV_STYPE_BOTTOM) { lv_draw_cont_shadow_bottom(cords_p, mask_p, style); } -#else - - cord_t swidth = style->swidth; - if(swidth == 0) return; - uint8_t res = LV_DOWNSCALE * 1; - if(swidth < res) return; - - area_t shadow_area; - lv_style_t shadow_style; - memcpy(&shadow_area, cords_p, sizeof(area_t)); - - memcpy(&shadow_style, style, sizeof(lv_style_t)); - - shadow_style.empty = 1; - shadow_style.bwidth = swidth; - shadow_style.radius = style->radius; - if(shadow_style.radius == LV_DRAW_CIRCLE) { - shadow_style.radius = MATH_MIN(area_get_width(cords_p), area_get_height(cords_p)); - } - shadow_style.radius += swidth + 1; - shadow_style.bcolor = style->scolor; - shadow_style.bopa = style->opa; - - shadow_area.x1 -= swidth - 1; - shadow_area.y1 -= swidth - 1; - shadow_area.x2 += swidth - 1; - shadow_area.y2 += swidth - 1; - - cord_t i; - shadow_style.bopa = style->opa / (swidth / res); - - static color_t x; - x.full = 0x1C224; - - for(i = 1; i < swidth; i += res) { - x.full += 0xFCA34; - // shadow_style.bcolor.full = x.full; - lv_draw_cont_border_straight(&shadow_area, mask_p, &shadow_style); - lv_draw_cont_border_corner(&shadow_area, mask_p, &shadow_style); - shadow_style.radius -= res; - shadow_style.bwidth -= res; - shadow_area.x1 += res; - shadow_area.y1 += res; - shadow_area.x2 -= res; - shadow_area.y2 -= res; - } - -#endif } static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) @@ -1152,11 +1100,11 @@ static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask } int16_t row; - opa_t opa_h_result[LV_HOR_RES]; + uint16_t opa_h_result[LV_HOR_RES]; int16_t filter_size = 2 * style->swidth + 1; for(row = 0; row < filter_size; row++) { - opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * style->opa) / (filter_size); + opa_h_result[row] = (uint32_t)((uint32_t)(filter_size - row) * style->opa * 2) / (filter_size); } uint16_t p; @@ -1201,7 +1149,7 @@ static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask { int16_t p_tmp = p - (cruve_x[row_v] - cruve_x[row]); if(p_tmp < -style->swidth) { /*Cols before the filtered shadow (still not blurred)*/ - opa_tmp += style->opa; + opa_tmp += style->opa * 2; } /*Cols after the filtered shadow (already no effect) */ else if (p_tmp > style->swidth) { @@ -1218,7 +1166,7 @@ static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask } if(swidth_out == false) { opa_tmp = opa_tmp / (filter_size); - opa_v_result[p] = opa_tmp; + opa_v_result[p] = opa_tmp > OPA_COVER ? OPA_COVER : opa_tmp; } else { break; @@ -1367,7 +1315,7 @@ static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area int16_t d; for(d = 0; d < style->swidth; d++) { - fill_fp(&sider_area, mask_p, style->scolor, map[d]); + fill_fp(&sider_area, mask_p, style->scolor, map[d]); sider_area.x1++; sider_area.x2++; diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index 63205e8ea..518f38207 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -108,7 +108,7 @@ void lv_style_init (void) lv_style_set_mcolor(&lv_style_pretty_color, COLOR_MAKE(0x6b, 0x9a, 0xc7)); lv_style_set_gcolor(&lv_style_pretty_color, COLOR_MAKE(0x2b, 0x59, 0x8b)); lv_style_set_bcolor(&lv_style_pretty_color, COLOR_MAKE(0x15, 0x2c, 0x42)); - lv_style_set_scolor(&lv_style_pretty_color, COLOR_MAKE(0x6a, 0x8f, 0xb4)); + lv_style_set_scolor(&lv_style_pretty_color, COLOR_GRAY); lv_style_set_swidth(&lv_style_pretty_color, 0); /*Transparent style*/ diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index d3ae56634..eec4ba536 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -181,12 +181,9 @@ void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt) /** * Set a function to call when a new option is chosen * @param ddlist pointer to a drop down list - * @param cb pointer to a call back function. Its prototype is: - * parameter 1: pointer to the drop down list - * parameter 2: id of the chosen item (0 ... number of options - 1) - * return LV_ACTION_RES_INV if the drop down list is deleted in the function else LV_ACTION_RES_OK + * @param cb pointer to a call back function */ -void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, uint16_t)) +void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_t cb) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); ext->cb = cb; @@ -355,7 +352,7 @@ static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * disp ext->sel_opt = new_opt; if(ext->cb != NULL) { - ext->cb(ddlist, ext->sel_opt); + ext->cb(ddlist, dispi); } } #if LV_DDLIST_ANIM_TIME == 0 diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 518456947..8be44330b 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -29,7 +29,7 @@ typedef struct /*New data for this type */ lv_obj_t * opt_label; /*Label for the options*/ lv_style_t * style_sel; /*Style of the selected option*/ - lv_action_res_t (*cb)(lv_obj_t *, uint16_t); /*Pointer to function to call when an option is slected*/ + lv_action_t cb; /*Pointer to function to call when an option is slected*/ uint16_t sel_opt; /*Index of the current option*/ uint8_t opened :1; /*1: The list is opened*/ uint8_t auto_size :1; /*1: Set height to show all options. 0: Set height maximum to the parent bottom*/ @@ -73,15 +73,13 @@ void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options); */ void lv_ddlist_set_selected(lv_obj_t * ddlist, uint16_t sel_opt); + /** * Set a function to call when a new option is chosen * @param ddlist pointer to a drop down list - * @param cb pointer to a call back function. Its prototype is: - * parameter 1: pointer to the drop down list - * parameter 2: id of the chosen item (0 ... number of options - 1) - * return LV_ACTION_RES_INV if the drop down list is deleted in the function else LV_ACTION_RES_OK + * @param cb pointer to a call back function */ -void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_res_t (*cb)(lv_obj_t *, uint16_t)); +void lv_ddlist_set_action(lv_obj_t * ddlist, lv_action_t cb); /** * Set the auto size attribute. If enabled the height will reduced to be visible on the parent. diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index a842fd594..5f80c40b6 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -15,8 +15,8 @@ /********************* * DEFINES *********************/ -#define LV_LED_WIDTH_DEF (LV_DPI / 2) -#define LV_LED_HEIGHT_DEF (LV_DPI / 2) +#define LV_LED_WIDTH_DEF (LV_DPI / 3) +#define LV_LED_HEIGHT_DEF (LV_DPI / 3) #define LV_LED_BRIGHT_OFF 128 #define LV_LED_BRIGHT_ON 255 From 24128ae32530b064a2c02b5e36fc52ba055328de Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 24 Apr 2017 16:16:36 +0200 Subject: [PATCH 37/53] Cleaning the code --- lv_app/lv_app.c | 20 +++-- lv_app/lv_app_util/lv_app_notice.c | 4 +- lv_appx/lv_app_sysmon.c | 8 +- lv_appx/lv_app_terminal.c | 20 ++--- lv_conf_temp.h | 114 +++++++++++++++-------------- lv_draw/lv_draw.c | 50 +++++-------- lv_draw/lv_draw.h | 8 -- lv_obj/lv_obj.c | 13 +++- lv_obj/lv_style.c | 18 +++-- lv_obj/lv_style.h | 3 +- lv_objx/lv_bar.c | 7 +- lv_objx/lv_btn.c | 14 ++-- lv_objx/lv_btn.h | 4 +- lv_objx/lv_btnm.c | 3 +- lv_objx/lv_btnm.h | 10 --- lv_objx/lv_cb.c | 4 +- lv_objx/lv_cb.h | 3 +- lv_objx/lv_chart.c | 2 +- lv_objx/lv_chart.h | 14 +--- lv_objx/lv_cont.c | 4 +- lv_objx/lv_cont.h | 3 +- lv_objx/lv_ddlist.c | 4 +- lv_objx/lv_ddlist.h | 10 +++ lv_objx/lv_gauge.c | 6 +- lv_objx/lv_gauge.h | 12 +-- lv_objx/lv_img.h | 6 +- lv_objx/lv_line.c | 7 +- lv_objx/lv_lmeter.c | 6 -- lv_objx/lv_lmeter.h | 18 +++-- lv_objx/lv_mbox.h | 4 +- lv_objx/lv_page.c | 2 +- lv_objx/lv_page.h | 7 +- lv_objx/lv_win.c | 4 +- 33 files changed, 193 insertions(+), 219 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index e3534989b..1262dcf22 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -805,11 +805,12 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d char buf[256]; sprintf(buf, "%s settings", app->dsc->name); + lv_win_add_ctrl_btn(app->conf_win, SYMBOL_CLOSE ,lv_win_close_action); lv_win_set_title(app->conf_win, buf); - lv_obj_t * scrl = lv_page_get_scrl(app->conf_win); + lv_win_set_style_cbtn(app->conf_win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); + lv_obj_t * scrl = lv_page_get_scrl(lv_win_get_page(app->conf_win)); lv_cont_set_layout(scrl, LV_CONT_LAYOUT_COL_L); - lv_win_add_ctrl_btn(app->conf_win, "U:/icon_close" ,lv_win_close_action); app->dsc->conf_open(app, app->conf_win); @@ -1018,9 +1019,9 @@ static void lv_app_init_style(void) app_style.menu.radius = 0; app_style.menu.bwidth = 0; app_style.menu.swidth = 0; - app_style.menu.vpad = LV_DPI / 10; - app_style.menu.hpad = LV_DPI / 10; - app_style.menu.opad = LV_DPI / 10; + app_style.menu.vpad = LV_DPI / 12; + app_style.menu.hpad = LV_DPI / 12; + app_style.menu.opad = LV_DPI / 12; lv_style_get(LV_STYLE_BTN_REL,&app_style.menu_btn_rel); app_style.menu_btn_rel.ccolor = COLOR_MAKE(0xd0, 0xe0, 0xf0); @@ -1032,6 +1033,9 @@ static void lv_app_init_style(void) app_style.menu_btn_rel.empty = 1; app_style.menu_btn_rel.font = font_get(LV_APP_FONT_LARGE); app_style.menu_btn_rel.img_recolor = OPA_90; + app_style.menu_btn_rel.vpad = LV_DPI / 10; + app_style.menu_btn_rel.hpad = LV_DPI / 10; + app_style.menu_btn_rel.opad = LV_DPI / 10; memcpy(&app_style.menu_btn_pr, &app_style.menu_btn_rel, sizeof(lv_style_t)); app_style.menu_btn_pr.mcolor = COLOR_GRAY; @@ -1075,21 +1079,21 @@ static void lv_app_init_style(void) app_style.sc_send_pr.gcolor = COLOR_MAKE(0x20, 0x10, 0x00); app_style.sc_send_pr.gcolor = COLOR_BLACK; app_style.sc_send_pr.bopa = OPA_30; - app_style.sc_send_pr.bwidth = 3 * LV_DOWNSCALE; + app_style.sc_send_pr.bwidth = 2 * LV_DOWNSCALE; memcpy(&app_style.sc_rec_rel, &app_style.sc_send_rel, sizeof(lv_style_t)); app_style.sc_rec_rel.mcolor = COLOR_MAKE(0xE0, 0xFF, 0xE0); app_style.sc_rec_rel.gcolor = COLOR_MAKE(0x20, 0x50, 0x20); app_style.sc_rec_rel.bcolor = COLOR_BLACK; app_style.sc_rec_rel.bopa = OPA_30; - app_style.sc_rec_rel.bwidth = 3 * LV_DOWNSCALE; + app_style.sc_rec_rel.bwidth = 2 * LV_DOWNSCALE; memcpy(&app_style.sc_rec_pr, &app_style.sc_send_pr, sizeof(lv_style_t)); app_style.sc_rec_pr.mcolor = COLOR_MAKE(0xB0, 0xFF, 0xB0); app_style.sc_rec_pr.gcolor = COLOR_MAKE(0x20, 0x20, 0x10); app_style.sc_rec_pr.bcolor = COLOR_BLACK; app_style.sc_rec_pr.bopa = OPA_30; - app_style.sc_rec_pr.bwidth = 3 * LV_DOWNSCALE; + app_style.sc_rec_pr.bwidth = 2 * LV_DOWNSCALE; memcpy(&app_style.sc_title, &app_style.sc_rel, sizeof(lv_style_t)); app_style.sc_title.font = font_get(LV_APP_FONT_SMALL); diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index d2593571b..db54bb09e 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -57,8 +57,8 @@ static lv_obj_t * notice_h; void lv_app_notice_init(void) { notice_h = lv_cont_create(lv_scr_act(), NULL); - lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - LV_DPI); - lv_obj_set_y(notice_h, LV_DPI); + lv_obj_set_size(notice_h, LV_HOR_RES, LV_VER_RES - LV_DPI / 8); + lv_obj_set_y(notice_h, LV_DPI / 8); lv_obj_set_click(notice_h, false); lv_obj_set_style(notice_h, lv_style_get(LV_STYLE_TRANSP, NULL)); lv_cont_set_layout(notice_h, LV_CONT_LAYOUT_COL_R); diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 4b8e46745..8a0c0f467 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -119,6 +119,8 @@ const lv_app_dsc_t * lv_app_sysmon_init(void) cpu_bars.font = font_get(LV_APP_FONT_MEDIUM); cpu_bars.line_space = 0; cpu_bars.txt_align = 1; + cpu_bars.hpad = 0; + cpu_bars.vpad = 0; memcpy(&mem_bars, &cpu_bars, sizeof(cpu_bars)); mem_bars.gcolor = COLOR_GREEN; @@ -228,9 +230,9 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_chart_set_pnum(win_data->chart, LV_APP_SYSMON_PNUM); lv_chart_set_range(win_data->chart, 0, 100); lv_chart_set_type(win_data->chart, LV_CHART_LINE); - - win_data->cpu_dl = lv_chart_add_dataline(win_data->chart, COLOR_RED, 2 * LV_DOWNSCALE); - win_data->mem_dl = lv_chart_add_dataline(win_data->chart, COLOR_BLUE, 2 * LV_DOWNSCALE); + lv_chart_set_dl_width(win_data->chart, 2 * LV_DOWNSCALE); + win_data->cpu_dl = lv_chart_add_dataline(win_data->chart, COLOR_RED); + win_data->mem_dl = lv_chart_add_dataline(win_data->chart, COLOR_BLUE); uint16_t i; for(i = 0; i < LV_APP_SYSMON_PNUM; i ++) { diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index 3bc4e0d80..a22f7138b 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -75,8 +75,8 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win); static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len); static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi); -static lv_action_res_t win_comtype_action(lv_obj_t * btn, uint16_t opt); -static lv_action_res_t win_format_action(lv_obj_t * btn, uint16_t opt); +static lv_action_res_t win_comtype_action(lv_obj_t * ddlist, lv_dispi_t * dispi); +static lv_action_res_t win_format_action(lv_obj_t * ddlist, lv_dispi_t * dispi); static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi); static void win_ta_kb_ok_action(lv_obj_t * ta); @@ -334,15 +334,15 @@ static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) /** * Called when an option is chosen in the communication type drop down list on the configuration window * @param ddl pointer to the drop down list - * @param opt id of the chosen option + * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK because the list is not deleted */ -static lv_action_res_t win_comtype_action(lv_obj_t * btn, uint16_t opt) +static lv_action_res_t win_comtype_action(lv_obj_t * ddlist, lv_dispi_t * dispi) { - lv_app_inst_t * app = lv_obj_get_free_p(btn); + lv_app_inst_t * app = lv_obj_get_free_p(ddlist); my_app_data_t * app_data = app->app_data; - app_data->com_type = com_type_list[opt]; + app_data->com_type = com_type_list[lv_ddlist_get_selected(ddlist)]; return LV_ACTION_RES_OK; } @@ -350,14 +350,14 @@ static lv_action_res_t win_comtype_action(lv_obj_t * btn, uint16_t opt) /** * Called when an option is chosen in the format drop down list on the configuration window * @param ddl pointer to the drop down list - * @param opt id of the chosen option + * @param dispi pointer to the caller display input * @return LV_ACTION_RES_OK because the list is not deleted */ -static lv_action_res_t win_format_action(lv_obj_t * btn, uint16_t opt) +static lv_action_res_t win_format_action(lv_obj_t * ddlist, lv_dispi_t * dispi) { - lv_app_inst_t * app = lv_obj_get_free_p(btn); + lv_app_inst_t * app = lv_obj_get_free_p(ddlist); my_app_data_t * app_data = app->app_data; - + uint16_t opt = lv_ddlist_get_selected(ddlist); if(strcmp(txt_format_list_txt[opt], "Hexadecimal") == 0) { app_data->format = LV_APP_TERMINAL_FORMAT_HEX; } else if (strcmp(txt_format_list_txt[opt], "ASCII") == 0) { diff --git a/lv_conf_temp.h b/lv_conf_temp.h index 47b736df1..6ebb2b33f 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -14,19 +14,19 @@ /* Horizontal and vertical resolution of the library. * Screen resolution multiplied by LV_DOWN_SCALE*/ -#define LV_HOR_RES (480 * LV_DOWNSCALE) -#define LV_VER_RES (320 * LV_DOWNSCALE) +#define LV_HOR_RES (320 * LV_DOWNSCALE) +#define LV_VER_RES (240 * LV_DOWNSCALE) +#define LV_DPI (80 * LV_DOWNSCALE) /* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/ - -#define LV_VDB_SIZE (LV_HOR_RES * (LV_VER_RES / 20)) +#define LV_VDB_SIZE (LV_HOR_RES * 20) /* Enable antialaiassing * If enabled everything will half-sized * Use LV_DOWNSCALE to compensate * the down scaling effect of antialiassing*/ #define LV_ANTIALIAS 1 -#define FONT_ANTIALIAS 0 + /*Set the downscaling value*/ #if LV_ANTIALIAS == 0 #define LV_DOWNSCALE 1 @@ -48,28 +48,9 @@ #define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/ #define LV_DISPI_LONG_PRESS_REP_TIME 100 /*Repeated trigger period in long press [ms] */ -/*Coordinates*/ -#define LV_CORD_TYPE int16_t /*Coordinate type*/ -#define LV_CORD_MAX (32000) -#define LV_CORD_MIN (-32000) - -/*Fonts and texts*/ -#define USE_FONT_DEJAVU_8 1 -#define USE_FONT_DEJAVU_10 1 -#define USE_FONT_DEJAVU_14 1 -#define USE_FONT_DEJAVU_20 1 -#define USE_FONT_DEJAVU_30 1 -#define USE_FONT_DEJAVU_40 1 -#define USE_FONT_DEJAVU_60 1 -#define USE_FONT_DEJAVU_80 1 -#define USE_FONT_SYMBOL_30 1 -#define USE_FONT_SYMBOL_60 1 -#define LV_FONT_DEFAULT FONT_DEJAVU_30 /*Always set a default font*/ -#define LV_TXT_BREAK_CHARS " ,.;-" /*Can break texts on these chars*/ - /*lv_obj (base object) settings*/ +#define LV_OBJ_FREE_NUM 1 /*Enable the free number attribute*/ #define LV_OBJ_FREE_P 1 /*Enable the free pointer attribute*/ -#define LV_OBJ_DEF_SCR_COLOR COLOR_SILVER /*Default screen color*/ /*Others*/ #define LV_COLOR_TRANSP COLOR_LIME @@ -78,8 +59,9 @@ * LV OBJ X USAGE * ================*/ -/*Rectangle (dependencies: -*/ -#define USE_LV_RECT 1 +/***************** + * Simple object + *****************/ /*Label (dependencies: -*/ #define USE_LV_LABEL 1 @@ -90,16 +72,10 @@ #define LV_LABEL_SCROLL_REPEAT_PAUSE 500 /*Wait before the scroll begins again in ms*/ #endif -/*Button (dependencies: lv_rect*/ -#define USE_LV_BTN 1 - -/*Line (dependencies: -*/ -#define USE_LV_LINE 1 - /*Image (dependencies: lv_label (if symbols are enabled) from misc: FSINT, UFS)*/ #define USE_LV_IMG 1 #if USE_LV_IMG != 0 -#define LV_IMG_DEF_WALLPAPER img_square_x2 /*Comment this line to NOT use wallpaper*/ +//#define LV_IMG_DEF_WALLPAPER img_square_x1 /*Comment this line to NOT use wallpaper*/ /* 1: enables to interpret the file names as symbol name * from symbol_def.h if they begin with a lower case letter. * (driver letters are always upper case)*/ @@ -109,26 +85,49 @@ #endif /*LV_IMG_ENABLE_SYMBOLS*/ #endif /*USE_LV_IMG*/ +/*Line (dependencies: -*/ +#define USE_LV_LINE 1 + +/******************* + * Container object + *******************/ + +/*Container (dependencies: -*/ +#define USE_LV_CONT 1 + /*Page (dependencies: lv_rect)*/ #define USE_LV_PAGE 1 #if USE_LV_PAGE != 0 #define LV_PAGE_ANIM_FOCUS_TIME 300 /*List focus animation time [ms] (0: turn off the animation)*/ #endif -/*List (dependencies: lv_btn, lv_label, lv_img)*/ -#define USE_LV_LIST 1 +/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/ +#define USE_LV_WIN 1 -/*Check box (dependencies: lv_btn, lv_label)*/ -#define USE_LV_CB 1 +/************************* + * Data visualizer object + *************************/ -/*Progress bar (dependencies: lv_rect, lv_label)*/ -#define USE_LV_PB 1 +/*Bar (dependencies: -)*/ +#define USE_LV_BAR 1 + +/*Line meter (dependencies: bar, misc: trigo)*/ +#define USE_LV_LMETER 1 + +/*Gauge (dependencies: misc: trigo)*/ +#define USE_LV_GAUGE 1 + +/*Chart (dependencies: -)*/ +#define USE_LV_CHART 1 /*LED (dependencies: lv_rect)*/ #define USE_LV_LED 1 -/*Chart (dependencies: lv_rect, lv_line)*/ -#define USE_LV_CHART 1 +/*Message box (dependencies: lv_rect, lv_btn, lv_label)*/ +#define USE_LV_MBOX 1 +#if USE_LV_MBOX != 0 +#define LV_MBOX_ANIM_TIME 200 /*How fast animate out the message box in auto close. 0: no animation [ms]*/ +#endif /*Text area (dependencies: lv_label, lv_page)*/ #define USE_LV_TA 1 @@ -137,26 +136,31 @@ #define LV_TA_CUR_BLINK_TIME 400 /*ms*/ #endif -/*Button matrix (dependencies: lv_rect, lv_label)*/ +/************************* + * User input object + *************************/ + +/*Button (dependencies: lv_cont*/ +#define USE_LV_BTN 1 + +/*Button matrix (dependencies: -)*/ #define USE_LV_BTNM 1 -/*Drop down list (dependencies: lv_page, lv_btn_t, lv_label_t)*/ -#define USE_LV_DDLIST 1 +/*Check box (dependencies: lv_btn, lv_label)*/ +#define USE_LV_CB 1 + +/*List (dependencies: lv_btn, lv_label, lv_img)*/ +#define USE_LV_LIST 1 + +/*Drop down list (dependencies: lv_page, lv_label)*/ +#define USE_LV_DDLIST 1 #if USE_LV_DDLIST != 0 #define LV_DDLIST_ANIM_TIME 100 /*DDL open/close animation in milliseconds (0: disable animation)*/ #endif -/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/ -#define USE_LV_WIN 1 +/*Bar (dependencies: lv_bar)*/ +#define USE_LV_SLIDER 1 -/*Message box (dependencies: lv_rect, lv_btn, lv_label)*/ -#define USE_LV_MBOX 1 -#if USE_LV_MBOX != 0 -#define LV_MBOX_ANIM_TIME 250 /*How fast animate out the message box in auto close. 0: no animation [ms]*/ -#endif - -/*Gauge (dependencies: lv_rect, lv_label, lv_line, misc: trigo)*/ -#define USE_LV_GAUGE 1 /*================== * LV APP SETTINGS diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index e6bf15669..761b6c52d 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -42,18 +42,16 @@ typedef enum /********************** * STATIC PROTOTYPES **********************/ -#if USE_LV_RECT != 0 -static void lv_draw_cont_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); -static void lv_draw_cont_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); -static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); -static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); -static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); +static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static void lv_draw_cont_shadow_bottom(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style); static void lv_draw_cont_shadow_full_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style, const opa_t * map); static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h); -#endif /*USE_LV_RECT != 0*/ #if USE_LV_TRIANGLE != 0 @@ -84,7 +82,6 @@ static void (*map_fp)(const area_t * cords_p, const area_t * mask_p, const color * GLOBAL FUNCTIONS **********************/ -#if USE_LV_RECT != 0 /** * Draw a rectangle * @param cords_p the coordinates of the rectangle @@ -96,29 +93,27 @@ void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_ if(area_get_height(cords_p) < 1 || area_get_width(cords_p) < 1) return; if(style_p->swidth != 0) { - lv_draw_cont_shadow(cords_p, mask_p, style_p); + lv_draw_rect_shadow(cords_p, mask_p, style_p); } if(style_p->empty == 0){ - lv_draw_cont_main_mid(cords_p, mask_p, style_p); + lv_draw_rect_main_mid(cords_p, mask_p, style_p); if(style_p->radius != 0) { - lv_draw_cont_main_corner(cords_p, mask_p, style_p); + lv_draw_rect_main_corner(cords_p, mask_p, style_p); } } if(style_p->bwidth != 0) { - lv_draw_cont_border_straight(cords_p, mask_p, style_p); + lv_draw_rect_border_straight(cords_p, mask_p, style_p); if(style_p->radius != 0) { - lv_draw_cont_border_corner(cords_p, mask_p, style_p); + lv_draw_rect_border_corner(cords_p, mask_p, style_p); } } - } -#endif /*USE_LV_RECT != 0*/ -#if USE_LV_TRIANGLE != 0 +#if USE_LV_TRIANGE != 0 /** * * @param points pointer to an array with 3 points @@ -224,10 +219,8 @@ void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t col } while(edge2.y == y2_tmp); } } - #endif -#if USE_LV_LABEL != 0 /** * Write a text * @param cords_p coordinates of the label @@ -326,9 +319,6 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ } } -#endif /* USE_LV_LABEL != 0*/ - -#if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 /** * Draw an image * @param cords_p the coordinates of the image @@ -438,9 +428,6 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, } -#endif /*USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0*/ - -#if USE_LV_LINE != 0 /** * Draw a line * @param p1 first point of the line @@ -567,20 +554,19 @@ void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, fill_fp(&draw_area, mask_p, style->ccolor, style->opa); } } -#endif /*USE_LV_LINE != 0*/ + /********************** * STATIC FUNCTIONS **********************/ -#if USE_LV_RECT != 0 /** * Draw the middle part (rectangular) of a rectangle * @param cords_p the coordinates of the original rectangle * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_cont_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +static void lv_draw_rect_main_mid(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { uint16_t radius = style->radius; @@ -630,7 +616,7 @@ static void lv_draw_cont_main_mid(const area_t * cords_p, const area_t * mask_p, * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_cont_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) +static void lv_draw_rect_main_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { uint16_t radius = style_p->radius; @@ -801,7 +787,7 @@ if(edge_top_area.y1 != mid_top_area.y1) { * @param mask_p the rectangle will be drawn only on this area * @param rects_p pointer to a rectangle style */ -static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) +static void lv_draw_rect_border_straight(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p) { uint16_t radius = style_p->radius; @@ -917,7 +903,7 @@ static void lv_draw_cont_border_straight(const area_t * cords_p, const area_t * * @param rects_p pointer to a rectangle style * @param opa opacity of the rectangle (0..255) */ -static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +static void lv_draw_rect_border_corner(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { uint16_t radius = style->radius; uint16_t bwidth = style->bwidth; @@ -1051,7 +1037,7 @@ static void lv_draw_cont_border_corner(const area_t * cords_p, const area_t * ma * @param rect pointer to rectangle object * @param mask pointer to a mask area (from the design functions) */ -static void lv_draw_cont_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) +static void lv_draw_rect_shadow(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style) { /* If mask is in the middle of cords do not draw shadow*/ cord_t radius = style->radius; @@ -1347,8 +1333,6 @@ static uint16_t lv_draw_cont_radius_corr(uint16_t r, cord_t w, cord_t h) return r; } -#endif /*USE_LV_RECT != 0*/ - #if USE_LV_TRIANGLE != 0 /** diff --git a/lv_draw/lv_draw.h b/lv_draw/lv_draw.h index dac48113d..150ed1fe3 100644 --- a/lv_draw/lv_draw.h +++ b/lv_draw/lv_draw.h @@ -31,9 +31,7 @@ * @param mask_p the rectangle will be drawn only in this mask * @param style_p pointer to a style */ -#if USE_LV_RECT != 0 void lv_draw_rect(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p); -#endif /*Experimental use for 3D modeling*/ @@ -56,10 +54,8 @@ void lv_draw_triangle(const point_t * points, const area_t * mask_p, color_t col * @param txt 0 terminated text to write * @param flags settings for the text from 'txt_flag_t' enum */ -#if USE_LV_LABEL != 0 void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_t * style_p, const char * txt, txt_flag_t flag); -#endif /** * Draw an image @@ -67,10 +63,8 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ * @param mask_p the image will be drawn only in this area * @param map_p pointer to a color_t array which contains the pixels of the image */ -#if USE_LV_IMG != 0 && USE_FSINT != 0 && USE_UFS != 0 void lv_draw_img(const area_t * cords_p, const area_t * mask_p, const lv_style_t * style_p, const char * fn); -#endif /** * Draw a line @@ -79,10 +73,8 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, * @param mask_pthe line will be drawn only on this area * @param style_p pointer to a style */ -#if USE_LV_LINE != 0 void lv_draw_line(const point_t * p1, const point_t * p2, const area_t * mask_p, const lv_style_t * style_p); -#endif /********************** * MACROS diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 52519b2d1..51ab851a3 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -134,7 +134,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = 0; /*Set appearance*/ - new_obj->style_p = lv_style_get(LV_STYLE_PLAIN, NULL); + new_obj->style_p = lv_style_get(LV_STYLE_SCR, NULL); /*Set virtual functions*/ lv_obj_set_signal_f(new_obj, lv_obj_signal); @@ -979,6 +979,7 @@ void lv_obj_refr_ext_size(lv_obj_t * obj) lv_obj_inv(obj); } +#if LV_OBJ_FREE_NUM != 0 /** * Set an application specific number for an object. * It can help to identify objects in the application. @@ -989,6 +990,7 @@ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num) { obj->free_num = free_num; } +#endif #if LV_OBJ_FREE_P != 0 /** @@ -1253,7 +1255,9 @@ lv_style_t * lv_obj_get_style(lv_obj_t * obj) lv_obj_t * par = obj->par; while(par != NULL) { - if(par->style_p != NULL) return par->style_p; + if(par->style_p != NULL) { + if(par->style_p->glass == 0) return par->style_p; + } par = par->par; } } @@ -1393,7 +1397,7 @@ void * lv_obj_get_ext(lv_obj_t * obj) return obj->ext; } - +#if LV_OBJ_FREE_NUM != 0 /** * Get the free number * @param obj pointer to an object @@ -1403,6 +1407,7 @@ uint8_t lv_obj_get_free_num(lv_obj_t * obj) { return obj->free_num; } +#endif #if LV_OBJ_FREE_P != 0 /** @@ -1440,7 +1445,7 @@ static bool lv_obj_design(lv_obj_t * obj, const area_t * mask_p, lv_design_mode uint16_t r = style->radius; - if(r == LV_DRAW_CIRCLE) return false; + if(r == LV_RADIUS_CIRCLE) return false; area_t area_tmp; diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index 518f38207..3caa1adba 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -9,7 +9,6 @@ #include "lv_conf.h" #include "lv_style.h" - /********************* * DEFINES *********************/ @@ -60,9 +59,9 @@ void lv_style_init (void) lv_style_set_ccolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20, 0x20)); lv_style_set_opa(&lv_style_scr, OPA_COVER); - lv_style_set_mcolor(&lv_style_scr, COLOR_WHITE); - lv_style_set_gcolor(&lv_style_scr, COLOR_WHITE); - lv_style_set_bcolor(&lv_style_scr, COLOR_WHITE); + lv_style_set_mcolor(&lv_style_scr, COLOR_WHITE);//MAKE(0xc9, 0xdb, 0xee)); + lv_style_set_gcolor(&lv_style_scr, COLOR_WHITE);//MAKE(0x4d, 0x91, 0xd5)); + lv_style_set_bcolor(&lv_style_scr, COLOR_BLACK); lv_style_set_scolor(&lv_style_scr, COLOR_GRAY); lv_style_set_radius(&lv_style_scr, 0); lv_style_set_bwidth(&lv_style_scr, 0); @@ -73,6 +72,7 @@ void lv_style_init (void) lv_style_set_bopa(&lv_style_scr, OPA_COVER); lv_style_set_empty(&lv_style_scr, false); lv_style_set_stype(&lv_style_scr, LV_STYPE_FULL); + lv_style_scr.glass = 0; lv_style_set_font(&lv_style_scr, font_get(FONT_DEFAULT)); lv_style_set_letter_space(&lv_style_scr, 1 * LV_DOWNSCALE); @@ -83,8 +83,11 @@ void lv_style_init (void) lv_style_set_line_width(&lv_style_scr, 1 * LV_DOWNSCALE); - /*Plain style (by default the same as the screen style)*/ + /*Plain style (by default near the same as the screen style)*/ memcpy(&lv_style_plain, &lv_style_scr, sizeof(lv_style_t)); + lv_style_set_mcolor(&lv_style_plain, COLOR_WHITE); + lv_style_set_gcolor(&lv_style_plain, COLOR_WHITE); + lv_style_set_bcolor(&lv_style_plain, COLOR_WHITE); /*Plain color style*/ memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); @@ -98,7 +101,7 @@ void lv_style_init (void) lv_style_set_mcolor(&lv_style_pretty, COLOR_WHITE); lv_style_set_gcolor(&lv_style_pretty, COLOR_SILVER); lv_style_set_bcolor(&lv_style_pretty, COLOR_MAKE(0x40, 0x40, 0x40)); - lv_style_set_radius(&lv_style_pretty, LV_DPI / 10); + lv_style_set_radius(&lv_style_pretty, LV_DPI / 12); lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 40 >= 1 ? LV_DPI / 40 : 1); lv_style_set_bopa(&lv_style_pretty, OPA_50); @@ -115,6 +118,7 @@ void lv_style_init (void) memcpy(&lv_style_transp, &lv_style_plain, sizeof(lv_style_t)); lv_style_set_empty(&lv_style_transp, true); lv_style_set_bwidth(&lv_style_transp, 0); + lv_style_transp.glass = 1; /*Transparent tight style*/ memcpy(&lv_style_transp_tight, &lv_style_transp, sizeof(lv_style_t)); @@ -128,7 +132,7 @@ void lv_style_init (void) lv_style_set_bcolor(&lv_style_btn_rel, COLOR_MAKE(0x0b, 0x19, 0x28)); lv_style_set_ccolor(&lv_style_btn_rel, COLOR_MAKE(0xff, 0xff, 0xff)); lv_style_set_bwidth(&lv_style_btn_rel, LV_DPI / 40 >= 1 ? LV_DPI / 40 : 1); - lv_style_set_radius(&lv_style_btn_rel, LV_DPI / 10); + lv_style_set_radius(&lv_style_btn_rel, LV_DPI / 12); lv_style_set_bopa(&lv_style_btn_rel, OPA_70); lv_style_set_scolor(&lv_style_btn_rel, COLOR_GRAY); lv_style_set_swidth(&lv_style_btn_rel, 0); diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h index a7eadb67c..4191005cc 100644 --- a/lv_obj/lv_style.h +++ b/lv_obj/lv_style.h @@ -17,7 +17,7 @@ /********************* * DEFINES *********************/ -#define LV_DRAW_CIRCLE (CORD_MAX) /*A very big radius to always draw as circle*/ +#define LV_RADIUS_CIRCLE (CORD_MAX) /*A very big radius to always draw as circle*/ /********************** * TYPEDEFS @@ -41,6 +41,7 @@ typedef struct /*Object level styles*/ color_t ccolor; /*Content color (e.g. text or image re-color )*/ opa_t opa; /*Opacity of the object*/ + uint8_t glass :1; /*1: Do not inherit this style*/ uint8_t empty :1; /*Transparent background (border drawn)*/ uint8_t stype :3; /*Shadow type from 'lv_shadow_type_t'*/ color_t mcolor; /*Main color of background*/ diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index 0198fbe9f..0c1b37d5c 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -18,8 +18,6 @@ /********************* * DEFINES *********************/ -#define LV_BAR_DEF_WIDTH (LV_DPI * 2) -#define LV_BAR_DEF_HEIGHT (LV_DPI / 2) /********************** * TYPEDEFS @@ -77,7 +75,7 @@ lv_obj_t * lv_bar_create(lv_obj_t * par, lv_obj_t * copy) /*Init the new bar object*/ if(copy == NULL) { lv_obj_set_click(new_bar, false); - lv_obj_set_size(new_bar, LV_BAR_DEF_WIDTH, LV_BAR_DEF_HEIGHT); + lv_obj_set_size(new_bar, LV_DPI * 2, LV_DPI / 3); lv_obj_set_style(new_bar, lv_style_get(LV_STYLE_PRETTY, NULL)); lv_bar_set_value(new_bar, ext->act_value); } else { @@ -245,6 +243,9 @@ static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t ancestor_design_f(bar, mask, mode); lv_bar_ext_t * ext = lv_obj_get_ext(bar); + + + lv_style_t * style_indic = lv_bar_get_style_indic(bar); area_t indic_area; area_cpy(&indic_area, &bar->cords); diff --git a/lv_objx/lv_btn.c b/lv_objx/lv_btn.c index 305b7a886..26afc39e5 100644 --- a/lv_objx/lv_btn.c +++ b/lv_objx/lv_btn.c @@ -7,16 +7,16 @@ * INCLUDES *********************/ -#include -#include -#include -#include - +#include "lv_conf.h" #if USE_LV_BTN != 0 -#include -#include "lv_btn.h" +#include "lvgl/lv_obj/lv_obj.h" +#include "misc/gfx/area.h" +#include "misc/gfx/color.h" #include "../lv_draw/lv_draw.h" +#include "lv_btn.h" +#include +#include /********************* * DEFINES diff --git a/lv_objx/lv_btn.h b/lv_objx/lv_btn.h index 365505fdd..81bac4895 100644 --- a/lv_objx/lv_btn.h +++ b/lv_objx/lv_btn.h @@ -13,8 +13,8 @@ #if USE_LV_BTN != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_btn: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#if USE_LV_CONT == 0 +#error "lv_btn: lv_cont is required. Enable it in lv_conf.h (USE_LV_CONT 1) " #endif #include diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index 620e86a0e..4afb1a8ab 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -10,8 +10,8 @@ #if USE_LV_BTNM != 0 #include "lv_btnm.h" -#include "../lv_draw/lv_draw.h" #include "misc/gfx/text.h" +#include "../lv_draw/lv_draw.h" #include "../lv_obj/lv_refr.h" /********************* @@ -26,7 +26,6 @@ /********************** * STATIC PROTOTYPES **********************/ - static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_t mode); static uint8_t lv_btnm_get_width_unit(const char * btn_str); static uint16_t lv_btnm_get_btn_from_point(lv_obj_t * btnm, point_t * p); diff --git a/lv_objx/lv_btnm.h b/lv_objx/lv_btnm.h index 0b3b23881..f5e8de100 100644 --- a/lv_objx/lv_btnm.h +++ b/lv_objx/lv_btnm.h @@ -13,17 +13,7 @@ #include "lv_conf.h" #if USE_LV_BTNM != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_btnm: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_BTN == 0 -#error "lv_btnm: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " -#endif - #include "../lv_obj/lv_obj.h" -#include #include "lv_label.h" #include "lv_btn.h" diff --git a/lv_objx/lv_cb.c b/lv_objx/lv_cb.c index bd9e932af..9a46a6fac 100644 --- a/lv_objx/lv_cb.c +++ b/lv_objx/lv_cb.c @@ -73,7 +73,7 @@ lv_obj_t * lv_cb_create(lv_obj_t * par, lv_obj_t * copy) lv_btn_set_tgl(new_cb, true); lv_obj_set_click(ext->bullet, false); - lv_btn_set_styles(ext->bullet, lv_style_get(LV_STYLE_BTN_REL, NULL), lv_style_get(LV_STYLE_BTN_PR, NULL), + lv_btn_set_styles(ext->bullet, lv_style_get(LV_STYLE_PRETTY, NULL), lv_style_get(LV_STYLE_PRETTY_COLOR, NULL), lv_style_get(LV_STYLE_BTN_TREL, NULL), lv_style_get(LV_STYLE_BTN_TPR, NULL), lv_style_get(LV_STYLE_BTN_INA, NULL)); @@ -88,8 +88,6 @@ lv_obj_t * lv_cb_create(lv_obj_t * par, lv_obj_t * copy) /*Refresh the style with new signal function*/ lv_obj_refr_style(new_cb); } - - lv_obj_align_us(new_cb, NULL, LV_ALIGN_CENTER, 0, 0); return new_cb; } diff --git a/lv_objx/lv_cb.h b/lv_objx/lv_cb.h index 841d9a388..307737b58 100644 --- a/lv_objx/lv_cb.h +++ b/lv_objx/lv_cb.h @@ -11,9 +11,10 @@ *********************/ #include "lv_conf.h" #if USE_LV_CB != 0 + /*Testing of dependencies*/ #if USE_LV_BTN == 0 -#error "lv_cb: lv_rect is required. Enable it in lv_conf.h (USE_LV_BTN 1) " +#error "lv_cb: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " #endif #if USE_LV_LABEL == 0 diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index e83f95853..37aff871a 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -499,7 +499,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const area_t * mask) style_point.bwidth = 0; style_point.empty = 0; - style_point.radius = LV_DRAW_CIRCLE; + style_point.radius = LV_RADIUS_CIRCLE; style_point.opa = (uint16_t)((uint16_t)style->opa * ext->dl_opa) >> 8; style_point.radius = ext->dl_width; diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index 87968dd0c..aaf3b5fd0 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -3,8 +3,8 @@ * */ -#ifndef LV_CHARTBG_H -#define LV_CHARTBG_H +#ifndef LV_CHART_H +#define LV_CHART_H /********************* * INCLUDES @@ -12,17 +12,7 @@ #include "lv_conf.h" #if USE_LV_CHART != 0 -/*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_chart: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_LINE == 0 -#error "lv_chart: lv_line is required. Enable it in lv_conf.h (USE_LV_LINE 1) " -#endif - #include "../lv_obj/lv_obj.h" -#include #include "lv_line.h" /********************* diff --git a/lv_objx/lv_cont.c b/lv_objx/lv_cont.c index c9387ca4e..0220d896d 100644 --- a/lv_objx/lv_cont.c +++ b/lv_objx/lv_cont.c @@ -8,7 +8,7 @@ *********************/ #include "lv_conf.h" -#if USE_LV_RECT != 0 +#if USE_LV_CONT != 0 #include #include @@ -19,8 +19,6 @@ #include "../lv_draw/lv_draw_vbasic.h" #include "misc/gfx/area.h" -#include "misc/mem/dyn_mem.h" -#include "misc/mem/linked_list.h" #include "misc/gfx/color.h" #include "misc/math/math_base.h" diff --git a/lv_objx/lv_cont.h b/lv_objx/lv_cont.h index 2cf5c4f7f..0166ad7c3 100644 --- a/lv_objx/lv_cont.h +++ b/lv_objx/lv_cont.h @@ -10,10 +10,9 @@ * INCLUDES *********************/ #include "lv_conf.h" -#if USE_LV_RECT != 0 +#if USE_LV_CONT != 0 #include "../lv_obj/lv_obj.h" -#include "../lv_obj/lv_dispi.h" /********************* * DEFINES diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index eec4ba536..db8b04e63 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -17,7 +17,9 @@ /********************* * DEFINES *********************/ - +#ifndef LV_DDLIST_ANIM_TIME +#define LV_DDLIST_ANIM_TIME 100 /*ms*/ +#endif /********************** * TYPEDEFS **********************/ diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 8be44330b..11aa06590 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -11,6 +11,16 @@ *********************/ #include "lv_conf.h" #if USE_LV_DDLIST != 0 + +/*Testing of dependencies*/ +#if USE_LV_PAGE == 0 +#error "lv_ddlist: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " +#endif + +#if USE_LV_LABEL == 0 +#error "lv_ddlist: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " +#endif + #include "../lv_obj/lv_obj.h" #include "../lv_objx/lv_page.h" #include "../lv_objx/lv_label.h" diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index 202bb8b8a..ae8bda8c0 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -11,12 +11,12 @@ #if USE_LV_GAUGE != 0 #include "lv_gauge.h" -#include -#include #include "../lv_draw/lv_draw.h" #include "misc/gfx/text.h" #include "misc/math/trigo.h" #include "misc/math/math_base.h" +#include +#include /********************* * DEFINES @@ -434,7 +434,7 @@ static void lv_gauge_draw_needle(lv_obj_t * gauge, const area_t * mask, lv_style lv_style_get(LV_STYLE_PLAIN, &style_neddle_mid); style_neddle_mid.mcolor = style->bcolor; style_neddle_mid.gcolor = style->bcolor; - style_neddle_mid.radius = LV_DRAW_CIRCLE; + style_neddle_mid.radius = LV_RADIUS_CIRCLE; area_t nm_cord; nm_cord.x1 = x_ofs - style->opad; diff --git a/lv_objx/lv_gauge.h b/lv_objx/lv_gauge.h index 505ccfe04..e333b961e 100644 --- a/lv_objx/lv_gauge.h +++ b/lv_objx/lv_gauge.h @@ -14,16 +14,8 @@ #if USE_LV_GAUGE != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_gauge: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " -#endif - -#if USE_LV_LABEL == 0 -#error "lv_gauge: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) " -#endif - -#if USE_LV_RECT == 0 -#error "lv_gauge: lv_line is required. Enable it in lv_conf.h (USE_LV_LINE 1) " +#if USE_LV_LMETER == 0 +#error "lv_gauge: lv_lmeter is required. Enable it in lv_conf.h (USE_LV_LMETER 1) " #endif #if USE_TRIGO == 0 diff --git a/lv_objx/lv_img.h b/lv_objx/lv_img.h index 4bf3e55ea..a972c7d25 100644 --- a/lv_objx/lv_img.h +++ b/lv_objx/lv_img.h @@ -24,7 +24,11 @@ #include "../lv_obj/lv_obj.h" #include "misc/fs/fsint.h" -#if LV_IMG_ENABLE_SYMBOLS +#ifndef LV_IMG_ENABLE_SYMBOLS +#define LV_IMG_ENABLE_SYMBOLS 0 +#endif + +#if LV_IMG_ENABLE_SYMBOLS != 0 #include "lv_label.h" #include "misc/gfx/fonts/symbol_def.h" #endif diff --git a/lv_objx/lv_line.c b/lv_objx/lv_line.c index 870fc185d..556416ace 100644 --- a/lv_objx/lv_line.c +++ b/lv_objx/lv_line.c @@ -10,13 +10,8 @@ #if USE_LV_LINE != 0 #include "lv_line.h" -#include "../lv_draw/lv_draw_vbasic.h" -#include "../lv_draw/lv_draw_rbasic.h" #include "../lv_draw/lv_draw.h" -#include -#include -#include -#include +#include "misc/math/math_base.h" #include #include #include diff --git a/lv_objx/lv_lmeter.c b/lv_objx/lv_lmeter.c index 7dd3b5435..ca5feb3f0 100644 --- a/lv_objx/lv_lmeter.c +++ b/lv_objx/lv_lmeter.c @@ -3,12 +3,6 @@ * */ -/*Search an replace: line meter -> object normal name with lower case (e.g. button, label etc.) - * lmeter -> object short name with lower case(e.g. btn, label etc) - * LMETER -> object short name with upper case (e.g. BTN, LABEL etc.) - * - */ - /********************* * INCLUDES *********************/ diff --git a/lv_objx/lv_lmeter.h b/lv_objx/lv_lmeter.h index 52669b062..da7739312 100644 --- a/lv_objx/lv_lmeter.h +++ b/lv_objx/lv_lmeter.h @@ -3,13 +3,6 @@ * */ - -/*Search an replace: line meter -> object normal name with lower case (e.g. button, label etc.) - * lmeter -> object short name with lower case(e.g. btn, label etc) - * LMETER -> object short name with upper case (e.g. BTN, LABEL etc.) - * - */ - #ifndef LV_LMETER_H #define LV_LMETER_H @@ -17,8 +10,19 @@ * INCLUDES *********************/ #include "lv_conf.h" +#include "misc_conf.h" #if USE_LV_LMETER != 0 +/*Testing of dependencies*/ +#if USE_LV_BAR == 0 +#error "lv_lmeter: lv_bar is required. Enable it in lv_conf.h (USE_LV_BAR 1) " +#endif + +#if USE_TRIGO == 0 +#error "lv_lmeter: trigo is required. Enable it in misc_conf.h (USE_TRIGO 1) " +#endif + + #include "../lv_obj/lv_obj.h" #include "lv_bar.h" diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 60af1e7ca..91cb4c0a5 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -13,8 +13,8 @@ #if USE_LV_MBOX != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_mbox: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#if USE_LV_CONT == 0 +#error "lv_mbox: lv_cont is required. Enable it in lv_conf.h (USE_LV_CONT 1) " #endif #if USE_LV_BTN == 0 diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 07feb0354..c403bb0f2 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -73,7 +73,7 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) ext->sbh_draw = 0; ext->sbv_draw = 0; ext->style_sb = lv_style_get(LV_STYLE_PRETTY, NULL); - ext->sb_width = LV_DPI / 6; + ext->sb_width = LV_DPI / 8; ext->sb_mode = LV_PAGE_SB_MODE_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_page); diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index ca89425a0..6b8cc163e 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -13,12 +13,13 @@ #if USE_LV_PAGE != 0 /*Testing of dependencies*/ -#if USE_LV_RECT == 0 -#error "lv_page: lv_rect is required. Enable it in lv_conf.h (USE_LV_RECT 1) " +#if USE_LV_CONT == 0 +#error "lv_page: lv_cont is required. Enable it in lv_conf.h (USE_LV_CONT 1) " #endif #include "../lv_obj/lv_obj.h" -#include +#include "lvgl/lv_objx/lv_cont.h" +#include "../lv_obj/lv_dispi.h" /********************* * DEFINES diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 42855f8af..02e982793 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -65,7 +65,7 @@ lv_obj_t * lv_win_create(lv_obj_t * par, lv_obj_t * copy) ext->style_header = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); ext->style_cbtn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); ext->style_cbtn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); - ext->cbtn_size = (3 * LV_DPI) / 4; + ext->cbtn_size = ( LV_DPI) / 2; /*Init the new window object*/ if(copy == NULL) { @@ -410,7 +410,7 @@ static void lv_win_realign(lv_obj_t * win) if(ext->page == NULL || ext->btnh == NULL || ext->header == NULL || ext->title == NULL) return; lv_obj_t * cbtn; - /*Refresh the style of all control buttons*/ + /*Refresh the size of all control buttons*/ cbtn = lv_obj_get_child(ext->btnh, NULL); while(cbtn != NULL) { lv_obj_set_size(cbtn, ext->cbtn_size, ext->cbtn_size); From 9edaf13c6813d5786b38c0b1a26c16020b757e51 Mon Sep 17 00:00:00 2001 From: Gabor Date: Fri, 28 Apr 2017 16:12:35 +0200 Subject: [PATCH 38/53] minor updates during tests --- lv_app/lv_app.c | 61 ++-- lv_app/lv_app_util/lv_app_fsel.c | 38 +- lv_app/lv_app_util/lv_app_fsel.h | 2 +- lv_app/lv_app_util/lv_app_kb.c | 58 +-- lv_app/lv_app_util/lv_app_kb.h | 1 + lv_appx/lv_app_example.c | 2 +- lv_appx/lv_app_files.c | 30 +- lv_appx/lv_app_phantom.c | 143 ++++++++ lv_appx/lv_app_phantom.h | 42 +++ lv_appx/lv_app_sysmon.c | 53 +-- lv_appx/lv_app_terminal.c | 16 +- lv_appx/lv_app_terminal.h | 3 +- lv_draw/lv_draw.c | 1 - lv_obj/lv_obj.c | 2 +- lv_obj/lv_obj.h | 2 +- lv_obj/lv_style.c | 588 ++++--------------------------- lv_obj/lv_style.h | 4 +- lv_objx/lv_bar.c | 2 - lv_objx/lv_btnm.c | 1 - lv_objx/lv_cb.h | 6 + lv_objx/lv_chart.c | 2 +- lv_objx/lv_chart.h | 3 +- lv_objx/lv_cont.h | 4 +- lv_objx/lv_ddlist.c | 6 +- lv_objx/lv_ddlist.h | 2 +- lv_objx/lv_gauge.c | 11 +- lv_objx/lv_img.c | 1 + lv_objx/lv_label.h | 4 +- lv_objx/lv_list.c | 2 +- lv_objx/lv_list.h | 6 +- lv_objx/lv_ta.c | 8 +- lv_objx/lv_win.c | 10 +- lv_objx/lv_win.h | 12 +- lvgl.h | 2 +- 34 files changed, 458 insertions(+), 670 deletions(-) create mode 100644 lv_appx/lv_app_phantom.c create mode 100644 lv_appx/lv_app_phantom.h diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 1262dcf22..87f6e8e1b 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -19,6 +19,7 @@ #include "../lv_appx/lv_app_example.h" +#include "../lv_appx/lv_app_phantom.h" #include "../lv_appx/lv_app_sysmon.h" #include "../lv_appx/lv_app_terminal.h" #include "../lv_appx/lv_app_files.h" @@ -77,7 +78,6 @@ static lv_obj_t * app_scr; /*Screen of the applications*/ #if LV_APP_DESKTOP != 0 static lv_obj_t * menuh; /*Holder of timg_bubbleshe menu on the top*/ static lv_obj_t * app_btn; /*The "Apps" button on the menu*/ -//static lv_obj_t * sys_apph; /*Holder of the system app. buttons*/ static lv_obj_t * sc_page; /*A page for the shortcuts */ #endif @@ -124,6 +124,12 @@ void lv_app_init(void) *dsc = lv_app_example_init(); #endif +#if USE_LV_APP_PHANTOM != 0 + dsc = ll_ins_head(&app_dsc_ll); + *dsc = lv_app_phantom_init(); +#endif + + #if USE_LV_APP_SYSMON != 0 dsc = ll_ins_head(&app_dsc_ll); *dsc = lv_app_sysmon_init(); @@ -185,7 +191,7 @@ void lv_app_close(lv_app_inst_t * app) lv_app_con_del(app, NULL); lv_app_con_del(NULL, app); - app->dsc->app_close(app); + if(app->dsc->app_close != NULL) app->dsc->app_close(app); memset(app->app_data, 0, app->dsc->app_data_size); dm_free(app->app_data); @@ -203,6 +209,8 @@ void lv_app_close(lv_app_inst_t * app) lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) { + if(app->dsc->sc_open == NULL) return NULL; + /*Create a basic shortcut*/ #if LV_APP_DESKTOP != 0 app->sc = lv_btn_create(sc_page, NULL); @@ -254,6 +262,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) void lv_app_sc_close(lv_app_inst_t * app) { if(app->sc == NULL) return; + if(app->dsc->sc_close != NULL) app->dsc->sc_close(app); lv_obj_del(app->sc); app->sc = NULL; app->sc_title = NULL; @@ -275,22 +284,24 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) app_list = NULL; } + if(app->dsc->win_open == NULL) return NULL; + app->win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_free_p(app->win, app); lv_obj_set_style(lv_win_get_header(app->win), &app_style.win_header); lv_win_set_title(app->win, app->dsc->name); - - lv_win_set_style_cbtn(app->win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); + lv_page_set_sb_mode(lv_win_get_page(app->win), LV_PAGE_SB_MODE_ON); + lv_win_set_styles_cbtn(app->win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); if(app->dsc->conf_open != NULL) { - lv_win_add_ctrl_btn(app->win, SYMBOL_SETUP, lv_app_win_conf_action); + lv_win_add_cbtn(app->win, SYMBOL_SETUP, lv_app_win_conf_action); } - lv_win_add_ctrl_btn(app->win, SYMBOL_DOWN, lv_app_win_minim_action); - lv_win_add_ctrl_btn(app->win, SYMBOL_CLOSE,lv_app_win_close_action); + lv_win_add_cbtn(app->win, SYMBOL_DOWN, lv_app_win_minim_action); + lv_win_add_cbtn(app->win, SYMBOL_CLOSE,lv_app_win_close_action); app->win_data = dm_alloc(app->dsc->win_data_size); - app->dsc->win_open(app, app->win); + app->dsc->win_open(app, app->win); return app->win; } @@ -303,7 +314,9 @@ void lv_app_win_close(lv_app_inst_t * app) { if(app->win == NULL) return; - lv_app_kb_close(false); + lv_app_kb_close(false); + + if(app->dsc->win_close != NULL) app->dsc->win_close(app); lv_obj_del(app->win); app->win = NULL; @@ -516,16 +529,6 @@ static void lv_app_init_desktop(void) lv_label_set_text(app_label, "Apps"); lv_obj_set_pos(app_btn, 0, 0); lv_obj_set_pos(menuh, 0, 0); -/* - sys_apph = lv_cont_create(menuh, NULL); - lv_cont_set_layout(sys_apph, LV_CONT_LAYOUT_ROW_M); - lv_cont_set_fit(sys_apph, true, false); - lv_obj_set_style(sys_apph, lv_rects_get(LV_RECTS_TRANSP, NULL)); - lv_obj_t * clock = lv_label_create(sys_apph, NULL); - lv_obj_set_style(clock, &app_style.menu_btn_label); - lv_label_set_text(clock, "20:17"); - - lv_obj_align(sys_apph, NULL, LV_ALIGN_IN_RIGHT_MID, 0, 0);*/ /*Shortcut area*/ sc_page = lv_page_create(lv_scr_act(), NULL); @@ -736,7 +739,7 @@ static lv_action_res_t lv_app_sc_lpr_action(lv_obj_t * sc, lv_dispi_t * dispi) */ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(close_btn); + lv_obj_t * win = lv_win_get_from_cbtn(close_btn); lv_app_inst_t * app = lv_obj_get_free_p(win); lv_app_kb_close(false); @@ -771,7 +774,7 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t */ static lv_action_res_t lv_app_win_minim_action(lv_obj_t * minim_btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(minim_btn); + lv_obj_t * win = lv_win_get_from_cbtn(minim_btn); lv_app_inst_t * app = lv_obj_get_free_p(win); lv_app_kb_close(false); @@ -797,7 +800,7 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d app_list = NULL; } - lv_obj_t * win = lv_win_get_from_ctrl_btn(set_btn); + lv_obj_t * win = lv_win_get_from_cbtn(set_btn); lv_app_inst_t * app = lv_obj_get_free_p(win); app->conf_win = lv_win_create(lv_scr_act(), NULL); @@ -805,9 +808,9 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d char buf[256]; sprintf(buf, "%s settings", app->dsc->name); - lv_win_add_ctrl_btn(app->conf_win, SYMBOL_CLOSE ,lv_win_close_action); + lv_win_add_cbtn(app->conf_win, SYMBOL_CLOSE ,lv_win_close_action); lv_win_set_title(app->conf_win, buf); - lv_win_set_style_cbtn(app->conf_win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); + lv_win_set_styles_cbtn(app->conf_win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); lv_obj_t * scrl = lv_page_get_scrl(lv_win_get_page(app->conf_win)); lv_cont_set_layout(scrl, LV_CONT_LAYOUT_COL_L); @@ -840,8 +843,6 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) lv_obj_get_cords(app->sc, &cords); } - - /*Temporally set a simpler style for the window during the animation*/ lv_obj_t * win_page = lv_win_get_page(app->win); lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); @@ -917,12 +918,6 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) lv_obj_t * win_page = lv_win_get_page(app->win); lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); - /*Hide some elements to speed up the animation*/ - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); - lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); - lv_obj_set_hidden(lv_page_get_scrl(win_page), true); - - /*Hide some elements to speed up the animation*/ lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->btnh, true); lv_obj_set_hidden(((lv_win_ext_t *)app->win->ext)->title, true); @@ -981,6 +976,8 @@ static void lv_app_win_open_anim_cb(lv_obj_t * app_win) lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->btnh, false); lv_obj_set_hidden(((lv_win_ext_t *)app_win->ext)->title, false); lv_obj_set_hidden(lv_page_get_scrl(win_page), false); + + lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_AUTO); } /** diff --git a/lv_app/lv_app_util/lv_app_fsel.c b/lv_app/lv_app_util/lv_app_fsel.c index d8246b5d2..0594613d0 100644 --- a/lv_app/lv_app_util/lv_app_fsel.c +++ b/lv_app/lv_app_util/lv_app_fsel.c @@ -47,6 +47,7 @@ static lv_obj_t * fsel_win; static lv_obj_t * fsel_list; static void * fsel_param; static void (*fsel_ok_action)(void *, const char *); +static lv_style_t style_btn_symbol; /********************** * MACROS @@ -61,7 +62,8 @@ static void (*fsel_ok_action)(void *, const char *); */ void lv_app_fsel_init(void) { - //TODO lv_lists_get(LV_LISTS_TRANSP, &fsel_lists); + lv_style_get(LV_STYLE_BTN_REL, &style_btn_symbol); + style_btn_symbol.font = font_get(LV_IMG_DEF_SYMBOL_FONT); } /** @@ -90,11 +92,14 @@ void lv_app_fsel_open(const char * path, const char * filter, void * param, void /*Check filter: NULL and "" mean no filtering*/ if(fsel_filter == NULL) fsel_filter = ""; + lv_app_style_t * app_style = lv_app_style_get(); + /*Create a window for the File selector*/ fsel_win = lv_win_create(lv_scr_act(), NULL); lv_obj_set_size(fsel_win, LV_HOR_RES, LV_VER_RES); + lv_win_set_styles_cbtn(fsel_win, &app_style->win_cbtn_rel, &app_style->win_cbtn_pr); - lv_win_add_ctrl_btn(fsel_win, "U:/icon_close", fsel_close_action); + lv_win_add_cbtn(fsel_win, SYMBOL_CLOSE, fsel_close_action); fsel_refr(); /*Refresh the list*/ @@ -138,31 +143,32 @@ static void fsel_refr(void) /*Create a new list*/ fsel_list = lv_list_create(fsel_win, NULL); lv_obj_set_width(fsel_list, lv_win_get_width(fsel_win)); - //TODO lv_obj_set_style(fsel_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); + lv_list_set_style_img(fsel_list, &style_btn_symbol); + lv_obj_set_style(lv_page_get_scrl(fsel_list), lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_drag_parent(fsel_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(fsel_list), true); lv_cont_set_fit(fsel_list, false, true); fs_res_t res = FS_RES_OK; + lv_obj_t * liste; /*At empty path show the drivers */ if(fsel_path[0] == '\0') { char drv[16]; char buf[2]; - lv_obj_t * liste; fs_get_letters(drv); uint8_t i; for(i = 0; drv[i] != '\0'; i++) { buf[0] = drv[i]; buf[1] = '\0'; - liste = lv_list_add(fsel_list, "U:/icon_driver", buf, fsel_drv_action); + liste = lv_list_add(fsel_list, SYMBOL_DRIVE, buf, fsel_drv_action); /*Add long press action to choose the driver as a folder*/ if(fsel_filter[0] == '/') lv_btn_set_lpr_action(liste, fsel_drv_lpr_action); } } /*List the files/folders with fs interface*/ else { - lv_list_add(fsel_list, "U:/icon_up", "Up", fsel_up_action); + liste = lv_list_add(fsel_list, SYMBOL_UP, "Up", fsel_up_action); fs_readdir_t rd; res = fs_readdir_init(&rd, fsel_path); @@ -173,7 +179,7 @@ static void fsel_refr(void) /*At not first page add prev. page button */ if(fsel_file_cnt != 0) { - lv_list_add(fsel_list, "U:/icon_left", "Previous page", fsel_prev_action); + liste = lv_list_add(fsel_list, SYMBOL_LEFT, "Previous page", fsel_prev_action); } char fn[LV_APP_FSEL_FN_MAX_LEN]; @@ -182,7 +188,7 @@ static void fsel_refr(void) uint16_t file_cnt = 0; while(file_cnt <= fsel_file_cnt) { res = fs_readdir(&rd, fn); - if(res != FS_RES_OK || fn[0] == '\0'){ + if(res != FS_RES_OK){ lv_app_notice_add("Can not read the path\nin File selector"); return; } @@ -193,7 +199,7 @@ static void fsel_refr(void) while(res == FS_RES_OK && fn[0] != '\0') { if(fn[0] == '/') { /*Add a folder*/ lv_obj_t * liste; - liste = lv_list_add(fsel_list, "U:/icon_folder", &fn[1], fsel_folder_action); + liste = lv_list_add(fsel_list, SYMBOL_FOLDER, &fn[1], fsel_folder_action); /*Add long press action to choose a folder*/ if(fsel_filter[0] == '/') lv_btn_set_lpr_action(liste, fsel_folder_lpr_action); @@ -204,7 +210,7 @@ static void fsel_refr(void) else if(fsel_filter[0] == '\0' || /*No filtering or ...*/ (strcmp(fs_get_ext(fn), fsel_filter) == 0 && /*.. the filter matches*/ fsel_filter[0] != '/')) { - lv_list_add(fsel_list, "U:/icon_file", fn, fsel_file_action); + liste = lv_list_add(fsel_list, SYMBOL_FILE, fn, fsel_file_action); fsel_file_cnt ++; file_cnt ++; } @@ -214,7 +220,7 @@ static void fsel_refr(void) /*Show only LV_APP_FSEL_MAX_FILE elements and add a Next page button*/ if(fsel_file_cnt != 0 && fsel_file_cnt % LV_APP_FSEL_PAGE_SIZE == 0) { - lv_list_add(fsel_list, "U:/icon_right", "Next page", fsel_next_action); + liste = lv_list_add(fsel_list, SYMBOL_RIGHT, "Next page", fsel_next_action); break; } } @@ -297,7 +303,7 @@ static lv_action_res_t fsel_prev_action(lv_obj_t * prev, lv_dispi_t * dispi) */ static lv_action_res_t fsel_drv_action(lv_obj_t * drv, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s:", lv_list_element_get_txt(drv)); + sprintf(fsel_path, "%s:", lv_list_get_element_text(drv)); fsel_file_cnt = 0; fsel_refr(); return LV_ACTION_RES_INV; @@ -311,7 +317,7 @@ static lv_action_res_t fsel_drv_action(lv_obj_t * drv, lv_dispi_t * dispi) */ static lv_action_res_t fsel_drv_lpr_action(lv_obj_t * drv, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s:", lv_list_element_get_txt(drv)); + sprintf(fsel_path, "%s:", lv_list_get_element_text(drv)); if(fsel_ok_action != NULL) { fsel_ok_action(fsel_param, fsel_path); @@ -330,7 +336,7 @@ static lv_action_res_t fsel_drv_lpr_action(lv_obj_t * drv, lv_dispi_t * dispi) */ static lv_action_res_t fsel_folder_action(lv_obj_t * folder, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s/%s", fsel_path, lv_list_element_get_txt(folder)); + sprintf(fsel_path, "%s/%s", fsel_path, lv_list_get_element_text(folder)); fsel_file_cnt = 0; fsel_refr(); return LV_ACTION_RES_INV; @@ -344,7 +350,7 @@ static lv_action_res_t fsel_folder_action(lv_obj_t * folder, lv_dispi_t * dispi) */ static lv_action_res_t fsel_folder_lpr_action(lv_obj_t * folder, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s/%s", fsel_path, lv_list_element_get_txt(folder)); + sprintf(fsel_path, "%s/%s", fsel_path, lv_list_get_element_text(folder)); if(fsel_ok_action != NULL) { fsel_ok_action(fsel_param, fsel_path); @@ -363,7 +369,7 @@ static lv_action_res_t fsel_folder_lpr_action(lv_obj_t * folder, lv_dispi_t * di */ static lv_action_res_t fsel_file_action(lv_obj_t * file, lv_dispi_t * dispi) { - sprintf(fsel_path, "%s/%s", fsel_path, lv_list_element_get_txt(file)); + sprintf(fsel_path, "%s/%s", fsel_path, lv_list_get_element_text(file)); if(fsel_ok_action != NULL) { fsel_ok_action(fsel_param, fsel_path); diff --git a/lv_app/lv_app_util/lv_app_fsel.h b/lv_app/lv_app_util/lv_app_fsel.h index 684afc10b..4c9be142a 100644 --- a/lv_app/lv_app_util/lv_app_fsel.h +++ b/lv_app/lv_app_util/lv_app_fsel.h @@ -35,7 +35,7 @@ void lv_app_fsel_init(void); * @param filter show only files with a specific extension, e.g. "wav". * "/" means filter to folders. * @param param a free parameter which will be added to 'ok_action' - * @param ok_action an action to call when a file or folder is chosen + * @param ok_action an action to call when a file or folder is chosen (give 'param' and the path as parameters) */ void lv_app_fsel_open(const char * path, const char * filter, void * param, void (*ok_action)(void *, const char *)); diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 5088c0e74..c666ce42d 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -63,6 +63,7 @@ static cord_t kb_ta_ori_size; static uint8_t kb_mode; static void (*kb_close_action)(lv_obj_t *); static void (*kb_ok_action)(lv_obj_t *); +static lv_style_t style_bg; static lv_style_t style_btn_rel; static lv_style_t style_btn_pr; /********************** @@ -78,8 +79,16 @@ static lv_style_t style_btn_pr; */ void lv_app_kb_init(void) { + lv_style_get(LV_STYLE_PLAIN, &style_bg); + style_bg.hpad = 0; + style_bg.vpad = 0; + style_bg.opad = 0; lv_style_get(LV_STYLE_BTN_REL, &style_btn_rel); + style_btn_rel.radius = 0; + style_btn_rel.bwidth = 1 * LV_DOWNSCALE; lv_style_get(LV_STYLE_BTN_PR, &style_btn_pr); + style_btn_pr.radius = 0; + style_btn_pr.bwidth = 1 * LV_DOWNSCALE; } /** @@ -104,6 +113,7 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t /*Create a button matrix for the keyboard */ kb_btnm = lv_btnm_create(lv_scr_act(), NULL); + lv_obj_set_style(kb_btnm, &style_bg); lv_obj_set_size(kb_btnm, LV_HOR_RES, LV_VER_RES / 2); lv_obj_align(kb_btnm, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); lv_btnm_set_action(kb_btnm, lv_app_kb_action); @@ -119,25 +129,29 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t } lv_btnm_set_styles_btn(kb_btnm, &style_btn_rel, &style_btn_pr); - /*Reduce the size of the window and align it to the top*/ - kb_win = lv_app_win_get_from_obj(kb_ta); - lv_obj_set_height(kb_win, LV_VER_RES / 2); - lv_obj_set_y(kb_win, 0); + kb_win = NULL; + kb_ta_ori_size = 0; + if(mode & LV_APP_KB_MODE_WIN_RESIZE) { + /*Reduce the size of the window and align it to the top*/ + kb_win = lv_app_win_get_from_obj(kb_ta); + lv_obj_set_height(kb_win, LV_VER_RES / 2); + lv_obj_set_y(kb_win, 0); - /*If the text area is higher then the new size of the window reduce its size too*/ - cord_t win_h = lv_obj_get_height(kb_win); - kb_ta_ori_size = lv_obj_get_height(kb_ta); - if(lv_obj_get_height(kb_ta) > win_h) { - lv_obj_set_height(kb_ta, win_h); + /*If the text area is higher then the new size of the window reduce its size too*/ + cord_t cont_h = lv_obj_get_height(kb_win) - lv_obj_get_height(lv_win_get_header(kb_win)); + kb_ta_ori_size = lv_obj_get_height(kb_ta); + if(lv_obj_get_height(kb_ta) > cont_h - LV_DPI / 10) { + lv_obj_set_height(kb_ta, cont_h - LV_DPI / 10); + } +#if LV_APP_ANIM_LEVEL != 0 + lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); +#else + lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); +#endif } lv_ta_set_cursor_pos(kb_ta, LV_TA_CUR_LAST); -#if LV_APP_ANIM_LEVEL != 0 - lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); -#else - lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); -#endif } /** @@ -155,11 +169,11 @@ void lv_app_kb_close(bool ok) } /*Reset the modified sizes*/ - - lv_obj_set_height(kb_ta, kb_ta_ori_size); - - lv_obj_set_size(kb_win, LV_HOR_RES, LV_VER_RES); - kb_win = NULL; + if((kb_mode & LV_APP_KB_MODE_WIN_RESIZE) && kb_win != NULL) { + lv_obj_set_height(kb_ta, kb_ta_ori_size); + lv_obj_set_size(kb_win, LV_HOR_RES, LV_VER_RES); + kb_win = NULL; + } lv_obj_del(kb_btnm); kb_btnm = NULL; @@ -229,11 +243,13 @@ static lv_action_res_t lv_app_kb_action(lv_obj_t * btnm, uint16_t i) lv_ta_add_text(kb_ta, txt); } + if(kb_mode & LV_APP_KB_MODE_WIN_RESIZE) { #if LV_APP_ANIM_LEVEL != 0 - lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); + lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); #else - lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); + lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); #endif + } return LV_ACTION_RES_OK; } diff --git a/lv_app/lv_app_util/lv_app_kb.h b/lv_app/lv_app_util/lv_app_kb.h index 75afb7f92..a222c2a91 100644 --- a/lv_app/lv_app_util/lv_app_kb.h +++ b/lv_app/lv_app_util/lv_app_kb.h @@ -23,6 +23,7 @@ typedef enum { LV_APP_KB_MODE_TXT = 0x01, LV_APP_KB_MODE_NUM = 0x02, + LV_APP_KB_MODE_WIN_RESIZE = 0x04, }lv_app_kb_mode_t; /********************** diff --git a/lv_appx/lv_app_example.c b/lv_appx/lv_app_example.c index 314bc31fa..fb2a202dd 100644 --- a/lv_appx/lv_app_example.c +++ b/lv_appx/lv_app_example.c @@ -198,7 +198,7 @@ static void my_win_close(lv_app_inst_t * app) static lv_action_res_t ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) { lv_ta_set_text(ta, ""); /*Clear the ta*/ - lv_app_kb_open(ta, LV_APP_KB_MODE_TXT, NULL, kb_ok_action); + lv_app_kb_open(ta, LV_APP_KB_MODE_TXT | LV_APP_KB_MODE_WIN_RESIZE, NULL, kb_ok_action); return LV_ACTION_RES_OK; } diff --git a/lv_appx/lv_app_files.c b/lv_appx/lv_app_files.c index 91c43965b..487cea87f 100644 --- a/lv_appx/lv_app_files.c +++ b/lv_appx/lv_app_files.c @@ -113,6 +113,7 @@ static lv_app_dsc_t my_app_dsc = }; static lv_style_t style_sc_label; +static lv_style_t style_btn_symbol; /********************** @@ -133,6 +134,8 @@ const lv_app_dsc_t * lv_app_files_init(void) memcpy(&style_sc_label, &app_style->sc_rec_rel, sizeof(lv_style_t)); style_sc_label.font = font_get(LV_APP_FONT_LARGE); + lv_style_get(LV_STYLE_BTN_REL, &style_btn_symbol); + style_btn_symbol.font = font_get(LV_IMG_DEF_SYMBOL_FONT); return &my_app_dsc; } @@ -350,7 +353,8 @@ static void win_create_list(lv_app_inst_t * app) /*Create a new list*/ win_data->file_list = lv_list_create(app->win, NULL); lv_obj_set_width(win_data->file_list, lv_win_get_width(app->win)); - //TODO lv_obj_set_style(win_data->file_list, lv_lists_get(LV_LISTS_TRANSP, NULL)); + lv_list_set_style_img(win_data->file_list, &style_btn_symbol); + lv_obj_set_style(lv_page_get_scrl(win_data->file_list), lv_style_get(LV_STYLE_TRANSP_TIGHT, NULL)); lv_obj_set_drag_parent(win_data->file_list, true); lv_obj_set_drag_parent(lv_page_get_scrl(win_data->file_list), true); lv_cont_set_fit(win_data->file_list, false, true); @@ -381,13 +385,13 @@ static void win_load_file_list(lv_app_inst_t * app) for(i = 0; drv[i] != '\0'; i++) { buf[0] = drv[i]; buf[1] = '\0'; - liste = lv_list_add(win_data->file_list, "U:/icon_driver", buf, win_drv_action); + liste = lv_list_add(win_data->file_list, SYMBOL_DRIVE, buf, win_drv_action); lv_obj_set_free_p(liste, app); } } /*List the files/folders with fs interface*/ else { - liste = lv_list_add(win_data->file_list, "U:/icon_up", "Up", win_up_action); + liste = lv_list_add(win_data->file_list, SYMBOL_UP, "Up", win_up_action); lv_obj_set_free_p(liste, app); fs_readdir_t rd; @@ -399,7 +403,7 @@ static void win_load_file_list(lv_app_inst_t * app) /*At not first page add prev. page button */ if(app_data->file_cnt != 0) { - liste = lv_list_add(win_data->file_list, "U:/icon_left", "Previous page", win_prev_action); + liste = lv_list_add(win_data->file_list, SYMBOL_LEFT, "Previous page", win_prev_action); lv_obj_set_free_p(liste, app); } @@ -409,7 +413,7 @@ static void win_load_file_list(lv_app_inst_t * app) uint16_t file_cnt = 0; while(file_cnt <= app_data->file_cnt) { res = fs_readdir(&rd, fn); - if(res != FS_RES_OK || fn[0] == '\0'){ + if(res != FS_RES_OK ){ lv_app_notice_add("Can not read\nthe path in Files"); return; } @@ -420,13 +424,13 @@ static void win_load_file_list(lv_app_inst_t * app) while(res == FS_RES_OK && fn[0] != '\0') { if(fn[0] == '/') { /*Add a folder*/ lv_obj_t * liste; - liste = lv_list_add(win_data->file_list, "U:/icon_folder", &fn[1], win_folder_action); + liste = lv_list_add(win_data->file_list, SYMBOL_FOLDER, &fn[1], win_folder_action); lv_obj_set_free_p(liste, app); app_data->file_cnt ++; } /*Add a file*/ else { - liste = lv_list_add(win_data->file_list, "U:/icon_file", fn, win_file_action); + liste = lv_list_add(win_data->file_list, SYMBOL_FILE, fn, win_file_action); lv_obj_set_free_p(liste, app); app_data->file_cnt ++; } @@ -436,7 +440,7 @@ static void win_load_file_list(lv_app_inst_t * app) /*Show only LV_APP_FSEL_MAX_FILE elements and add a Next page button*/ if(app_data->file_cnt != 0 && app_data->file_cnt % LV_APP_FILES_PAGE_SIZE == 0) { - liste = lv_list_add(win_data->file_list, "U:/icon_right", "Next page", win_next_action); + liste = lv_list_add(win_data->file_list, SYMBOL_RIGHT, "Next page", win_next_action); lv_obj_set_free_p(liste, app); break; } @@ -525,7 +529,7 @@ static lv_action_res_t win_drv_action(lv_obj_t * drv, lv_dispi_t * dispi) { lv_app_inst_t * app = lv_obj_get_free_p(drv); my_app_data_t * app_data = app->app_data; - sprintf(app_data->path, "%s:", lv_list_element_get_txt(drv)); + sprintf(app_data->path, "%s:", lv_list_get_element_text(drv)); app_data->file_cnt = 0; lv_win_set_title(app->win, app_data->path); my_sc_data_t * sc_data = app->sc_data; @@ -549,7 +553,7 @@ static lv_action_res_t win_folder_action(lv_obj_t * folder, lv_dispi_t * dispi) { lv_app_inst_t * app = lv_obj_get_free_p(folder); my_app_data_t * app_data = app->app_data; - sprintf(app_data->path, "%s/%s", app_data->path, lv_list_element_get_txt(folder)); + sprintf(app_data->path, "%s/%s", app_data->path, lv_list_get_element_text(folder)); app_data->file_cnt = 0; lv_win_set_title(app->win, app_data->path); @@ -577,7 +581,7 @@ static lv_action_res_t win_file_action(lv_obj_t * file, lv_dispi_t * dispi) my_app_data_t * app_data = app->app_data; my_win_data_t * win_data = app->win_data; - sprintf(app_data->fn, "%s", lv_list_element_get_txt(file)); + sprintf(app_data->fn, "%s", lv_list_get_element_text(file)); win_create_list(app); @@ -662,9 +666,9 @@ static lv_action_res_t win_send_settings_element_rel_action(lv_obj_t * element, lv_app_notice_add("CRC sending is\nnot supported yet"); } } else if(id == SEND_SETTINGS_CHUNK_SIZE) { - lv_app_kb_open(element, LV_APP_KB_MODE_NUM, send_settings_kb_close_action, send_settings_kb_ok_action); + lv_app_kb_open(element, LV_APP_KB_MODE_NUM | LV_APP_KB_MODE_WIN_RESIZE, send_settings_kb_close_action, send_settings_kb_ok_action); } else if(id == SEND_SETTINGS_CHUNK_DELAY) { - lv_app_kb_open(element, LV_APP_KB_MODE_NUM, send_settings_kb_close_action, send_settings_kb_ok_action); + lv_app_kb_open(element, LV_APP_KB_MODE_NUM | LV_APP_KB_MODE_WIN_RESIZE, send_settings_kb_close_action, send_settings_kb_ok_action); } return LV_ACTION_RES_OK; diff --git a/lv_appx/lv_app_phantom.c b/lv_appx/lv_app_phantom.c new file mode 100644 index 000000000..75e480e48 --- /dev/null +++ b/lv_appx/lv_app_phantom.c @@ -0,0 +1,143 @@ +/** + * @file lv_app_example.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_app_phantom.h" +#if LV_APP_ENABLE != 0 && USE_LV_APP_PHANTOM != 0 + +#include "../lv_app/lv_app_util/lv_app_kb.h" +#include + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/*Application specific data for an instance of this application*/ +typedef struct +{ + void (*com_listen)(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size); +}my_app_data_t; + +/*Application specific data a window of this application*/ +typedef struct +{ + +}my_win_data_t; + +/*Application specific data for a shortcut of this application*/ +typedef struct +{ + lv_obj_t * label; +}my_sc_data_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void my_app_run(lv_app_inst_t * app, void * conf); +static void my_app_close(lv_app_inst_t * app); +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_app_dsc_t my_app_dsc = +{ + .name = "Phantom", + .mode = LV_APP_MODE_NONE, + .app_run = my_app_run, + .app_close = my_app_close, + .com_rec = my_com_rec, + .win_open = NULL, + .win_close = NULL, + .sc_open = NULL, + .sc_close = NULL, + .app_data_size = sizeof(my_app_data_t), + .sc_data_size = sizeof(my_sc_data_t), + .win_data_size = sizeof(my_win_data_t), +}; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Initialize the application + * @return pointer to the application descriptor of this application + */ +const lv_app_dsc_t * lv_app_phantom_init(void) +{ + + return &my_app_dsc; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Run an application according to 'app_dsc' + * @param app_dsc pointer to an application descriptor + * @param conf pointer to a lv_app_phantom_conf_t structure with configuration data or NULL if unused + * @return pointer to the opened application or NULL if any error occurred + */ +static void my_app_run(lv_app_inst_t * app, void * conf) +{ + /*Initialize the application*/ + my_app_data_t * app_data = app->app_data; + app_data->com_listen = NULL; + + if(conf != NULL) { + lv_app_phantom_conf_t * my_conf = conf; + app_data->com_listen = my_conf->com_listen; + } +} + +/** + * Close a running application. + * Close the Window and the Shortcut too if opened. + * Free all the allocated memory by this application. + * @param app pointer to an application + */ +static void my_app_close(lv_app_inst_t * app) +{ + /*No dynamically allocated data in 'my_app_data'*/ +} + +/** + * Read the data have been sent to this application + * @param app_send pointer to an application which sent the message + * @param app_rec pointer to an application which is receiving the message + * @param type type of data from 'lv_app_com_type_t' enum + * @param data pointer to the sent data + * @param size length of 'data' in bytes + */ +static void my_com_rec(lv_app_inst_t * app_send, lv_app_inst_t * app_rec, + lv_app_com_type_t type , const void * data, uint32_t size) +{ + + my_app_data_t * app_data = app_rec->app_data; + + if(app_data->com_listen != NULL) { + app_data->com_listen(app_send, app_rec, type, data, size); + } +} + +/*-------------------- + * OTHER FUNCTIONS + ---------------------*/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_EXAMPLE != 0*/ diff --git a/lv_appx/lv_app_phantom.h b/lv_appx/lv_app_phantom.h new file mode 100644 index 000000000..bb7f729f8 --- /dev/null +++ b/lv_appx/lv_app_phantom.h @@ -0,0 +1,42 @@ +/** + * @file lv_app_phantom.h + * + */ + +#ifndef LV_APP_PHANTOM_H +#define LV_APP_PHANTOM_H + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lv_app/lv_app.h" + +#if LV_APP_ENABLE != 0 && USE_LV_APP_PHANTOM != 0 + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +typedef struct +{ + void (*com_listen)(lv_app_inst_t * app_send, + lv_app_inst_t * app_rec, + lv_app_com_type_t type , + const void * data, uint32_t size); +}lv_app_phantom_conf_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ +const lv_app_dsc_t * lv_app_phantom_init(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_PHANTOM != 0*/ + +#endif /* LV_APP_PHANTOM_H */ diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 8a0c0f467..1090bf552 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -83,8 +83,10 @@ static lv_app_dsc_t my_app_dsc = static uint8_t mem_pct[LV_APP_SYSMON_PNUM]; static uint8_t cpu_pct[LV_APP_SYSMON_PNUM]; -static lv_style_t cpu_bars; -static lv_style_t mem_bars; +static lv_style_t cpu_bar_bg; +static lv_style_t mem_bar_bg; +static lv_style_t cpu_bar_indic; +static lv_style_t mem_bar_indic; #if USE_DYN_MEM != 0 && DM_CUSTOM == 0 static dm_mon_t mem_mon; #endif @@ -109,23 +111,30 @@ const lv_app_dsc_t * lv_app_sysmon_init(void) memset(cpu_pct, 0, sizeof(cpu_pct)); /*Create bar styles for the shortcut*/ - lv_style_get(LV_STYLE_PRETTY_COLOR, &cpu_bars); + lv_style_get(LV_STYLE_PRETTY, &cpu_bar_bg); + cpu_bar_bg.ccolor = COLOR_MAKE(0x40, 0x00, 0x00); + cpu_bar_bg.font = font_get(LV_APP_FONT_MEDIUM); + cpu_bar_bg.line_space = 0; + cpu_bar_bg.txt_align = 1; + cpu_bar_bg.hpad = 0; + cpu_bar_bg.vpad = 0; - cpu_bars.gcolor = COLOR_MARRON; - cpu_bars.mcolor = COLOR_RED; - cpu_bars.bwidth = 0; + memcpy(&mem_bar_bg, &cpu_bar_bg, sizeof(lv_style_t)); + mem_bar_bg.ccolor = COLOR_MAKE(0x00, 0x40, 0x00); - cpu_bars.ccolor = COLOR_MAKE(0x40, 0x00, 0x00); - cpu_bars.font = font_get(LV_APP_FONT_MEDIUM); - cpu_bars.line_space = 0; - cpu_bars.txt_align = 1; - cpu_bars.hpad = 0; - cpu_bars.vpad = 0; + lv_style_get(LV_STYLE_PRETTY_COLOR, &cpu_bar_indic); + cpu_bar_indic.gcolor = COLOR_MARRON; + cpu_bar_indic.mcolor = COLOR_RED; + cpu_bar_indic.bcolor = COLOR_BLACK; + //cpu_bar_indic.bwidth = 1 * LV_DOWNSCALE; + cpu_bar_indic.bopa = OPA_50; + cpu_bar_indic.hpad = 0 * LV_DOWNSCALE; + cpu_bar_indic.vpad = 0 * LV_DOWNSCALE; - memcpy(&mem_bars, &cpu_bars, sizeof(cpu_bars)); - mem_bars.gcolor = COLOR_GREEN; - mem_bars.mcolor = COLOR_LIME; - mem_bars.ccolor = COLOR_MAKE(0x00, 0x40, 0x00); + + memcpy(&mem_bar_indic, &cpu_bar_indic, sizeof(lv_style_t)); + mem_bar_indic.gcolor = COLOR_GREEN; + mem_bar_indic.mcolor = COLOR_LIME; return &my_app_dsc; } @@ -186,7 +195,8 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) sc_data->bar_cpu = lv_bar_create(sc, NULL); lv_obj_set_size(sc_data->bar_cpu, w, 5 * lv_obj_get_height(sc) / 8); lv_obj_align(sc_data->bar_cpu, NULL, LV_ALIGN_IN_BOTTOM_LEFT, w, - lv_obj_get_height(sc) / 8); - lv_bar_set_style_indic(sc_data->bar_cpu, &cpu_bars); + lv_obj_set_style(sc_data->bar_cpu, &cpu_bar_bg); + lv_bar_set_style_indic(sc_data->bar_cpu, &cpu_bar_indic); lv_obj_set_click(sc_data->bar_cpu, false); lv_bar_set_range(sc_data->bar_cpu, 0, 100); lv_obj_t * label = lv_label_create(sc_data->bar_cpu, NULL); @@ -195,7 +205,8 @@ static void my_sc_open(lv_app_inst_t * app, lv_obj_t * sc) sc_data->bar_mem = lv_bar_create(sc, sc_data->bar_cpu); lv_obj_align(sc_data->bar_mem, sc_data->bar_cpu, LV_ALIGN_OUT_RIGHT_MID, w, 0); - lv_bar_set_style_indic(sc_data->bar_mem, &mem_bars); + lv_obj_set_style(sc_data->bar_mem, &mem_bar_bg); + lv_bar_set_style_indic(sc_data->bar_mem, &mem_bar_indic); label = lv_label_create(sc_data->bar_mem, NULL); lv_label_set_text(label, "M\nE\nM"); lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); @@ -223,6 +234,8 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) { my_win_data_t * win_data = app->win_data; + lv_cont_set_layout(lv_page_get_scrl(lv_win_get_page(win)), LV_CONT_LAYOUT_PRETTY); + /*Create a chart with two data lines*/ win_data->chart = lv_chart_create(win, NULL); lv_obj_set_size(win_data->chart, LV_HOR_RES / 2, LV_VER_RES / 2); @@ -231,8 +244,8 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) lv_chart_set_range(win_data->chart, 0, 100); lv_chart_set_type(win_data->chart, LV_CHART_LINE); lv_chart_set_dl_width(win_data->chart, 2 * LV_DOWNSCALE); - win_data->cpu_dl = lv_chart_add_dataline(win_data->chart, COLOR_RED); - win_data->mem_dl = lv_chart_add_dataline(win_data->chart, COLOR_BLUE); + win_data->cpu_dl = lv_chart_add_data_line(win_data->chart, COLOR_RED); + win_data->mem_dl = lv_chart_add_data_line(win_data->chart, COLOR_BLUE); uint16_t i; for(i = 0; i < LV_APP_SYSMON_PNUM; i ++) { diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index a22f7138b..02071a84c 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -31,7 +31,7 @@ /********************* * DEFINES *********************/ -#define OBJ_PAD (LV_DPI / 4) +#define OBJ_PAD (LV_DPI / 12) /********************** * TYPEDEFS @@ -144,9 +144,17 @@ static void my_app_run(lv_app_inst_t * app, void * conf) { /*Initialize the application*/ my_app_data_t * app_data = app->app_data; - app_data->com_type = LV_APP_COM_TYPE_CHAR; - app_data->format = LV_APP_TERMINAL_FORMAT_ASCII; + + if(conf != NULL) { + app_data->com_type = ((lv_app_terminal_conf_t * ) conf)->com_type; + app_data->format = ((lv_app_terminal_conf_t * ) conf)->format; + } else { + app_data->com_type = LV_APP_COM_TYPE_CHAR; + app_data->format = LV_APP_TERMINAL_FORMAT_ASCII; + } + app_data->last_sender = NULL; + memset(app_data->txt, 0, sizeof(app_data->txt)); } @@ -326,7 +334,7 @@ static void my_conf_open(lv_app_inst_t * app, lv_obj_t * conf_win) */ static lv_action_res_t win_ta_rel_action(lv_obj_t * ta, lv_dispi_t * dispi) { - lv_app_kb_open(ta, LV_APP_KB_MODE_TXT, NULL, win_ta_kb_ok_action); + lv_app_kb_open(ta, LV_APP_KB_MODE_TXT | LV_APP_KB_MODE_WIN_RESIZE, NULL, win_ta_kb_ok_action); return LV_ACTION_RES_OK; } diff --git a/lv_appx/lv_app_terminal.h b/lv_appx/lv_app_terminal.h index 70c32d91d..b2bda2f18 100644 --- a/lv_appx/lv_app_terminal.h +++ b/lv_appx/lv_app_terminal.h @@ -28,7 +28,8 @@ typedef enum typedef struct { - + lv_app_terminal_format_t format; /*Data display format*/ + lv_app_com_type_t com_type; /*The listened communication type (channel) */ }lv_app_terminal_conf_t; /********************** diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 761b6c52d..b3e9ce856 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -347,7 +347,6 @@ void lv_draw_img(const area_t * cords_p, const area_t * mask_p, cord_t row; area_t act_area; - area_t mask_sub; bool union_ok; union_ok = area_union(&mask_sub, mask_p, cords_p); diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 51ab851a3..0b171afe5 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -1234,7 +1234,7 @@ cord_t lv_obj_get_height(lv_obj_t * obj) * @param obj pointer to an object * @return the extended size attribute */ -cord_t lv_obj_getext_size(lv_obj_t * obj) +cord_t lv_obj_get_ext_size(lv_obj_t * obj) { return obj->ext_size; } diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index 5985c1d8d..f4ddee676 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -551,7 +551,7 @@ cord_t lv_obj_get_height(lv_obj_t * obj); * @param obj pointer to an object * @return the extended size attribute */ -cord_t lv_obj_getext_size(lv_obj_t * obj); +cord_t lv_obj_get_ext_size(lv_obj_t * obj); /** * Get the style pointer of an object diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index 3caa1adba..cc12e7d03 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -51,120 +51,115 @@ static lv_style_t lv_style_btn_ina; */ void lv_style_init (void) { - /* Not White/Black/Gray colors are created by HSV model with * HUE = 210*/ /*Screen style*/ - lv_style_set_ccolor(&lv_style_scr, COLOR_MAKE(0x20, 0x20, 0x20)); - lv_style_set_opa(&lv_style_scr, OPA_COVER); + lv_style_scr.ccolor = COLOR_MAKE(0x20, 0x20, 0x20); + lv_style_scr.opa = OPA_COVER; - lv_style_set_mcolor(&lv_style_scr, COLOR_WHITE);//MAKE(0xc9, 0xdb, 0xee)); - lv_style_set_gcolor(&lv_style_scr, COLOR_WHITE);//MAKE(0x4d, 0x91, 0xd5)); - lv_style_set_bcolor(&lv_style_scr, COLOR_BLACK); - lv_style_set_scolor(&lv_style_scr, COLOR_GRAY); - lv_style_set_radius(&lv_style_scr, 0); - lv_style_set_bwidth(&lv_style_scr, 0); - lv_style_set_swidth(&lv_style_scr, 0); - lv_style_set_vpad(&lv_style_scr, LV_DPI / 12); - lv_style_set_hpad(&lv_style_scr, LV_DPI / 12); - lv_style_set_opad(&lv_style_scr, LV_DPI / 12); - lv_style_set_bopa(&lv_style_scr, OPA_COVER); - lv_style_set_empty(&lv_style_scr, false); - lv_style_set_stype(&lv_style_scr, LV_STYPE_FULL); + lv_style_scr.mcolor = COLOR_MAKE(0xc9, 0xdb, 0xee); + lv_style_scr.gcolor = COLOR_MAKE(0x4d, 0x91, 0xd5); + lv_style_scr.bcolor = COLOR_BLACK; + lv_style_scr.scolor = COLOR_GRAY; + lv_style_scr.radius = 0; + lv_style_scr.bwidth = 0; + lv_style_scr.swidth = 0; + lv_style_scr.stype = LV_STYPE_FULL; + lv_style_scr.vpad = LV_DPI / 12; + lv_style_scr.hpad = LV_DPI / 12; + lv_style_scr.opad = LV_DPI / 12; + lv_style_scr.bopa = OPA_COVER; + lv_style_scr.empty = 0; lv_style_scr.glass = 0; - lv_style_set_font(&lv_style_scr, font_get(FONT_DEFAULT)); - lv_style_set_letter_space(&lv_style_scr, 1 * LV_DOWNSCALE); - lv_style_set_line_space(&lv_style_scr, 3 * LV_DOWNSCALE); - lv_style_set_txt_align(&lv_style_scr, 0); - - lv_style_set_img_recolor(&lv_style_scr, OPA_TRANSP); - - lv_style_set_line_width(&lv_style_scr, 1 * LV_DOWNSCALE); + lv_style_scr.font = font_get(FONT_DEFAULT); + lv_style_scr.letter_space = 1 * LV_DOWNSCALE; + lv_style_scr.line_space = 3 * LV_DOWNSCALE; + lv_style_scr.txt_align = 0; + lv_style_scr.img_recolor = OPA_TRANSP; + lv_style_scr.line_width = 1 * LV_DOWNSCALE; /*Plain style (by default near the same as the screen style)*/ memcpy(&lv_style_plain, &lv_style_scr, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_plain, COLOR_WHITE); - lv_style_set_gcolor(&lv_style_plain, COLOR_WHITE); - lv_style_set_bcolor(&lv_style_plain, COLOR_WHITE); + lv_style_plain.mcolor = COLOR_WHITE; + lv_style_plain.gcolor = COLOR_WHITE; + lv_style_plain.bcolor = COLOR_WHITE; /*Plain color style*/ memcpy(&lv_style_plain_color, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_plain_color, COLOR_MAKE(0xf0, 0xf0, 0xf0)); - lv_style_set_mcolor(&lv_style_plain_color, COLOR_MAKE(0x55, 0x96, 0xd8)); - lv_style_set_gcolor(&lv_style_plain_color, lv_style_plain_color.mcolor); + lv_style_plain_color.ccolor = COLOR_MAKE(0xf0, 0xf0, 0xf0); + lv_style_plain_color.mcolor = COLOR_MAKE(0x55, 0x96, 0xd8); + lv_style_plain_color.gcolor = lv_style_plain_color.mcolor; /*Pretty style */ memcpy(&lv_style_pretty, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_pretty, COLOR_MAKE(0x20, 0x20, 0x20)); - lv_style_set_mcolor(&lv_style_pretty, COLOR_WHITE); - lv_style_set_gcolor(&lv_style_pretty, COLOR_SILVER); - lv_style_set_bcolor(&lv_style_pretty, COLOR_MAKE(0x40, 0x40, 0x40)); - lv_style_set_radius(&lv_style_pretty, LV_DPI / 12); - lv_style_set_bwidth(&lv_style_pretty, LV_DPI / 40 >= 1 ? LV_DPI / 40 : 1); - lv_style_set_bopa(&lv_style_pretty, OPA_50); + lv_style_pretty.ccolor = COLOR_MAKE(0x20, 0x20, 0x20); + lv_style_pretty.mcolor = COLOR_WHITE; + lv_style_pretty.gcolor = COLOR_SILVER; + lv_style_pretty.bcolor = COLOR_MAKE(0x40, 0x40, 0x40); + lv_style_pretty.radius = LV_DPI / 15; + lv_style_pretty.bwidth = LV_DPI / 50 >= 1 ? LV_DPI / 50 : 1; + lv_style_pretty.bopa = OPA_50; /*Pretty color style*/ memcpy(&lv_style_pretty_color, &lv_style_pretty, sizeof(lv_style_t)); - lv_style_set_ccolor(&lv_style_pretty_color, COLOR_MAKE(0xe0, 0xe0, 0xe0)); - lv_style_set_mcolor(&lv_style_pretty_color, COLOR_MAKE(0x6b, 0x9a, 0xc7)); - lv_style_set_gcolor(&lv_style_pretty_color, COLOR_MAKE(0x2b, 0x59, 0x8b)); - lv_style_set_bcolor(&lv_style_pretty_color, COLOR_MAKE(0x15, 0x2c, 0x42)); - lv_style_set_scolor(&lv_style_pretty_color, COLOR_GRAY); - lv_style_set_swidth(&lv_style_pretty_color, 0); + lv_style_pretty_color.ccolor = COLOR_MAKE(0xe0, 0xe0, 0xe0); + lv_style_pretty_color.mcolor = COLOR_MAKE(0x6b, 0x9a, 0xc7); + lv_style_pretty_color.gcolor = COLOR_MAKE(0x2b, 0x59, 0x8b); + lv_style_pretty_color.bcolor = COLOR_MAKE(0x15, 0x2c, 0x42); /*Transparent style*/ memcpy(&lv_style_transp, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_empty(&lv_style_transp, true); - lv_style_set_bwidth(&lv_style_transp, 0); + lv_style_transp.empty = 1; + lv_style_transp.bwidth = 0; lv_style_transp.glass = 1; /*Transparent tight style*/ memcpy(&lv_style_transp_tight, &lv_style_transp, sizeof(lv_style_t)); - lv_style_set_hpad(&lv_style_transp_tight, 0); - lv_style_set_vpad(&lv_style_transp_tight, 0); + lv_style_transp_tight.hpad = 0; + lv_style_transp_tight.vpad = 0; /*Button released style*/ memcpy(&lv_style_btn_rel, &lv_style_plain, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_rel, COLOR_MAKE(0x76, 0xa2, 0xd0)); - lv_style_set_gcolor(&lv_style_btn_rel, COLOR_MAKE(0x19, 0x3a, 0x5d)); - lv_style_set_bcolor(&lv_style_btn_rel, COLOR_MAKE(0x0b, 0x19, 0x28)); - lv_style_set_ccolor(&lv_style_btn_rel, COLOR_MAKE(0xff, 0xff, 0xff)); - lv_style_set_bwidth(&lv_style_btn_rel, LV_DPI / 40 >= 1 ? LV_DPI / 40 : 1); - lv_style_set_radius(&lv_style_btn_rel, LV_DPI / 12); - lv_style_set_bopa(&lv_style_btn_rel, OPA_70); - lv_style_set_scolor(&lv_style_btn_rel, COLOR_GRAY); - lv_style_set_swidth(&lv_style_btn_rel, 0); - lv_style_set_hpad(&lv_style_btn_rel, LV_DPI / 4); - lv_style_set_vpad(&lv_style_btn_rel, LV_DPI / 6); - lv_style_set_opad(&lv_style_btn_rel, LV_DPI / 10); + lv_style_btn_rel.mcolor = COLOR_MAKE(0x76, 0xa2, 0xd0); + lv_style_btn_rel.gcolor = COLOR_MAKE(0x19, 0x3a, 0x5d); + lv_style_btn_rel.bcolor = COLOR_MAKE(0x0b, 0x19, 0x28); + lv_style_btn_rel.ccolor = COLOR_MAKE(0xff, 0xff, 0xff); + lv_style_btn_rel.bwidth = LV_DPI / 50 >= 1 ? LV_DPI / 50 : 1; + lv_style_btn_rel.radius = LV_DPI / 15; + lv_style_btn_rel.bopa = OPA_70; + lv_style_btn_rel.scolor = COLOR_GRAY; + lv_style_btn_rel.swidth = 0; + lv_style_btn_rel.hpad = LV_DPI / 4; + lv_style_btn_rel.vpad = LV_DPI / 6; + lv_style_btn_rel.opad = LV_DPI / 10; /*Button pressed style*/ memcpy(&lv_style_btn_pr, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_pr, COLOR_MAKE(0x33, 0x62, 0x94)); - lv_style_set_gcolor(&lv_style_btn_pr, COLOR_MAKE(0x10, 0x26, 0x3c)); - lv_style_set_ccolor(&lv_style_btn_pr, COLOR_MAKE(0xa4, 0xb5, 0xc6)); + lv_style_btn_pr.mcolor = COLOR_MAKE(0x33, 0x62, 0x94); + lv_style_btn_pr.gcolor = COLOR_MAKE(0x10, 0x26, 0x3c); + lv_style_btn_pr.ccolor = COLOR_MAKE(0xa4, 0xb5, 0xc6); /*Button toggle released style*/ memcpy(&lv_style_btn_trel, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_trel, COLOR_MAKE(0x0a, 0x11, 0x22)); - lv_style_set_gcolor(&lv_style_btn_trel, COLOR_MAKE(0x37, 0x62, 0x90)); - lv_style_set_bcolor(&lv_style_btn_trel, COLOR_MAKE(0x01, 0x07, 0x0d)); - lv_style_set_ccolor(&lv_style_btn_trel, COLOR_MAKE(0xc8, 0xdd, 0xf4)); + lv_style_btn_trel.mcolor = COLOR_MAKE(0x0a, 0x11, 0x22); + lv_style_btn_trel.gcolor = COLOR_MAKE(0x37, 0x62, 0x90); + lv_style_btn_trel.bcolor = COLOR_MAKE(0x01, 0x07, 0x0d); + lv_style_btn_trel.ccolor = COLOR_MAKE(0xc8, 0xdd, 0xf4); /*Button toggle pressed style*/ memcpy(&lv_style_btn_tpr, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_tpr, COLOR_MAKE(0x02, 0x14, 0x27)); - lv_style_set_gcolor(&lv_style_btn_tpr, COLOR_MAKE(0x2b, 0x4c, 0x70)); - lv_style_set_ccolor(&lv_style_btn_tpr, COLOR_MAKE(0xa4, 0xb5, 0xc6)); + lv_style_btn_tpr.mcolor = COLOR_MAKE(0x02, 0x14, 0x27); + lv_style_btn_tpr.gcolor = COLOR_MAKE(0x2b, 0x4c, 0x70); + lv_style_btn_tpr.ccolor = COLOR_MAKE(0xa4, 0xb5, 0xc6); /*Button inactive style*/ memcpy(&lv_style_btn_ina, &lv_style_btn_rel, sizeof(lv_style_t)); - lv_style_set_mcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); - lv_style_set_gcolor(&lv_style_btn_ina, COLOR_MAKE(0xd8, 0xd8, 0xd8)); - lv_style_set_bcolor(&lv_style_btn_ina, COLOR_MAKE(0x90, 0x90, 0x90)); - lv_style_set_ccolor(&lv_style_btn_ina, COLOR_MAKE(0x70, 0x70, 0x70)); + lv_style_btn_ina.mcolor = COLOR_MAKE(0xd8, 0xd8, 0xd8); + lv_style_btn_ina.gcolor = COLOR_MAKE(0xd8, 0xd8, 0xd8); + lv_style_btn_ina.bcolor = COLOR_MAKE(0x90, 0x90, 0x90); + lv_style_btn_ina.ccolor = COLOR_MAKE(0x70, 0x70, 0x70); } @@ -223,453 +218,6 @@ lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy) return style; } -/** - * Set the content color of a style - * @param style pointer to style - * @param ccolor content color - */ -void lv_style_set_ccolor(lv_style_t * style, color_t ccolor) -{ - style->ccolor = ccolor; -} - -/** - * Set the opacity of a style - * @param style pointer to style - * @param opa opacity (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) - */ -void lv_style_set_opa(lv_style_t * style, opa_t opa) -{ - style->opa = opa; -} - - -/** - * Set the container main color of a style - * @param style pointer to style - * @param mcolor main color of the background - */ -void lv_style_set_mcolor(lv_style_t * style, color_t mcolor) -{ - style->mcolor = mcolor; -} - - -/** - * Set the container gradient color of a style - * @param style pointer to style - * @param gcolor gradient color of the background - */ -void lv_style_set_gcolor(lv_style_t * style, color_t gcolor) -{ - style->gcolor = gcolor; -} - -/** - * Set the container border color of a style - * @param style pointer to style - * @param bcolor border color of the background - */ -void lv_style_set_bcolor(lv_style_t * style, color_t bcolor) -{ - style->bcolor = bcolor; -} - - -/** - * Set the container shadow color of a style - * @param style pointer to style - * @param scolor shadow color of the background - */ -void lv_style_set_scolor(lv_style_t * style, color_t scolor) -{ - style->scolor = scolor; -} - -/** - * Set the container corner radius of a style - * @param style pointer to style - * @param radius corner radius of the background (>= 0) - */ -void lv_style_set_radius(lv_style_t * style, cord_t radius) -{ - style->radius = radius; -} - - -/** - * Set the container border width of a style - * @param style pointer to style - * @param bwidth border width of the background (>= 0, 0 means no border) - */ -void lv_style_set_bwidth(lv_style_t * style, cord_t bwidth) -{ - style->bwidth = bwidth; -} - - -/** - * Set the container shadow width of a style - * @param style pointer to style - * @param swidth shadow width of the background (>= 0, 0 means no shadow) - */ -void lv_style_set_swidth(lv_style_t * style, cord_t swidth) -{ - style->swidth = swidth; -} - - -/** - * Set the container vertical padding of a style - * @param style pointer to style - * @param vpad vertical padding on the background - */ -void lv_style_set_vpad(lv_style_t * style, cord_t vpad) -{ - style->vpad = vpad; -} - - -/** - * Set the container horizontal padding of a style - * @param style pointer to style - * @param hpad horizontal padding on the background - */ -void lv_style_set_hpad(lv_style_t * style, cord_t hpad) -{ - style->hpad = hpad; -} - -/** - * Set the container object padding of a style - * @param style pointer to style - * @param opad padding between objects on the background - */ -void lv_style_set_opad(lv_style_t * style, cord_t opad) -{ - style->opad = opad; -} - -/** - * Set the container border opacity of a style (relative to the object opacity) - * @param style pointer to style - * @param bopa border opacity of the background (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) - */ -void lv_style_set_bopa(lv_style_t * style, opa_t bopa) -{ - style->bopa = bopa; -} - - -/** - * Set container empty attribute of a style (transparent background but border drawn) - * @param style pointer to style - * @param empty true: empty enable, false: empty disable - */ -void lv_style_set_empty(lv_style_t * style, bool empty) -{ - style->empty = empty == false ? 0 : 1; -} - -/** - * Set the shadow type (position) of a style - * @param style pointer to style - * @param stype shadow type from 'lv_shadow_type_t' enum - */ -void lv_style_set_stype(lv_style_t * style, lv_stype_t stype) -{ - style->stype = stype; -} - -/** - * Set the font of a style - * @param style pointer to style - * @param font pointer to a fint - */ -void lv_style_set_font(lv_style_t * style, const font_t * font) -{ - style->font = font; -} - - -/** - * Set the letter space of a style - * @param style pointer to style - * @param letter_space new letter space - */ -void lv_style_set_letter_space(lv_style_t * style, cord_t letter_space) -{ - style->letter_space = letter_space; -} - - -/** - * Set the line space of a style - * @param style pointer to style - * @param line_space new letter space - */ -void lv_style_set_line_space(lv_style_t * style, cord_t line_space) -{ - style->line_space = line_space; -} - -/** - * Set the text align of a style - * @param style pointer to style - * @param align type of text alignment from 'lv_txt_align_t' - */ -void lv_style_set_txt_align(lv_style_t * style, lv_txt_align_t align) -{ - style->txt_align = align; -} - - -/** - * Set the image re-color intensity of a style - * @param style pointer to style - * @param recolor re-coloring intensity (OPA_TRANSP: do nothing, OPA_COVER: fully re-color, OPA_10: little re-color) - */ -void lv_style_set_img_recolor(lv_style_t * style, opa_t recolor) -{ - style->img_recolor = recolor; -} - - -/** - * Set the line width of a style - * @param style pointer to style - * @param width new line width (>=0) - */ -void lv_style_set_line_width(lv_style_t * style, cord_t width) -{ - style->line_width = width; -} - -/************************* - * GET FUNTIONS - *************************/ -/** - * Get the content color of a style - * @param style pointer to style - * @return content color - */ -color_t lv_style_get_ccolor(lv_style_t * style) -{ - return style->ccolor; -} - -/** - * Get the opacity of a style - * @param style pointer to style - * @return opacity (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) - */ -opa_t lv_style_get_opa(lv_style_t * style) -{ - return style->opa; -} - -/** - * Get the container main color of a style - * @param style pointer to style - * @return main color of the background - */ -color_t lv_style_get_mcolor(lv_style_t * style) -{ - return style->mcolor; -} - - -/** - * Get the container gradient color of a style - * @param style pointer to style - * @return gradient color of the background - */ -color_t lv_style_get_gcolor(lv_style_t * style) -{ - return style->gcolor; -} - -/** - * Get the container border color of a style - * @param style pointer to style - * @return border color of the background - */ -color_t lv_style_get_bcolor(lv_style_t * style) -{ - return style->bcolor; -} - - -/** - * Get the container shadow color of a style - * @param style pointer to style - * @return shadow color of the background - */ -color_t lv_style_get_Scolor(lv_style_t * style) -{ - return style->scolor; -} - -/** - * Get the container corner radius of a style - * @param style pointer to style - * @return corner radius of the background (>= 0) - */ - cord_t lv_style_get_radius(lv_style_t * style) -{ - return style->radius; -} - - -/** - * Get the container border width of a style - * @param style pointer to style - * @return border width of the background (>= 0, 0 means no border) - */ -cord_t lv_style_get_bwidth(lv_style_t * style) -{ - return style->bwidth; -} - - -/** - * Get the container shadow width of a style - * @param style pointer to style - * @return shadow width of the background (>= 0, 0 means no shadow) - */ -cord_t lv_style_get_swidth(lv_style_t * style) -{ - return style->swidth; -} - - -/** - * Get the container vertical padding of a style - * @param style pointer to style - * @return vertical padding on the background - */ -cord_t lv_style_get_vpad(lv_style_t * style) -{ - return style->vpad; -} - - -/** - * Get the container horizontal padding of a style - * @param style pointer to style - * @return horizontal padding on the background - */ -cord_t lv_style_get_hpad(lv_style_t * style) -{ - return style->hpad; -} - -/** - * Get the container object padding of a style - * @param style pointer to style - * @return padding between objects on the background - */ -cord_t lv_style_get_opad(lv_style_t * style) -{ - return style->opad; -} - -/** - * Get the container border opacity of a style (relative to the object opacity) - * @param style pointer to style - * @return border opacity of the background (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) - */ -opa_t lv_style_get_bopa(lv_style_t * style) -{ - return style->bopa; -} - - -/** - * Get container empty attribute of a style (transparent background but border drawn) - * @param style pointer to style - * @return true: empty enable, false: empty disable - */ -bool lv_style_get_empty(lv_style_t * style, bool empty) -{ - return style->empty == false ? 0 : 1; -} - -/** - * Get the shadow type attribute - * @param style pointer to style - * @return shadow type from 'lv_stype_t' enum - */ -bool lv_style_get_stype(lv_style_t * style, bool empty) -{ - return style->stype; -} - -/** - * Get the font of a style - * @param style pointer to style - * @return pointer to a fint - */ -const font_t * lv_style_get_font(lv_style_t * style) -{ - return style->font; -} - - -/** - * Get the letter space of a style - * @param style pointer to style - * @return new letter space - */ -cord_t lv_style_get_letter_space(lv_style_t * style) -{ - return style->letter_space; -} - - -/** - * Get the line space of a style - * @param style pointer to style - * @return new letter space - */ -cord_t lv_style_get_line_space(lv_style_t * style) -{ - return style->line_space; -} - -/** - * Get the text align of a style - * @param style pointer to style - * @return type of text alignment from 'lv_txt_align_t' - */ -lv_txt_align_t lv_style_get_txt_align(lv_style_t * style) -{ - return style->txt_align; -} - - -/** - * Get the image re-color intensity of a style - * @param style pointer to style - * @return re-coloring intensity (OPA_TRANSP: do nothing, OPA_COVER: fully re-color, OPA_10: little re-color) - */ -opa_t lv_style_get_img_recolor(lv_style_t * style) -{ - return style->img_recolor; -} - - -/** - * Get the line width of a style - * @param style pointer to style - * @return new line width (>=0) - */ -cord_t lv_style_get_line_width(lv_style_t * style) -{ - return style->line_width; -} - - /********************** * STATIC FUNCTIONS **********************/ diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h index 4191005cc..b1400dd8e 100644 --- a/lv_obj/lv_style.h +++ b/lv_obj/lv_style.h @@ -43,7 +43,8 @@ typedef struct opa_t opa; /*Opacity of the object*/ uint8_t glass :1; /*1: Do not inherit this style*/ uint8_t empty :1; /*Transparent background (border drawn)*/ - uint8_t stype :3; /*Shadow type from 'lv_shadow_type_t'*/ + uint8_t stype :2; /*Shadow type from 'lv_shadow_type_t'*/ + uint8_t txt_align:2; color_t mcolor; /*Main color of background*/ color_t gcolor; /*Gradient color of background*/ color_t bcolor; /*Border color of background*/ @@ -58,7 +59,6 @@ typedef struct const font_t * font; cord_t letter_space; cord_t line_space; - uint8_t txt_align; opa_t img_recolor; cord_t line_width; }lv_style_t; diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index 0c1b37d5c..bbd68ef08 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -244,8 +244,6 @@ static bool lv_bar_design(lv_obj_t * bar, const area_t * mask, lv_design_mode_t lv_bar_ext_t * ext = lv_obj_get_ext(bar); - - lv_style_t * style_indic = lv_bar_get_style_indic(bar); area_t indic_area; area_cpy(&indic_area, &bar->cords); diff --git a/lv_objx/lv_btnm.c b/lv_objx/lv_btnm.c index 4afb1a8ab..d51bd7510 100644 --- a/lv_objx/lv_btnm.c +++ b/lv_objx/lv_btnm.c @@ -396,7 +396,6 @@ static bool lv_btnm_design(lv_obj_t * btnm, const area_t * mask, lv_design_mode_ ancestor_design_f(btnm, mask, mode); lv_btnm_ext_t * ext = lv_obj_get_ext(btnm); - lv_style_t * style = lv_obj_get_style(btnm); lv_style_t * btn_style; area_t area_btnm; diff --git a/lv_objx/lv_cb.h b/lv_objx/lv_cb.h index 307737b58..e1d169b3a 100644 --- a/lv_objx/lv_cb.h +++ b/lv_objx/lv_cb.h @@ -76,7 +76,13 @@ void lv_cb_set_text(lv_obj_t * cb, const char * txt); */ const char * lv_cb_get_text(lv_obj_t * cb); +/** + * Get the bullet (lv_btn) of a check box + * @param cb pointer to check box object + * @return pointer to the bullet of the check box (lv_btn) + */ lv_obj_t * lv_cb_get_bullet(lv_obj_t * cb); + /********************** * MACROS **********************/ diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index 37aff871a..fa0a7fefc 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -139,7 +139,7 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param) * @param color color of the data line * @return pointer to the allocated data line ( */ -lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color) +lv_chart_dl_t * lv_chart_add_data_line(lv_obj_t * chart, color_t color) { lv_chart_ext_t * ext = lv_obj_get_ext(chart); lv_chart_dl_t * dl = ll_ins_head(&ext->dl_ll); diff --git a/lv_objx/lv_chart.h b/lv_objx/lv_chart.h index aaf3b5fd0..ab2f54762 100644 --- a/lv_objx/lv_chart.h +++ b/lv_objx/lv_chart.h @@ -18,7 +18,6 @@ /********************* * DEFINES *********************/ -#define LV_CHART_DL_NUM 8 /*Max data line number. Used in the style.*/ /********************** * TYPEDEFS @@ -83,7 +82,7 @@ bool lv_chart_signal(lv_obj_t * chart, lv_signal_t sign, void * param); * @param color color of the data line * @return pointer to the allocated data line ( */ -lv_chart_dl_t * lv_chart_add_dataline(lv_obj_t * chart, color_t color); +lv_chart_dl_t * lv_chart_add_data_line(lv_obj_t * chart, color_t color); /** * Refresh a chart if its data line has changed diff --git a/lv_objx/lv_cont.h b/lv_objx/lv_cont.h index 0166ad7c3..57f205592 100644 --- a/lv_objx/lv_cont.h +++ b/lv_objx/lv_cont.h @@ -30,9 +30,9 @@ typedef enum LV_CONT_LAYOUT_COL_L, /*Column left align*/ LV_CONT_LAYOUT_COL_M, /*Column middle align*/ LV_CONT_LAYOUT_COL_R, /*Column right align*/ - LV_CONT_LAYOUT_ROW_T, /*Row left align*/ + LV_CONT_LAYOUT_ROW_T, /*Row top align*/ LV_CONT_LAYOUT_ROW_M, /*Row middle align*/ - LV_CONT_LAYOUT_ROW_B, /*Row right align*/ + LV_CONT_LAYOUT_ROW_B, /*Row bottom align*/ LV_CONT_LAYOUT_PRETTY, /*Put as many object as possible in row and begin a new row*/ LV_CONT_LAYOUT_GRID, /*Align same-sized object into a grid*/ }lv_cont_layout_t; diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index db8b04e63..47068daf3 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -36,8 +36,7 @@ static void lv_ddlist_pos_act_option(lv_obj_t * ddlist); * STATIC VARIABLES **********************/ static lv_design_f_t ancestor_design_f; -static const char * def_options[] = {"Option 1", "Option 2", "Option 3","Option 4", "Option 5", "Option 6", - "Option 7", "Option 8", "Option 9","Option 10", "Option 11", "Option 12",""}; +static const char * def_options[] = {"Option 1", "Option 2", "Option 3", ""}; /********************** * MACROS **********************/ @@ -87,7 +86,6 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) lv_obj_set_style(scrl, lv_style_get(LV_STYLE_TRANSP, NULL)); ext->opt_label = lv_label_create(new_ddlist, NULL); - lv_obj_set_style(ext->opt_label, lv_style_get(LV_STYLE_PRETTY, NULL)); lv_cont_set_fit(new_ddlist, true, false); lv_page_set_rel_action(new_ddlist, lv_ddlist_rel_action); lv_page_set_sb_mode(new_ddlist, LV_PAGE_SB_MODE_DRAG); @@ -258,7 +256,7 @@ bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size) * @param ddlist pointer to a drop down list object * @return pointer the style of the select rectangle */ -lv_style_t * lv_dlist_get_style_select(lv_obj_t * ddlist) +lv_style_t * lv_ddlist_get_style_select(lv_obj_t * ddlist) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); if(ext->style_sel == NULL) return lv_obj_get_style(ddlist); diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index 11aa06590..f503cec71 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -132,7 +132,7 @@ bool lv_ddlist_get_auto_size(lv_obj_t * ddlist, bool auto_size); * @param ddlist pointer to a drop down list object * @return pointer the style of the select rectangle */ -lv_style_t * lv_dlist_get_style_select(lv_obj_t * ddlist); +lv_style_t * lv_ddlist_get_style_select(lv_obj_t * ddlist); /********************** * MACROS diff --git a/lv_objx/lv_gauge.c b/lv_objx/lv_gauge.c index ae8bda8c0..2eeaa2fa3 100644 --- a/lv_objx/lv_gauge.c +++ b/lv_objx/lv_gauge.c @@ -189,6 +189,9 @@ void lv_gauge_set_value(lv_obj_t * gauge, uint8_t needle, int16_t value) ext->values[needle] = value; + /*To be consistent with bar set the first needle's value for the bar*/ + if(needle == 0) lv_bar_set_value(gauge, value); + lv_obj_inv(gauge); } @@ -309,6 +312,11 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod int16_t min = lv_bar_get_min_value(gauge); int16_t max = lv_bar_get_max_value(gauge); + /*To be consistent with bar use the bar value as the first needle*/ + if(ext->needle_num != 0) { + ext->values[0] = lv_bar_get_value(gauge); + } + int16_t critical_val = ext->low_critical == 0 ? min : max; uint8_t i; @@ -327,7 +335,8 @@ static bool lv_gauge_design(lv_obj_t * gauge, const area_t * mask, lv_design_mod style_bg.gcolor = color_mix(style_critical->gcolor, style_base->gcolor, ratio); style_bg.bcolor = color_mix(style_critical->bcolor, style_base->bcolor, ratio); style_bg.scolor = color_mix(style_critical->scolor, style_base->scolor, ratio); - style_bg.swidth = (cord_t)((cord_t)(style_critical->swidth + style_base->swidth) * ratio) >> 8; + style_bg.swidth = (cord_t)(((cord_t)style_critical->swidth * ratio) + ((cord_t)style_base->swidth * (OPA_COVER - ratio))) >> 8; + style_bg.opa = (cord_t)(((uint16_t)style_critical->opa * ratio) + ((uint16_t)style_base->opa * (OPA_COVER - ratio))) >> 8; lv_draw_rect(&gauge->cords, mask, &style_bg); diff --git a/lv_objx/lv_img.c b/lv_objx/lv_img.c index b7a1cf52a..a97ed6db0 100644 --- a/lv_objx/lv_img.c +++ b/lv_objx/lv_img.c @@ -68,6 +68,7 @@ lv_obj_t * lv_img_create(lv_obj_t * par, lv_obj_t * copy) ext->h = lv_obj_get_height(new_img); ext->transp = 0; ext->upscale = 0; + ext->auto_size = 1; /*Init the new object*/ lv_obj_set_signal_f(new_img, lv_img_signal); diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index c5b6f7db3..94fd1315c 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -29,8 +29,8 @@ typedef enum { LV_LABEL_LONG_EXPAND, /*Expand the object size to the text size*/ - LV_LABEL_LONG_BREAK, /*Keep the width and break the text and expand the object height*/ - LV_LABEL_LONG_DOTS, /*Keep the size, break the text and write dots in the last line*/ + LV_LABEL_LONG_BREAK, /*Keep the object width, break the too long lines and expand the object height*/ + LV_LABEL_LONG_DOTS, /*Keep the object size, break the text and write dots in the last line*/ LV_LABEL_LONG_SCROLL, /*Expand the object size and scroll the text on the parent (move the label object)*/ }lv_label_long_mode_t; diff --git a/lv_objx/lv_list.c b/lv_objx/lv_list.c index b18718d09..9282a741e 100644 --- a/lv_objx/lv_list.c +++ b/lv_objx/lv_list.c @@ -291,7 +291,7 @@ void lv_list_set_style_img(lv_obj_t * list, lv_style_t * style) * @param liste pointer to list element * @return pointer to the text */ -const char * lv_list_element_get_txt(lv_obj_t * liste) +const char * lv_list_get_element_text(lv_obj_t * liste) { /*The last child is the label*/ lv_obj_t * label = lv_obj_get_child(liste, NULL); diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index 3dc1ee78e..b33c2e1ed 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -108,8 +108,8 @@ void lv_list_set_sb_out(lv_obj_t * list, bool out); * @param ina pointer to a style for inactive state */ void lv_list_set_styles_btn(lv_obj_t * list, lv_style_t * rel, lv_style_t * pr, -lv_style_t * trel, lv_style_t * tpr, -lv_style_t * ina); + lv_style_t * trel, lv_style_t * tpr, + lv_style_t * ina); /** * Set the styles of the list element image (typically to set symbol font) @@ -123,7 +123,7 @@ void lv_list_set_style_img(lv_obj_t * list, lv_style_t * style); * @param liste pointer to list element * @return pointer to the text */ -const char * lv_list_element_get_txt(lv_obj_t * liste); +const char * lv_list_get_element_text(lv_obj_t * liste); /** * Get the scroll bar outside attribute diff --git a/lv_objx/lv_ta.c b/lv_objx/lv_ta.c index 4f32419fb..837d0f967 100644 --- a/lv_objx/lv_ta.c +++ b/lv_objx/lv_ta.c @@ -518,7 +518,7 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des /*Draw the cursor too*/ lv_obj_t * ta = lv_obj_get_parent(scrling); lv_ta_ext_t * ta_ext = lv_obj_get_ext(ta); - lv_style_t * ta_style = lv_obj_get_style(ta); + lv_style_t * scrl_style = lv_obj_get_style(lv_page_get_scrl(ta)); if(ta_ext->cursor_show != 0 && ta_ext->cursor_state == 0) { uint16_t cur_pos = lv_ta_get_cursor_pos(ta); @@ -529,15 +529,15 @@ static bool lv_ta_scrling_design(lv_obj_t * scrling, const area_t * mask, lv_des lv_style_t * labels_p = lv_obj_get_style(ta_ext->label); cur_area.x1 = letter_pos.x + ta_ext->label->cords.x1; cur_area.y1 = letter_pos.y + ta_ext->label->cords.y1; - cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + LV_DOWNSCALE ; + cur_area.x2 = letter_pos.x + ta_ext->label->cords.x1 + scrl_style->line_width ; cur_area.y2 = letter_pos.y + ta_ext->label->cords.y1 + (font_get_height(labels_p->font) >> FONT_ANTIALIAS); lv_style_t cur_rects; lv_style_get(LV_STYLE_PLAIN, &cur_rects); cur_rects.radius = 0; cur_rects.bwidth = 0; - cur_rects.mcolor = ta_style->ccolor; - cur_rects.gcolor = ta_style->ccolor; + cur_rects.mcolor = scrl_style->ccolor; + cur_rects.gcolor = scrl_style->ccolor; lv_draw_rect(&cur_area, mask, &cur_rects); } } diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 02e982793..09b1e73a8 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -208,7 +208,7 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param) * @param rel_action a function pointer to call when the button is released * @return pointer to the created button object */ -lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_t rel_action) +lv_obj_t * lv_win_add_cbtn(lv_obj_t * win, const char * img_path, lv_action_t rel_action) { lv_win_ext_t * ext = lv_obj_get_ext(win); @@ -235,7 +235,7 @@ lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_ */ lv_action_res_t lv_win_close_action(lv_obj_t * btn, lv_dispi_t * dispi) { - lv_obj_t * win = lv_win_get_from_ctrl_btn(btn); + lv_obj_t * win = lv_win_get_from_cbtn(btn); lv_obj_del(win); @@ -269,12 +269,12 @@ void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size) } /** - * Set the style of the window control buttons in a given state + * Set the styles of the window control buttons in a given state * @param win pointer to a window object * @param rel spointer to the style in released state * @param pr pointer to the style in pressed state */ -void lv_win_set_style_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr) +void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr) { lv_win_ext_t * ext = lv_obj_get_ext(win); ext->style_cbtn_rel = rel; @@ -356,7 +356,7 @@ cord_t lv_win_get_width(lv_obj_t * win) * @param ctrl_btn pointer to a control button of a window * @return pointer to the window of 'ctrl_btn' */ -lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn) +lv_obj_t * lv_win_get_from_cbtn(lv_obj_t * ctrl_btn) { lv_obj_t * ctrl_holder = lv_obj_get_parent(ctrl_btn); lv_obj_t * header = lv_obj_get_parent(ctrl_holder); diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index 710beea12..c94b97502 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -88,7 +88,7 @@ bool lv_win_signal(lv_obj_t * win, lv_signal_t sign, void * param); * @param rel_action a function pointer to call when the button is released * @return pointer to the created button object */ -lv_obj_t * lv_win_add_ctrl_btn(lv_obj_t * win, const char * img_path, lv_action_t rel_action); +lv_obj_t * lv_win_add_cbtn(lv_obj_t * win, const char * img_path, lv_action_t rel_action); /** * A release action which can be assigned to a window control button to close it @@ -113,12 +113,12 @@ void lv_win_set_title(lv_obj_t * win, const char * title); void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size); /** - * Set the style of the window control buttons in a given state + * Set the styles of the window control buttons in a given state * @param win pointer to a window object * @param rel spointer to the style in released state * @param pr pointer to the style in pressed state */ -void lv_win_set_style_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr); +void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr); /** * Get the title of a window @@ -158,10 +158,10 @@ cord_t lv_win_get_width(lv_obj_t * win); /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. - * @param ctrl_btn pointer to a control button of a window - * @return pointer to the window of 'ctrl_btn' + * @param cbtn pointer to a control button of a window + * @return pointer to the window of 'cbtn' */ -lv_obj_t * lv_win_get_from_ctrl_btn(lv_obj_t * ctrl_btn); +lv_obj_t * lv_win_get_from_cbtn(lv_obj_t * cbtn); /********************** * MACROS diff --git a/lvgl.h b/lvgl.h index 5e85b1f42..4f3aead70 100644 --- a/lvgl.h +++ b/lvgl.h @@ -34,7 +34,7 @@ #include "lv_objx/lv_label.h" #include "lv_objx/lv_line.h" #include "lv_objx/lv_page.h" -#include +#include "lv_objx/lv_cont.h" #include "lv_objx/lv_list.h" #include "lv_objx/lv_chart.h" #include "lv_objx/lv_cb.h" From 082eb2dad3edbf3b9fcbc50aabb1592b94f9a790 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Mon, 1 May 2017 16:47:27 +0200 Subject: [PATCH 39/53] lv_obj: minor updates, typo errors --- lv_app/lv_app.c | 12 +++-- lv_app/lv_app_util/lv_app_kb.c | 11 ++-- lv_appx/lv_app_sysmon.c | 11 ++-- lv_appx/lv_app_terminal.c | 13 ++--- lv_obj/lv_obj.c | 65 ++++-------------------- lv_obj/lv_obj.h | 93 ++++++++++++++++------------------ lv_objx/lv_cont.c | 10 ++-- lv_objx/lv_win.c | 1 - 8 files changed, 82 insertions(+), 134 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 87f6e8e1b..b3b4f958f 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -290,7 +290,7 @@ lv_obj_t * lv_app_win_open(lv_app_inst_t * app) lv_obj_set_free_p(app->win, app); lv_obj_set_style(lv_win_get_header(app->win), &app_style.win_header); lv_win_set_title(app->win, app->dsc->name); - lv_page_set_sb_mode(lv_win_get_page(app->win), LV_PAGE_SB_MODE_ON); + lv_page_set_sb_mode(lv_win_get_page(app->win), LV_PAGE_SB_MODE_AUTO); lv_win_set_styles_cbtn(app->win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); if(app->dsc->conf_open != NULL) { @@ -809,6 +809,7 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d char buf[256]; sprintf(buf, "%s settings", app->dsc->name); lv_win_add_cbtn(app->conf_win, SYMBOL_CLOSE ,lv_win_close_action); + lv_obj_set_style(lv_win_get_header(app->conf_win), &app_style.win_header); lv_win_set_title(app->conf_win, buf); lv_win_set_styles_cbtn(app->conf_win, &app_style.win_cbtn_rel, &app_style.win_cbtn_pr); lv_obj_t * scrl = lv_page_get_scrl(lv_win_get_page(app->conf_win)); @@ -934,12 +935,12 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) a.start = LV_HOR_RES; - a.end = lv_obj_get_width(app->sc); + a.end = lv_obj_get_width(&cords); a.fp = (anim_fp_t) lv_obj_set_width; anim_create(&a); a.start = LV_VER_RES; - a.end = lv_obj_get_height(app->sc); + a.end = lv_obj_get_height(&cords); a.fp = (anim_fp_t) lv_obj_set_height; anim_create(&a); @@ -1097,14 +1098,17 @@ static void lv_app_init_style(void) /*Window*/ lv_style_get(LV_STYLE_PLAIN_COLOR, &app_style.win_header); - app_style.win_header.font = font_get(LV_APP_FONT_LARGE); + memcpy(&app_style.win_header, &app_style.menu, sizeof(lv_style_t)); + app_style.win_header.font = font_get(LV_APP_FONT_LARGE); lv_style_get(LV_STYLE_TRANSP, &app_style.win_scrl); lv_style_get(LV_STYLE_BTN_REL, &app_style.win_cbtn_rel); + memcpy(&app_style.win_cbtn_rel, &app_style.menu_btn_rel, sizeof(lv_style_t)); app_style.win_cbtn_rel.font = font_get(LV_IMG_DEF_SYMBOL_FONT); lv_style_get(LV_STYLE_BTN_PR, &app_style.win_cbtn_pr); + memcpy(&app_style.win_cbtn_pr, &app_style.menu_btn_pr, sizeof(lv_style_t)); app_style.win_cbtn_pr.font = font_get(LV_IMG_DEF_SYMBOL_FONT); } diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index c666ce42d..9530d3ec5 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -79,14 +79,19 @@ static lv_style_t style_btn_pr; */ void lv_app_kb_init(void) { - lv_style_get(LV_STYLE_PLAIN, &style_bg); + lv_app_style_t * app_style = lv_app_style_get(); + + memcpy(&style_bg, &app_style->menu, sizeof(lv_style_t)); + style_bg.opa = OPA_COVER; style_bg.hpad = 0; style_bg.vpad = 0; style_bg.opad = 0; - lv_style_get(LV_STYLE_BTN_REL, &style_btn_rel); + + memcpy(&style_btn_rel, &app_style->menu_btn_rel, sizeof(lv_style_t)); style_btn_rel.radius = 0; style_btn_rel.bwidth = 1 * LV_DOWNSCALE; - lv_style_get(LV_STYLE_BTN_PR, &style_btn_pr); + + memcpy(&style_btn_pr, &app_style->menu_btn_pr, sizeof(lv_style_t)); style_btn_pr.radius = 0; style_btn_pr.bwidth = 1 * LV_DOWNSCALE; } diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 1090bf552..936933576 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -20,7 +20,7 @@ * DEFINES *********************/ #define CPU_LABEL_COLOR "FF0000" -#define MEM_LABEL_COLOR "008000" +#define MEM_LABEL_COLOR "0000FF" /********************** * TYPEDEFS @@ -291,8 +291,10 @@ static void sysmon_task(void * param) /*Get CPU and memory information */ uint8_t cpu_busy = 0; -#if USE_IDLE != 0 +#if USE_IDLE != 0 /*Use the more precise idle module if enabled*/ cpu_busy = 100 - idle_get(); +#else + cpu_busy = 100 - ptask_get_idle(); #endif uint8_t mem_used_pct = 0; @@ -350,13 +352,8 @@ static void lv_app_sysmon_refr(void) char buf_long[256]; char buf_short[128]; -#if USE_IDLE != 0 sprintf(buf_long, "%c%s CPU: %d %%%c\n\n",TXT_RECOLOR_CMD, CPU_LABEL_COLOR, cpu_pct[LV_APP_SYSMON_PNUM - 1], TXT_RECOLOR_CMD); sprintf(buf_short, "CPU: %d %%\n", cpu_pct[LV_APP_SYSMON_PNUM - 1]); -#else - sprintf(buf_long, "%c%s CPU: N/A%c\n\n",TXT_RECOLOR_CMD, CPU_LABEL_COLOR, TXT_RECOLOR_CMD); - strcpy(buf_short, "CPU: N/A\n"); -#endif #if USE_DYN_MEM != 0 && DM_CUSTOM == 0 sprintf(buf_long, "%s%c%s MEMORY: %d %%%c\nTotal: %d bytes\nUsed: %d bytes\nFree: %d bytes\nFrag: %d %%", diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index 02071a84c..ba5b4b5cc 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -254,6 +254,8 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) my_win_data_t * win_data = app->win_data; my_app_data_t * app_data = app->app_data; + lv_cont_set_layout(lv_page_get_scrl(lv_win_get_page(win)), LV_CONT_LAYOUT_PRETTY); + /*Create a label for the text of the terminal*/ win_data->label = lv_label_create(win, NULL); lv_label_set_long_mode(win_data->label, LV_LABEL_LONG_BREAK); @@ -262,21 +264,20 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Create a text area. Text can be added to the terminal from here by app. keyboard.*/ win_data->ta = lv_ta_create(win, NULL); - lv_obj_set_size(win_data->ta, LV_HOR_RES / 2, LV_VER_RES / 4); + lv_obj_set_size(win_data->ta, lv_win_get_width(win), LV_VER_RES / 4); lv_obj_set_free_p(win_data->ta, app); lv_page_set_rel_action(win_data->ta, win_ta_rel_action); + lv_page_glue_obj(win_data->ta, true); lv_ta_set_text(win_data->ta, ""); - if(app_data->txt[0] != '\0') lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, OBJ_PAD, OBJ_PAD); - else lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, OBJ_PAD, OBJ_PAD); /*Create a clear button*/ win_data->clear_btn = lv_btn_create(win, NULL); lv_cont_set_fit(win_data->clear_btn, true, true); lv_obj_set_free_p(win_data->clear_btn, app); + lv_page_glue_obj(win_data->ta, true); lv_btn_set_rel_action(win_data->clear_btn, win_clear_rel_action); lv_obj_t * btn_label = lv_label_create(win_data->clear_btn, NULL); lv_label_set_text(btn_label, "Clear"); - lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, OBJ_PAD, 0); /*Align the window to see the text area on the bottom*/ lv_obj_t * page = lv_win_get_page(app->win); @@ -398,8 +399,6 @@ static lv_action_res_t win_clear_rel_action(lv_obj_t * btn, lv_dispi_t * dispi) if(win_data != NULL) { lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, NULL, LV_ALIGN_IN_TOP_LEFT, OBJ_PAD, OBJ_PAD); - lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, OBJ_PAD, 0); lv_obj_t * page = lv_win_get_page(app->win); lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } @@ -482,8 +481,6 @@ static void add_data(lv_app_inst_t * app, const void * data, uint16_t data_len) if(win_data != NULL) { lv_label_set_text_static(win_data->label, app_data->txt); - lv_obj_align(win_data->ta, win_data->label, LV_ALIGN_OUT_BOTTOM_LEFT, OBJ_PAD, OBJ_PAD); - lv_obj_align(win_data->clear_btn, win_data->ta, LV_ALIGN_OUT_RIGHT_TOP, OBJ_PAD, 0); lv_obj_t * page = lv_win_get_page(app->win); lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); } diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 0b171afe5..7da18e76e 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -73,9 +73,6 @@ void lv_init(void) /*Init. the screen refresh system*/ lv_refr_init(); - - /*Init. the animations*/ - anim_init(); /*Create the default screen*/ ll_init(&scr_ll, sizeof(lv_obj_t)); @@ -151,7 +148,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->drag_en = 0; new_obj->drag_throw_en = 0; new_obj->drag_parent = 0; - new_obj->style_iso = 0; new_obj->hidden = 0; new_obj->top_en = 0; new_obj->protect = LV_PROTECT_NONE; @@ -193,7 +189,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->drag_en = 0; new_obj->drag_throw_en = 0; new_obj->drag_parent = 0; - new_obj->style_iso = 0; new_obj->hidden = 0; new_obj->top_en = 0; new_obj->protect = LV_PROTECT_NONE; @@ -222,10 +217,6 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->style_p = copy->style_p; - if(copy->style_iso != 0) { - lv_obj_iso_style(new_obj, dm_get_size(copy->style_p)); - } - lv_obj_set_pos(new_obj, lv_obj_get_x(copy), lv_obj_get_y(copy)); } @@ -243,7 +234,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) /** * Delete 'obj' and all of its children - * @param obj + * @param obj pointer to an object to delete */ void lv_obj_del(lv_obj_t * obj) { @@ -281,7 +272,6 @@ void lv_obj_del(lv_obj_t * obj) /*Delete the base objects*/ if(obj->ext != NULL) dm_free(obj->ext); - if(obj->style_iso != 0) dm_free(obj->style_p); dm_free(obj); /*Free the object itself*/ /* Reset all display input (dispi) because @@ -461,7 +451,7 @@ void lv_obj_set_pos(lv_obj_t * obj, cord_t x, cord_t y) /** * Set relative the position of an object (relative to the parent). - * The coordinates will be upscaled to compensate LV_DOWNSCALE. + * The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side of the parent. (will be multiplied with LV_DOWNSCALE) * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) @@ -483,7 +473,7 @@ void lv_obj_set_x(lv_obj_t * obj, cord_t x) /** * Set the x coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side from the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -504,7 +494,7 @@ void lv_obj_set_y(lv_obj_t * obj, cord_t y) /** * Set the y coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -553,7 +543,7 @@ void lv_obj_set_size(lv_obj_t * obj, cord_t w, cord_t h) } /** - * Set the size of an object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Set the size of an object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) * @param h new height (will be multiplied with LV_DOWNSCALE) @@ -574,7 +564,7 @@ void lv_obj_set_width(lv_obj_t * obj, cord_t w) } /** - * Set the width of an object. The width will be upscaled to compensate LV_DOWNSCALE + * Set the width of an object. The width will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) */ @@ -594,7 +584,7 @@ void lv_obj_set_height(lv_obj_t * obj, cord_t h) } /** - * Set the height of an object. The height will be upscaled to compensate LV_DOWNSCALE + * Set the height of an object. The height will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param h new height (will be multiplied with LV_DOWNSCALE) */ @@ -742,7 +732,7 @@ void lv_obj_align(lv_obj_t * obj,lv_obj_t * base, lv_align_t align, cord_t x_mod /** - * Align an object to an other object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Align an object to an other object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object to align * @param base pointer to an object (if NULL the parent is used). 'obj' will be aligned to it. * @param align type of alignment (see 'lv_align_t' enum) @@ -777,10 +767,6 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size) */ void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style) { - if(obj->style_iso != 0) { - dm_free(obj->style_p); - obj->style_iso = 0; - } obj->style_p = style; /*Send a signal about style change to every children with NULL style*/ @@ -788,28 +774,6 @@ void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style) } -/** - * Isolate the style of an object. In other words a unique style will be created - * for this object which can be freely modified independently from the style of the - * other objects. - */ -void * lv_obj_iso_style(lv_obj_t * obj, uint32_t style_size) -{ - if(obj->style_iso != 0) return obj->style_p; - - void * ori_style_p = lv_obj_get_style(obj); - void * iso_style = dm_alloc(style_size); - dm_assert(iso_style); - memcpy(iso_style, ori_style_p, style_size); - - obj->style_iso = 1; - obj->style_p = iso_style; - - lv_obj_refr_style(obj); - - return obj->style_p; -} - /** * Notify an object about its style is modified * @param obj pointer to an object @@ -827,7 +791,7 @@ void lv_obj_refr_style(lv_obj_t * obj) * @param style pointer to a style. Only the objects with this style will be notified * (NULL to notify all objects) */ -void lv_style_refr_all(void * style) +void lv_style_refr_objs(void * style) { lv_obj_t * i; LL_READ(scr_ll, i) { @@ -1330,16 +1294,6 @@ bool lv_obj_get_drag_parent(lv_obj_t * obj) return obj->drag_parent == 0 ? false : true; } -/** - * Get the style isolation attribute of an object - * @param obj pointer to an object - * @return pointer to a style - */ -bool lv_obj_get_style_iso(lv_obj_t * obj) -{ - return obj->style_iso == 0 ? false : true; -} - /** * Get the protect field of an object * @param obj pointer to an object @@ -1559,7 +1513,6 @@ static void lv_obj_del_child(lv_obj_t * obj) /*Delete the base objects*/ if(obj->ext != NULL) dm_free(obj->ext); - if(obj->style_iso != 0) dm_free(obj->style_p); dm_free(obj); /*Free the object itself*/ } diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index f4ddee676..df95fda42 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -79,34 +79,33 @@ typedef bool (* lv_signal_f_t) (struct __LV_OBJ_T * obj, lv_signal_t sign, void typedef struct __LV_OBJ_T { - struct __LV_OBJ_T * par; - ll_dsc_t child_ll; + struct __LV_OBJ_T * par; /*Pointer to the parent object*/ + ll_dsc_t child_ll; /*Linked list to store the children objects*/ - area_t cords; + area_t cords; /*Coordinates of the object (x1, y1, x2, y2)*/ - lv_signal_f_t signal_f; - lv_design_f_t design_f; + lv_signal_f_t signal_f; /*Object type specific signal function*/ + lv_design_f_t design_f; /*Object type specific design function*/ - void * ext; /*The object attributes can be extended here*/ - lv_style_t * style_p; /*Object specific style*/ + void * ext; /*Object type specific extended data*/ + lv_style_t * style_p; /*Pointer to the object's style*/ #if LV_OBJ_FREE_P != 0 - void * free_p; /*Application specific pointer (set it freely)*/ + void * free_p; /*Application specific pointer (set it freely)*/ #endif /*Attributes and states*/ - uint8_t click_en :1; /*1: can be pressed by a display input device*/ - uint8_t drag_en :1; /*1: enable the dragging*/ + uint8_t click_en :1; /*1: Can be pressed by a display input device*/ + uint8_t drag_en :1; /*1: Enable the dragging*/ uint8_t drag_throw_en:1; /*1: Enable throwing with drag*/ - uint8_t drag_parent :1; /*1. Parent will be dragged instead*/ - uint8_t style_iso :1; /*1: The object has got an own style*/ + uint8_t drag_parent :1; /*1: Parent will be dragged instead*/ uint8_t hidden :1; /*1: Object is hidden*/ - uint8_t top_en :1; /*1: If the object or its children is clicked it goes to the foreground*/ + uint8_t top_en :1; /*1: If the object or its children is clicked it goes to the foreground*/ uint8_t reserved :1; uint8_t protect; /*Automatically happening actions can be prevented. 'OR'ed values from lv_obj_prot_t*/ - cord_t ext_size; /*EXTtend the size of the object in every direction. Used to draw shadow, shine etc.*/ + cord_t ext_size; /*EXTtend the size of the object in every direction. E.g. for shadow drawing*/ #if LV_OBJ_FREE_NUM != 0 uint8_t free_num; /*Application specific identifier (set it freely)*/ @@ -125,26 +124,26 @@ typedef enum typedef enum { LV_ALIGN_CENTER = 0, - LV_ALIGN_IN_TOP_LEFT, - LV_ALIGN_IN_TOP_MID, - LV_ALIGN_IN_TOP_RIGHT, - LV_ALIGN_IN_BOTTOM_LEFT, - LV_ALIGN_IN_BOTTOM_MID, - LV_ALIGN_IN_BOTTOM_RIGHT, - LV_ALIGN_IN_LEFT_MID, - LV_ALIGN_IN_RIGHT_MID, - LV_ALIGN_OUT_TOP_LEFT, - LV_ALIGN_OUT_TOP_MID, - LV_ALIGN_OUT_TOP_RIGHT, - LV_ALIGN_OUT_BOTTOM_LEFT, - LV_ALIGN_OUT_BOTTOM_MID, - LV_ALIGN_OUT_BOTTOM_RIGHT, - LV_ALIGN_OUT_LEFT_TOP, - LV_ALIGN_OUT_LEFT_MID, - LV_ALIGN_OUT_LEFT_BOTTOM, - LV_ALIGN_OUT_RIGHT_TOP, - LV_ALIGN_OUT_RIGHT_MID, - LV_ALIGN_OUT_RIGHT_BOTTOM, + LV_ALIGN_IN_TOP_LEFT, + LV_ALIGN_IN_TOP_MID, + LV_ALIGN_IN_TOP_RIGHT, + LV_ALIGN_IN_BOTTOM_LEFT, + LV_ALIGN_IN_BOTTOM_MID, + LV_ALIGN_IN_BOTTOM_RIGHT, + LV_ALIGN_IN_LEFT_MID, + LV_ALIGN_IN_RIGHT_MID, + LV_ALIGN_OUT_TOP_LEFT, + LV_ALIGN_OUT_TOP_MID, + LV_ALIGN_OUT_TOP_RIGHT, + LV_ALIGN_OUT_BOTTOM_LEFT, + LV_ALIGN_OUT_BOTTOM_MID, + LV_ALIGN_OUT_BOTTOM_RIGHT, + LV_ALIGN_OUT_LEFT_TOP, + LV_ALIGN_OUT_LEFT_MID, + LV_ALIGN_OUT_LEFT_BOTTOM, + LV_ALIGN_OUT_RIGHT_TOP, + LV_ALIGN_OUT_RIGHT_MID, + LV_ALIGN_OUT_RIGHT_BOTTOM, }lv_align_t; @@ -191,7 +190,7 @@ void lv_obj_refr_style(lv_obj_t * obj); * @param style pinter to a style. Only objects with this style will be notified * (NULL to notify all objects) */ -void lv_style_refr_all(void * style); +void lv_style_refr_objs(void * style); /** * Create a basic object @@ -204,7 +203,7 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy); /** * Delete 'obj' and all of its children - * @param obj + * @param obj pointer to an object to delete */ void lv_obj_del(lv_obj_t * obj); @@ -355,13 +354,6 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size); */ void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style); -/** - * Isolate the style of an object. In other words a unique style will be created - * for this object which can be freely modified independently from the style of the - * other objects. - */ -void * lv_obj_iso_style(lv_obj_t * obj, uint32_t style_size); - /** * Hide an object. It won't be visible and clickable. * @param obj pointer to an object @@ -449,6 +441,7 @@ void * lv_obj_alloc_ext(lv_obj_t * obj, uint16_t ext_size); */ void lv_obj_refr_ext_size(lv_obj_t * obj); +#if LV_OBJ_FREE_NUM != 0 /** * Set an application specific number for an object. * It can help to identify objects in the application. @@ -456,7 +449,9 @@ void lv_obj_refr_ext_size(lv_obj_t * obj); * @param free_num the new free number */ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num); +#endif +#if LV_OBJ_FREE_P != 0 /** * Set an application specific pointer for an object. * It can help to identify objects in the application. @@ -464,6 +459,7 @@ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num); * @param free_p the new free pinter */ void lv_obj_set_free_p(lv_obj_t * obj, void * free_p); +#endif /** * Animate an object @@ -602,13 +598,6 @@ bool lv_obj_get_drag_throw(lv_obj_t * obj); */ bool lv_obj_get_drag_parent(lv_obj_t * obj); -/** - * Get the style isolation attribute of an object - * @param obj pointer to an object - * @return pointer to a style - */ -bool lv_obj_get_style_iso(lv_obj_t * obj); - /** * Get the protect field of an object * @param obj pointer to an object @@ -646,19 +635,23 @@ lv_design_f_t lv_obj_get_design_f(lv_obj_t * obj); */ void * lv_obj_get_ext(lv_obj_t * obj); +#if LV_OBJ_FREE_NUM != 0 /** * Get the free number * @param obj pointer to an object * @return the free number */ uint8_t lv_obj_get_free_num(lv_obj_t * obj); +#endif +#if LV_OBJ_FREE_P != 0 /** * Get the free pointer * @param obj pointer to an object * @return the free pointer */ void * lv_obj_get_free_p(lv_obj_t * obj); +#endif /********************** * MACROS diff --git a/lv_objx/lv_cont.c b/lv_objx/lv_cont.c index 0220d896d..94fb6993e 100644 --- a/lv_objx/lv_cont.c +++ b/lv_objx/lv_cont.c @@ -431,7 +431,7 @@ static void lv_cont_layout_pretty(lv_obj_t * cont) child_rc = child_rs; /*Initially the the row starter and closer is the same*/ while(child_rs != NULL) { cord_t h_row = 0; - cord_t w_row = style->hpad * 2; /*The width is at least the left-right hpad*/ + cord_t w_row = style->hpad * 2; /*The width is at least the left+right hpad*/ uint32_t obj_num = 0; /*Find the row closer object and collect some data*/ @@ -447,13 +447,12 @@ static void lv_cont_layout_pretty(lv_obj_t * cont) if(obj_num == 0) child_rs = child_rc; /*If the first object was hidden (or too long) then set the next as first */ }while(child_rc != NULL); - /*Step back one child because the last is already not fit*/ + /*Step back one child because the last already not fit*/ if(child_rc != NULL && obj_num != 0) child_rc = ll_get_next(&cont->child_ll, child_rc); /*If the object is too long then align it to the middle*/ if(obj_num == 0) { if(child_rc != NULL) { - h_row = lv_obj_get_height(child_rc); lv_obj_align(child_rc, cont, LV_ALIGN_IN_TOP_MID, 0, act_y); } } @@ -467,14 +466,15 @@ static void lv_cont_layout_pretty(lv_obj_t * cont) cord_t new_opad = (w_obj - w_row) / (obj_num - 1); cord_t act_x = style->hpad; /*x init*/ child_tmp = child_rs; - do{ + while(child_tmp != NULL) { if(lv_obj_get_hidden(child_tmp) == false && lv_obj_is_protected(child_tmp, LV_PROTECT_POS) == false) { lv_obj_align(child_tmp, cont, LV_ALIGN_IN_TOP_LEFT, act_x, act_y); act_x += lv_obj_get_width(child_tmp) + new_opad; } + if(child_tmp == child_rc) break; child_tmp = ll_get_prev(&cont->child_ll, child_tmp); - }while(child_tmp != child_rc); + } } diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 09b1e73a8..4d8253aed 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -285,7 +285,6 @@ void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr) lv_btn_set_styles(cbtn, ext->style_cbtn_rel, ext->style_cbtn_pr, NULL, NULL, NULL); cbtn = lv_obj_get_child(ext->btnh, cbtn); } - } /*===================== From c72a16147cc063a08445205b3eca49295347dbb5 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Mon, 1 May 2017 22:36:35 +0200 Subject: [PATCH 40/53] lv_app style: minor updates --- lv_app/lv_app.c | 15 +++++++++------ lv_appx/lv_app_sysmon.c | 1 + lv_appx/lv_app_terminal.c | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index b3b4f958f..0725b1197 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -1011,9 +1011,10 @@ static void lv_app_init_style(void) /*Menu style*/ lv_style_get(LV_STYLE_PLAIN,&app_style.menu); app_style.menu.ccolor = COLOR_WHITE; - app_style.menu.mcolor = COLOR_BLACK; - app_style.menu.gcolor = COLOR_BLACK; - app_style.menu.opa = OPA_80; + app_style.menu.mcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu.gcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu.bcolor = COLOR_MAKE(0x80, 0x80, 0x80); + app_style.menu.opa = OPA_COVER; app_style.menu.radius = 0; app_style.menu.bwidth = 0; app_style.menu.swidth = 0; @@ -1022,9 +1023,10 @@ static void lv_app_init_style(void) app_style.menu.opad = LV_DPI / 12; lv_style_get(LV_STYLE_BTN_REL,&app_style.menu_btn_rel); - app_style.menu_btn_rel.ccolor = COLOR_MAKE(0xd0, 0xe0, 0xf0); - app_style.menu_btn_rel.mcolor = COLOR_BLACK; - app_style.menu_btn_rel.gcolor = COLOR_BLACK; + app_style.menu_btn_rel.ccolor = COLOR_WHITE; + app_style.menu_btn_rel.mcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu_btn_rel.gcolor = COLOR_MAKE(0x30, 0x30, 0x30); + app_style.menu_btn_rel.bcolor = COLOR_MAKE(0x80, 0x80, 0x80); app_style.menu_btn_rel.bwidth = 0; app_style.menu_btn_rel.radius = 0; app_style.menu_btn_rel.swidth = 0; @@ -1038,6 +1040,7 @@ static void lv_app_init_style(void) memcpy(&app_style.menu_btn_pr, &app_style.menu_btn_rel, sizeof(lv_style_t)); app_style.menu_btn_pr.mcolor = COLOR_GRAY; app_style.menu_btn_pr.gcolor = COLOR_GRAY; + app_style.menu_btn_pr.bcolor = COLOR_GRAY; app_style.menu_btn_pr.bwidth = 0; app_style.menu_btn_pr.radius = 0; app_style.menu_btn_pr.empty = 0; diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index 936933576..ef747f4f5 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -234,6 +234,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) { my_win_data_t * win_data = app->win_data; + /*Make the window content responsive*/ lv_cont_set_layout(lv_page_get_scrl(lv_win_get_page(win)), LV_CONT_LAYOUT_PRETTY); /*Create a chart with two data lines*/ diff --git a/lv_appx/lv_app_terminal.c b/lv_appx/lv_app_terminal.c index ba5b4b5cc..0e91e946a 100644 --- a/lv_appx/lv_app_terminal.c +++ b/lv_appx/lv_app_terminal.c @@ -254,6 +254,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) my_win_data_t * win_data = app->win_data; my_app_data_t * app_data = app->app_data; + /*Make the window content responsive*/ lv_cont_set_layout(lv_page_get_scrl(lv_win_get_page(win)), LV_CONT_LAYOUT_PRETTY); /*Create a label for the text of the terminal*/ @@ -264,7 +265,7 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Create a text area. Text can be added to the terminal from here by app. keyboard.*/ win_data->ta = lv_ta_create(win, NULL); - lv_obj_set_size(win_data->ta, lv_win_get_width(win), LV_VER_RES / 4); + lv_obj_set_size(win_data->ta, 3 * LV_HOR_RES / 5, LV_VER_RES / 4); lv_obj_set_free_p(win_data->ta, app); lv_page_set_rel_action(win_data->ta, win_ta_rel_action); lv_page_glue_obj(win_data->ta, true); @@ -282,7 +283,6 @@ static void my_win_open(lv_app_inst_t * app, lv_obj_t * win) /*Align the window to see the text area on the bottom*/ lv_obj_t * page = lv_win_get_page(app->win); lv_obj_align(lv_page_get_scrl(page), NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, - LV_VER_RES); - } /** From 69876763e2f06b09550648d288d35ba895948ce9 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Tue, 2 May 2017 00:16:48 +0200 Subject: [PATCH 41/53] animation: add more control over object animations (e.g. ddlist open/close anim time set by func. instead of define) --- lv_app/lv_app.c | 44 +++++++++++--------------- lv_app/lv_app_util/lv_app_kb.c | 4 +-- lv_app/lv_app_util/lv_app_notice.c | 7 ++++- lv_conf_temp.h | 43 ++++--------------------- lv_objx/lv_bar.c | 34 ++++++++++++++++++++ lv_objx/lv_bar.h | 8 +++++ lv_objx/lv_ddlist.c | 50 +++++++++++++++++++----------- lv_objx/lv_ddlist.h | 1 + lv_objx/lv_mbox.c | 26 +++++++--------- lv_objx/lv_mbox.h | 2 +- lv_objx/lv_page.c | 46 +++++++++++---------------- lv_objx/lv_page.h | 2 +- 12 files changed, 138 insertions(+), 129 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 0725b1197..9f55da900 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -59,7 +59,7 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app); static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app); -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +#if LV_APP_ANIM_WIN != 0 static void lv_app_win_open_anim_cb(lv_obj_t * app_win); static void lv_app_win_close_anim_cb(lv_obj_t * app_win); static void lv_app_win_minim_anim_cb(lv_obj_t * app_win); @@ -229,12 +229,8 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) /*Create a title on top of the shortcut*/ app->sc_title = lv_label_create(app->sc, NULL); lv_obj_set_style(app->sc_title, &app_style.sc_title); - #if LV_APP_EFFECT_ANIM != 0 - lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_SCROLL); - #else - lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(font_get(app_style.sc_title_style.font)) >> FONT_ANTIALIAS); + lv_obj_set_size(app->sc_title, LV_APP_SC_WIDTH, font_get_height(app_style.sc_title.font) >> FONT_ANTIALIAS); lv_label_set_long_mode(app->sc_title, LV_LABEL_LONG_DOTS); - #endif lv_label_set_text(app->sc_title, app->name); lv_obj_align_us(app->sc_title, NULL, LV_ALIGN_IN_TOP_MID, 0, LV_DPI / 20); } else { @@ -245,11 +241,7 @@ lv_obj_t * lv_app_sc_open(lv_app_inst_t * app) app->dsc->sc_open(app, app->sc); #if LV_APP_DESKTOP != 0 -#if LV_APP_EFFECT_ANIM == 0 - lv_page_focus(sc_page, app->sc, false); -#else - lv_page_focus(sc_page, app->sc, true); -#endif + lv_page_focus(sc_page, app->sc, LV_APP_ANIM_DESKTOP); #endif return app->sc; @@ -652,7 +644,7 @@ static lv_action_res_t lv_app_sc_rel_action(lv_obj_t * sc, lv_dispi_t * dispi) if(con_send == NULL) { #if LV_APP_DESKTOP != 0 -#if LV_APP_EFFECT_ANIM == 0 +#if LV_APP_ANIM_DESKTOP == 0 lv_page_focus(sc_page, sc, false); #else lv_page_focus(sc_page, sc, true); @@ -744,7 +736,7 @@ static lv_action_res_t lv_app_win_close_action(lv_obj_t * close_btn, lv_dispi_t lv_app_kb_close(false); -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_EFFECT_OPA != 0 && LV_APP_ANIM_WIN != 0 +#if LV_APP_ANIM_WIN != 0 /*Temporally set a simpler style for the window during the animation*/ lv_obj_t * win_page = lv_win_get_page(win); lv_page_set_sb_mode(win_page, LV_PAGE_SB_MODE_OFF); @@ -832,7 +824,7 @@ static lv_action_res_t lv_app_win_conf_action(lv_obj_t * set_btn, lv_dispi_t * d static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) { /*Make an animation on window open*/ -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +#if USE_ANIM != 0 && LV_APP_ANIM_WIN != 0 area_t cords; /*If no shortcut simulate one and load the its coordinates*/ if(app->sc == NULL) { @@ -863,12 +855,12 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) a.var = app->win; a.path = anim_get_path(ANIM_PATH_LIN); - a.start = lv_obj_get_width(app->sc); + a.start = area_get_width(&cords); a.end = LV_HOR_RES; a.fp = (anim_fp_t) lv_obj_set_width; anim_create(&a); - a.start = lv_obj_get_height(app->sc); + a.start = area_get_height(&cords); a.end = LV_VER_RES; a.fp = (anim_fp_t) lv_obj_set_height; anim_create(&a); @@ -884,16 +876,17 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) a.end_cb = (anim_cb_t)lv_app_win_open_anim_cb; anim_create(&a); -#endif /*LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0*/ - /* Now a screen sized window is created but is is resized by the animations. * Therefore the whole screen invalidated but only a small part is changed. * So clear the invalidate buffer an refresh only the real area. * Independently other parts on the screen might be changed - * but they will be covered by the window after the animations*/ + * but they will be soon covered by the window after the animations*/ lv_inv_area(NULL); lv_inv_area(&cords); +#endif /* LV_APP_ANIM_WIN != 0*/ + + return LV_ACTION_RES_OK; } @@ -904,7 +897,7 @@ static lv_action_res_t lv_app_win_open_anim_create(lv_app_inst_t * app) */ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) { -#if LV_APP_EFFECT_ANIM != 0 && LV_APP_ANIM_WIN != 0 +#if LV_APP_ANIM_WIN != 0 area_t cords; if(app->sc == NULL) { cords.x1 = LV_HOR_RES / 2 - LV_APP_SC_WIDTH / 2; @@ -935,12 +928,12 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) a.start = LV_HOR_RES; - a.end = lv_obj_get_width(&cords); + a.end = area_get_width(&cords); a.fp = (anim_fp_t) lv_obj_set_width; anim_create(&a); a.start = LV_VER_RES; - a.end = lv_obj_get_height(&cords); + a.end = area_get_height(&cords); a.fp = (anim_fp_t) lv_obj_set_height; anim_create(&a); @@ -962,8 +955,7 @@ static lv_action_res_t lv_app_win_minim_anim_create(lv_app_inst_t * app) #endif } -#if LV_APP_EFFECT_ANIM != 0 - +#if LV_APP_ANIM_WIN != 0 /** * Called when the window open animation is ready to close the application @@ -1049,7 +1041,7 @@ static void lv_app_init_style(void) /*Shortcut styles*/ lv_style_get(LV_STYLE_BTN_REL,&app_style.sc_rel); app_style.sc_rel.ccolor = COLOR_MAKE(0x10, 0x18, 0x20); - app_style.sc_rel.opa = OPA_80; + app_style.sc_rel.opa = OPA_COVER; app_style.sc_rel.mcolor = COLOR_WHITE; app_style.sc_rel.gcolor = COLOR_MAKE(0x20, 0x30, 0x40); app_style.sc_rel.bcolor = COLOR_MAKE(0x40, 0x60, 0x80); @@ -1060,7 +1052,7 @@ static void lv_app_init_style(void) app_style.sc_rel.txt_align = 1; memcpy(&app_style.sc_pr, &app_style.sc_rel, sizeof(lv_style_t)); - app_style.sc_pr.opa = OPA_80; + app_style.sc_pr.opa = OPA_COVER; app_style.sc_pr.mcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); app_style.sc_pr.gcolor = COLOR_MAKE(0x00, 0x00, 0x00); app_style.sc_pr.bcolor = COLOR_MAKE(0xB0, 0xD0, 0xF0); diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 9530d3ec5..825a4213e 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -151,7 +151,7 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t #if LV_APP_ANIM_LEVEL != 0 lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); #else - lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); + lv_page_focus(lv_win_get_page(kb_win), kb_ta, 0); #endif } @@ -252,7 +252,7 @@ static lv_action_res_t lv_app_kb_action(lv_obj_t * btnm, uint16_t i) #if LV_APP_ANIM_LEVEL != 0 lv_page_focus(lv_win_get_content(kb_win), kb_ta, true); #else - lv_page_focus(lv_win_get_page(kb_win), kb_ta, false); + lv_page_focus(lv_win_get_page(kb_win), kb_ta, 0); #endif } return LV_ACTION_RES_OK; diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index db54bb09e..e30eaf33a 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -23,6 +23,11 @@ #define LV_APP_NOTICE_SHOW_TIME 4000 #endif +#ifndef LV_APP_NOTICE_CLOSE_ANIM_TIME +#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 +#endif + + #ifndef LV_APP_NOTICE_MAX_NUM #define LV_APP_NOTICE_MAX_NUM 6 #endif @@ -84,7 +89,7 @@ lv_obj_t * lv_app_notice_add(const char * format, ...) lv_mbox_set_text(mbox, txt); #if LV_APP_NOTICE_SHOW_TIME != 0 - lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME); + lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME, LV_APP_NOTICE_CLOSE_ANIM_TIME); #endif /*Delete the last children if there are too many*/ diff --git a/lv_conf_temp.h b/lv_conf_temp.h index 6ebb2b33f..e22644ad7 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -97,9 +97,6 @@ /*Page (dependencies: lv_rect)*/ #define USE_LV_PAGE 1 -#if USE_LV_PAGE != 0 -#define LV_PAGE_ANIM_FOCUS_TIME 300 /*List focus animation time [ms] (0: turn off the animation)*/ -#endif /*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/ #define USE_LV_WIN 1 @@ -125,9 +122,6 @@ /*Message box (dependencies: lv_rect, lv_btn, lv_label)*/ #define USE_LV_MBOX 1 -#if USE_LV_MBOX != 0 -#define LV_MBOX_ANIM_TIME 200 /*How fast animate out the message box in auto close. 0: no animation [ms]*/ -#endif /*Text area (dependencies: lv_label, lv_page)*/ #define USE_LV_TA 1 @@ -154,9 +148,6 @@ /*Drop down list (dependencies: lv_page, lv_label)*/ #define USE_LV_DDLIST 1 -#if USE_LV_DDLIST != 0 -#define LV_DDLIST_ANIM_TIME 100 /*DDL open/close animation in milliseconds (0: disable animation)*/ -#endif /*Bar (dependencies: lv_bar)*/ #define USE_LV_SLIDER 1 @@ -176,37 +167,15 @@ #define LV_APP_FONT_MEDIUM LV_FONT_DEFAULT #define LV_APP_FONT_LARGE FONT_DEJAVU_40 -/* Internal icons: - * 0: Do not use internal icons (img_close, img_add etc. icons have to be provided) - * 1: Use simple sized icons - * 2: Use double sized icons*/ -#define LV_APP_USE_INTERNAL_ICONS 2 - -/*Enable or disable the internal icons individually*/ -#if LV_APP_USE_INTERNAL_ICONS != 0 -#define USE_IMG_CLOSE 1 -#define USE_IMG_DOWN 1 -#define USE_IMG_DRIVER 1 -#define USE_IMG_FILE 1 -#define USE_IMG_FOLDER 1 -#define USE_IMG_LEFT 1 -#define USE_IMG_OK 1 -#define USE_IMG_RIGHT 1 -#define USE_IMG_UP 1 -#endif - /*Animation settings*/ -#define LV_APP_EFFECT_OPA 1 /*Enable the opacity in the application style (can be modified)*/ -#define LV_APP_EFFECT_ANIM 1 /*Enable the animation of the applications*/ -#define LV_APP_EFFECT_OPA_ANIM 1 /*Enable the using opacity in the application animations*/ -#define LV_APP_ANIM_WIN 200 /*Animation time in milliseconds (0: turn off animation)*/ -#define LV_APP_ANIM_SC 200 /*Animation time in milliseconds (0: turn off animation)*/ -#define LV_APP_ANIM_NOTICE 300 /*Obsolete, use LV_MBOX_ANIM. */ +#define LV_APP_ANIM_WIN 200 /*Animation time in milliseconds (0: turn off animation)*/ +#define LV_APP_ANIM_DESKTOP 200 /*Animation on the desktop (0: turn off animation)*/ /* App. utility settings */ -#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ -#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/ -#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ +#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ +#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 /*Notice close animation time. [ms] 0: no animation */ +#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/ +#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ /*================== * LV APP X USAGE * ================*/ diff --git a/lv_objx/lv_bar.c b/lv_objx/lv_bar.c index bbd68ef08..1cbcfb2e5 100644 --- a/lv_objx/lv_bar.c +++ b/lv_objx/lv_bar.c @@ -13,6 +13,7 @@ #include #include "../lv_draw/lv_draw.h" +#include "misc/gfx/anim.h" #include /********************* @@ -135,6 +136,39 @@ void lv_bar_set_value(lv_obj_t * bar, int16_t value) lv_obj_inv(bar); } +/** + * Set a new value with animation on the bar + * @param bar pointer to a bar object + * @param value new value + * @param anim_time animation time in milliseconds + */ +void lv_bar_set_value_anim(lv_obj_t * bar, int16_t value, uint16_t anim_time) +{ + + lv_bar_ext_t * ext = lv_obj_get_ext(bar); + int16_t new_value; + new_value = value > ext->max_value ? ext->max_value : value; + new_value = new_value < ext->min_value ? ext->min_value : new_value; + + anim_t a; + a.var = bar; + a.start = ext->act_value; + a.end = new_value; + a.fp = (anim_fp_t)lv_bar_set_value; + a.path = anim_get_path(ANIM_PATH_LIN); + a.end_cb = NULL; + a.act_time = 0; + a.time = anim_time; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + + anim_create(&a); + +} + + /** * Set minimum and the maximum values of a bar * @param bar pointer to he bar object diff --git a/lv_objx/lv_bar.h b/lv_objx/lv_bar.h index 00002b115..cdb8b60df 100644 --- a/lv_objx/lv_bar.h +++ b/lv_objx/lv_bar.h @@ -63,6 +63,14 @@ bool lv_bar_signal(lv_obj_t * bar, lv_signal_t sign, void * param); */ void lv_bar_set_value(lv_obj_t * bar, int16_t value); +/** + * Set a new value with animation on the bar + * @param bar pointer to a bar object + * @param value new value + * @param anim_time animation time in milliseconds + */ +void lv_bar_set_value_anim(lv_obj_t * bar, int16_t value, uint16_t anim_time); + /** * Set minimum and the maximum values of a bar * @param bar pointer to he bar object diff --git a/lv_objx/lv_ddlist.c b/lv_objx/lv_ddlist.c index 47068daf3..54ecb5507 100644 --- a/lv_objx/lv_ddlist.c +++ b/lv_objx/lv_ddlist.c @@ -17,9 +17,8 @@ /********************* * DEFINES *********************/ -#ifndef LV_DDLIST_ANIM_TIME -#define LV_DDLIST_ANIM_TIME 100 /*ms*/ -#endif +#define LV_DDLIST_DEF_ANIM_TIME 200 /*ms*/ + /********************** * TYPEDEFS **********************/ @@ -29,7 +28,7 @@ **********************/ static bool lv_ddlist_design(lv_obj_t * ddlist, const area_t * mask, lv_design_mode_t mode); static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * dispi); -static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en); +static void lv_ddlist_refr_size(lv_obj_t * ddlist, uint16_t anim_time); static void lv_ddlist_pos_act_option(lv_obj_t * ddlist); /********************** @@ -71,6 +70,7 @@ lv_obj_t * lv_ddlist_create(lv_obj_t * par, lv_obj_t * copy) ext->opened = 0; ext->auto_size = 0; ext->sel_opt = 0; + ext->anim_time = LV_DDLIST_DEF_ANIM_TIME; ext->style_sel = lv_style_get(LV_STYLE_PLAIN_COLOR, NULL); /*The signal and design functions are not copied so set them here*/ @@ -128,7 +128,7 @@ bool lv_ddlist_signal(lv_obj_t * ddlist, lv_signal_t sign, void * param) if(sign == LV_SIGNAL_STYLE_CHG) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); lv_obj_set_style(ext->opt_label, lv_obj_get_style(ddlist)); - lv_ddlist_refr_size(ddlist, false); + lv_ddlist_refr_size(ddlist, 0); } } @@ -158,7 +158,7 @@ void lv_ddlist_set_options(lv_obj_t * ddlist, const char ** options) i++; } - lv_ddlist_refr_size(ddlist, false); + lv_ddlist_refr_size(ddlist, 0); } /** @@ -201,6 +201,16 @@ void lv_ddlist_set_auto_size(lv_obj_t * ddlist, bool auto_size) ext->auto_size = auto_size == false ? 0 : 1; } +/** + * Set the open/close animation time. + * @param ddlist pointer to a drop down list + * @param anim_time: open/close animation time [ms] + */ +void lv_ddlist_set_anim_time(lv_obj_t * ddlist, uint16_t anim_time) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + ext->anim_time = anim_time; +} /** * Set the style of the rectangle on the selected option @@ -262,14 +272,22 @@ lv_style_t * lv_ddlist_get_style_select(lv_obj_t * ddlist) if(ext->style_sel == NULL) return lv_obj_get_style(ddlist); return ext->style_sel; - +} +/** + * Get the open/close animation time. + * @param ddlist pointer to a drop down list + * @return open/close animation time [ms] + */ +uint16_t lv_ddlist_get_anim_time(lv_obj_t * ddlist) +{ + lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); + return ext->anim_time; } /********************** * STATIC FUNCTIONS **********************/ - /** * Handle the drawing related tasks of the drop down lists * @param ddlist pointer to an object @@ -355,11 +373,7 @@ static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * disp ext->cb(ddlist, dispi); } } -#if LV_DDLIST_ANIM_TIME == 0 - lv_ddlist_refr_size(ddlist, false); -#else - lv_ddlist_refr_size(ddlist, true); -#endif + lv_ddlist_refr_size(ddlist, ext->anim_time); return LV_ACTION_RES_OK; @@ -367,10 +381,10 @@ static lv_action_res_t lv_ddlist_rel_action(lv_obj_t * ddlist, lv_dispi_t * disp /** * Refresh the size of drop down list according its start (open or closed) - * @param ddlist poinr to a drop down list object - * @param anim_en true: refresh the size with an animation, false: do not use animations + * @param ddlist pointer to a drop down list object + * @param anim_time animations time for open/close [ms] */ -static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) +static void lv_ddlist_refr_size(lv_obj_t * ddlist, uint16_t anim_time) { lv_ddlist_ext_t * ext = lv_obj_get_ext(ddlist); lv_style_t * style = lv_obj_get_style(ddlist); @@ -388,7 +402,7 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) cord_t font_h = font_get_height(font) >> FONT_ANTIALIAS; new_height = font_h + 2 * label_style->line_space; } - if(anim_en == false) { + if(anim_time == 0) { lv_obj_set_height(ddlist, new_height); lv_ddlist_pos_act_option(ddlist); } else { @@ -400,7 +414,7 @@ static void lv_ddlist_refr_size(lv_obj_t * ddlist, bool anim_en) a.path = anim_get_path(ANIM_PATH_LIN); a.end_cb = (anim_cb_t)lv_ddlist_pos_act_option; a.act_time = 0; - a.time = LV_DDLIST_ANIM_TIME; + a.time = ext->anim_time; a.playback = 0; a.playback_pause = 0; a.repeat = 0; diff --git a/lv_objx/lv_ddlist.h b/lv_objx/lv_ddlist.h index f503cec71..ad276bce7 100644 --- a/lv_objx/lv_ddlist.h +++ b/lv_objx/lv_ddlist.h @@ -41,6 +41,7 @@ typedef struct lv_style_t * style_sel; /*Style of the selected option*/ lv_action_t cb; /*Pointer to function to call when an option is slected*/ uint16_t sel_opt; /*Index of the current option*/ + uint16_t anim_time; /*Open/Close animation time [ms]*/ uint8_t opened :1; /*1: The list is opened*/ uint8_t auto_size :1; /*1: Set height to show all options. 0: Set height maximum to the parent bottom*/ }lv_ddlist_ext_t; diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index 6d1129686..a2f47f4ac 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -17,10 +17,6 @@ /********************* * DEFINES *********************/ -/*Test configurations*/ -#ifndef LV_MBOX_ANIM_TIME -#define LV_MBOX_ANIM_TIME 250 /*How fast animate out the message box in auto close. 0: no animation [ms]*/ -#endif /********************** * TYPEDEFS @@ -256,20 +252,20 @@ void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr) * Automatically delete the message box after a given time * @param mbox pointer to a message box object * @param tout a time (in milliseconds) to wait before delete the message box + * @param anim_time time of close animation in milliseconds (0: no animation) */ -void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout) +void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout, uint16_t anim_time) { -#if LV_MBOX_ANIM_TIME != 0 - /*Add shrinking animations*/ - lv_obj_anim(mbox, LV_ANIM_GROW_H| ANIM_OUT, LV_MBOX_ANIM_TIME, tout, NULL); - lv_obj_anim(mbox, LV_ANIM_GROW_V| ANIM_OUT, LV_MBOX_ANIM_TIME, tout, lv_obj_del); + if(anim_time != 0) { + /*Add shrinking animations*/ + lv_obj_anim(mbox, LV_ANIM_GROW_H| ANIM_OUT, anim_time, tout, NULL); + lv_obj_anim(mbox, LV_ANIM_GROW_V| ANIM_OUT, anim_time, tout, lv_obj_del); - /*When the animations start disable fit to let shrinking work*/ - lv_obj_anim(mbox, LV_ANIM_NONE, 1, tout, lv_mbox_disable_fit); - -#else - lv_obj_anim(mbox, LV_ANIM_NONE, LV_MBOX_ANIM_TIME, tout, lv_obj_del); -#endif + /*When the animations start disable fit to let shrinking work*/ + lv_obj_anim(mbox, LV_ANIM_NONE, 1, tout, lv_mbox_disable_fit); + } else { + lv_obj_anim(mbox, LV_ANIM_NONE, anim_time, tout, lv_obj_del); + } } /** diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index 91cb4c0a5..c43537538 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -111,7 +111,7 @@ void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr); * @param mbox pointer to a message box object * @param tout a time (in milliseconds) to wait before delete the message box */ -void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout); +void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout, uint16_t anim_time); /** * Stop the auto. closing of message box diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index c403bb0f2..69fbf1490 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -19,10 +19,6 @@ /********************* * DEFINES *********************/ -/*Test configurations*/ -#ifndef LV_PAGE_ANIM_FOCUS_TIME -#define LV_PAGE_ANIM_FOCUS_TIME 300 /*List focus animation time [ms] (0: turn off the animation)*/ -#endif /********************** * TYPEDEFS @@ -418,9 +414,9 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue) * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object * @param obj pointer to an object to focus (must be on the page) - * @param anim_en true: scroll with animation + * @param anim_time true: scroll animation time in milliseconds (0: no animation) */ -void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) +void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) { lv_page_ext_t * ext = lv_obj_get_ext(page); lv_style_t * style = lv_obj_get_style(page); @@ -456,29 +452,23 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en) refr = true; } - if(refr != false) { -#if LV_PAGE_ANIM_FOCUS_TIME == 0 + if(anim_time == 0) { lv_obj_set_y(ext->scrl, scrlable_y); -#else - if(anim_en == false) { - lv_obj_set_y(ext->scrl, scrlable_y); - } else { - anim_t a; - a.act_time = 0; - a.start = lv_obj_get_y(ext->scrl); - a.end = scrlable_y; - a.time = LV_PAGE_ANIM_FOCUS_TIME;//anim_speed_to_time(LV_PAGE_ANIM_SPEED, a.start, a.end); - a.end_cb = NULL; - a.playback = 0; - a.repeat = 0; - a.var = ext->scrl; - a.path = anim_get_path(ANIM_PATH_LIN); - - a.fp = (anim_fp_t) lv_obj_set_y; - anim_create(&a); - } -#endif - } + } + else { + anim_t a; + a.act_time = 0; + a.start = lv_obj_get_y(ext->scrl); + a.end = scrlable_y; + a.time = LV_PAGE_ANIM_FOCUS_TIME;//anim_speed_to_time(LV_PAGE_ANIM_SPEED, a.start, a.end); + a.end_cb = NULL; + a.playback = 0; + a.repeat = 0; + a.var = ext->scrl; + a.path = anim_get_path(ANIM_PATH_LIN); + a.fp = (anim_fp_t) lv_obj_set_y; + anim_create(&a); + } } /*===================== diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 6b8cc163e..1c93597c7 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -124,7 +124,7 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue); * @param obj pointer to an object to focus (must be on the page) * @param anim_en true: scroll with animation */ -void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, bool anim_en); +void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time); /** * Get the scrollable object of a page- From e50be12eca2b115b51c7926f3fda09afdd68ba16 Mon Sep 17 00:00:00 2001 From: Gabor Date: Wed, 3 May 2017 14:59:36 +0200 Subject: [PATCH 42/53] lv_dispi: LV_DISPI_TP_MARKER now set the size of the marker point (0: turn off) --- lv_obj/lv_dispi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lv_obj/lv_dispi.c b/lv_obj/lv_dispi.c index b3092cc3c..157b65f93 100644 --- a/lv_obj/lv_dispi.c +++ b/lv_obj/lv_dispi.c @@ -189,10 +189,10 @@ static void dispi_proc_point(lv_dispi_t * dispi_p, cord_t x, cord_t y) if(dispi_p->pressed != false){ #if LV_DISPI_TP_MARKER != 0 area_t area; - area.x1 = x; - area.y1 = y; - area.x2 = x + 1; - area.y2 = y + 1; + area.x1 = x - (LV_DISPI_TP_MARKER >> 1); + area.y1 = y - (LV_DISPI_TP_MARKER >> 1); + area.x2 = x + ((LV_DISPI_TP_MARKER >> 1) | 0x1); + area.y2 = y + ((LV_DISPI_TP_MARKER >> 1) | 0x1); lv_rfill(&area, NULL, COLOR_MAKE(0xFF, 0, 0), OPA_COVER); #endif dispi_proc_press(dispi_p); From 6591da59174c5ad916bbd7a5e229d2c1c209f795 Mon Sep 17 00:00:00 2001 From: Gabor Date: Wed, 3 May 2017 15:06:32 +0200 Subject: [PATCH 43/53] minor bugfixes --- lv_app/lv_app.c | 4 +--- lv_appx/lv_app_sysmon.c | 5 ++--- lv_conf_temp.h | 5 ++++- lv_draw/lv_draw_rbasic.c | 2 +- lv_objx/lv_page.c | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 9f55da900..0c58e9498 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -533,8 +533,6 @@ static void lv_app_init_desktop(void) lv_cont_set_layout(lv_page_get_scrl(sc_page), LV_CONT_LAYOUT_GRID); lv_page_set_rel_action(sc_page, lv_app_sc_page_rel_action); lv_page_set_sb_mode(sc_page, LV_PAGE_SB_MODE_AUTO); - - } #endif @@ -562,7 +560,7 @@ static lv_action_res_t lv_app_menu_rel_action(lv_obj_t * app_btn, lv_dispi_t * d app_list = lv_list_create(lv_scr_act(), NULL); lv_obj_t * scrl = lv_page_get_scrl(app_list); lv_obj_set_style(scrl, &app_style.menu); - lv_obj_set_size(app_list, LV_HOR_RES / 3, (LV_VER_RES * 3) / 4); + lv_obj_set_size(app_list, LV_HOR_RES / 2, (LV_VER_RES * 3) / 4); lv_obj_align(app_list, menuh, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); lv_list_set_styles_btn(app_list, &app_style.menu_btn_rel, &app_style.menu_btn_pr, NULL, NULL, NULL); diff --git a/lv_appx/lv_app_sysmon.c b/lv_appx/lv_app_sysmon.c index ef747f4f5..c898ddee5 100644 --- a/lv_appx/lv_app_sysmon.c +++ b/lv_appx/lv_app_sysmon.c @@ -363,8 +363,8 @@ static void lv_app_sysmon_refr(void) MEM_LABEL_COLOR, mem_pct[LV_APP_SYSMON_PNUM - 1], TXT_RECOLOR_CMD, - mem_mon.size_total, - mem_mon.size_total - mem_mon.size_free, mem_mon.size_free, mem_mon.pct_frag); + (int)mem_mon.size_total, + (int)mem_mon.size_total - mem_mon.size_free, mem_mon.size_free, mem_mon.pct_frag); sprintf(buf_short, "%sMem: %d %%\nFrag: %d %%\n", buf_short, mem_pct[LV_APP_SYSMON_PNUM - 1], mem_mon.pct_frag); @@ -380,7 +380,6 @@ static void lv_app_sysmon_refr(void) if(win_data != NULL) { lv_label_set_text(win_data->label, buf_long); - lv_chart_set_next(win_data->chart, win_data->mem_dl, mem_pct[LV_APP_SYSMON_PNUM - 1]); lv_chart_set_next(win_data->chart, win_data->cpu_dl, cpu_pct[LV_APP_SYSMON_PNUM - 1]); diff --git a/lv_conf_temp.h b/lv_conf_temp.h index e22644ad7..993c37976 100644 --- a/lv_conf_temp.h +++ b/lv_conf_temp.h @@ -42,7 +42,7 @@ *=================*/ /*Display Input settings*/ #define LV_DISPI_READ_PERIOD 50 /*Input device read period milliseconds*/ -#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points*/ +#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points (Value means marker point size)*/ #define LV_DISPI_DRAG_LIMIT 10 /*Drag threshold in pixels */ #define LV_DISPI_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */ #define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/ @@ -161,6 +161,9 @@ #define LV_APP_ENABLE 1 #if LV_APP_ENABLE != 0 + +#define LV_APP_DESKTOP 1 + #define LV_APP_SC_WIDTH (LV_HOR_RES / 4) /*Shortcut width*/ #define LV_APP_SC_HEIGHT (LV_VER_RES / 3) /*Shortcut height*/ #define LV_APP_FONT_SMALL FONT_DEJAVU_20 diff --git a/lv_draw/lv_draw_rbasic.c b/lv_draw/lv_draw_rbasic.c index 198701d4e..d1c3ed294 100644 --- a/lv_draw/lv_draw_rbasic.c +++ b/lv_draw/lv_draw_rbasic.c @@ -148,7 +148,7 @@ void lv_rletter(const point_t * pos_p, const area_t * mask_p, if(px_cnt != 0) { - lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color_mix(color, COLOR_SILVER, 63 * px_cnt)); + lv_rpx(pos_p->x + col, pos_p->y + row, mask_p, color_mix(color, COLOR_SILVER, 63 * px_cnt), OPA_COVER); } } diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 69fbf1490..41cc6a442 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -460,7 +460,7 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) a.act_time = 0; a.start = lv_obj_get_y(ext->scrl); a.end = scrlable_y; - a.time = LV_PAGE_ANIM_FOCUS_TIME;//anim_speed_to_time(LV_PAGE_ANIM_SPEED, a.start, a.end); + a.time = anim_time; a.end_cb = NULL; a.playback = 0; a.repeat = 0; From 1277a805c8097fb0c63b4b62a165c49ff1861c15 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 8 May 2017 10:09:41 +0200 Subject: [PATCH 44/53] Minor updates --- lv_app/lv_app.c | 5 - lv_app/lv_app.h | 4 + lv_app/lv_app_util/lv_app_kb.c | 15 +- lv_app/lv_app_util/lv_app_kb.h | 3 +- lv_obj/lv_style.c | 10 ++ lv_obj/lv_style.h | 275 +-------------------------------- lv_objx/lv_mbox.c | 36 ++++- lv_objx/lv_mbox.h | 3 +- 8 files changed, 58 insertions(+), 293 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 0c58e9498..05e1dfb1b 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -13,11 +13,6 @@ #include "misc/gfx/anim.h" #include "lvgl/lv_obj/lv_refr.h" -#include "lv_app_util/lv_app_kb.h" -#include "lv_app_util/lv_app_notice.h" -#include "lv_app_util/lv_app_fsel.h" - - #include "../lv_appx/lv_app_example.h" #include "../lv_appx/lv_app_phantom.h" #include "../lv_appx/lv_app_sysmon.h" diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index 0a3a366a2..c2f94300a 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -13,6 +13,10 @@ #include "lvgl/lvgl.h" #if LV_APP_ENABLE != 0 +#include "lvgl/lv_app/lv_app_util/lv_app_kb.h" +#include "lvgl/lv_app/lv_app_util/lv_app_fsel.h" +#include "lvgl/lv_app/lv_app_util/lv_app_notice.h" + /********************* * DEFINES diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 825a4213e..5558b959c 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -35,21 +35,21 @@ static const char * kb_map_lc[] = { "\0051#", "\004q", "\004w", "\004e", "\004r", "\004t", "\004y", "\004u", "\004i", "\004o", "\004p", "\007Del", "\n", "\007ABC", "\004a", "\004s", "\004d", "\004f", "\004g", "\004h", "\004j", "\004k", "\004l", "\010Enter", "\n", "_", "-", "z", "x", "c", "v", "b", "n", "m", ".", ",", ":", "\n", -"\002Hide", "\002Left", "\006 ", "\002Right", "\002Ok", "" +"\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_uc[] = { "\0051#", "\004Q", "\004W", "\004E", "\004R", "\004T", "\004Y", "\004U", "\004I", "\004O", "\004P", "\007Del", "\n", "\007abc", "\004A", "\004S", "\004D", "\004F", "\004G", "\004H", "\004J", "\004K", "\004L", "\010Enter", "\n", "_", "-", "Z", "X", "C", "V", "B", "N", "M", ".", ",", ":", "\n", -"\002Hide", "\002Left", "\006 ", "\002Right", "\002Ok", "" +"\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_spec[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "\002Del", "\n", "\002abc", "+", "-", "/", "*", "=", "%", "!", "?", "#", "<", ">", "\n", "\\", "@", "$", "(", ")", "{", "}", "[", "]", ";", "\"", "'", "\n", -"\002Hide", "\002Left", "\006 ", "\002Right", "\002Ok", "" +"\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_num[] = { @@ -89,11 +89,11 @@ void lv_app_kb_init(void) memcpy(&style_btn_rel, &app_style->menu_btn_rel, sizeof(lv_style_t)); style_btn_rel.radius = 0; - style_btn_rel.bwidth = 1 * LV_DOWNSCALE; + style_btn_rel.bwidth = 1; memcpy(&style_btn_pr, &app_style->menu_btn_pr, sizeof(lv_style_t)); style_btn_pr.radius = 0; - style_btn_pr.bwidth = 1 * LV_DOWNSCALE; + style_btn_pr.bwidth = 1; } /** @@ -102,8 +102,9 @@ void lv_app_kb_init(void) * @param mode 'OR'd values of 'lv_app_kb_mode_t' enum * @param close a function to call when the keyboard is closed * @param ok a function to called when the "Ok" button is pressed + * @return the created button matrix objects */ -void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)) +lv_obj_t * lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)) { /*Close the previous keyboard*/ if(kb_btnm != NULL) { @@ -157,6 +158,8 @@ void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t lv_ta_set_cursor_pos(kb_ta, LV_TA_CUR_LAST); + return kb_btnm; + } /** diff --git a/lv_app/lv_app_util/lv_app_kb.h b/lv_app/lv_app_util/lv_app_kb.h index a222c2a91..1eb4631da 100644 --- a/lv_app/lv_app_util/lv_app_kb.h +++ b/lv_app/lv_app_util/lv_app_kb.h @@ -41,8 +41,9 @@ void lv_app_kb_init(void); * @param mode 'OR'd values of 'lv_app_kb_mode_t' enum * @param close a function to call when the keyboard is closed * @param ok a function to called when the "Ok" button is pressed + * @return the created button matrix objects */ -void lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)); +lv_obj_t * lv_app_kb_open(lv_obj_t * ta, lv_app_kb_mode_t mode, void (*close)(lv_obj_t *), void (*ok)(lv_obj_t *)); /** * Close the keyboard diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index cc12e7d03..7f0366fc1 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -218,6 +218,16 @@ lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy) return style; } +/** + * Copy a style to an other + * @param dest pointer to the destination style + * @param src pointer to the source style + */ +void lv_style_cpy(lv_style_t * dest, const lv_style_t * src) +{ + memcpy(dest, src, sizeof(lv_style_t)); +} + /********************** * STATIC FUNCTIONS **********************/ diff --git a/lv_obj/lv_style.h b/lv_obj/lv_style.h index b1400dd8e..e5aeb40f7 100644 --- a/lv_obj/lv_style.h +++ b/lv_obj/lv_style.h @@ -95,281 +95,8 @@ void lv_style_init (void); */ lv_style_t * lv_style_get(lv_style_name_t style_name, lv_style_t * copy); -/** - * Inherit all not set attributes of child style from a parent style - * @param result pointer to a 'lv_style_t' variable to store the result style - * @param child pointer to a child style. (if NULL 'lv_style_def' will be used) - * @param parent pointer to a parent style (if NULL 'lv_style_def' will be used) - */ -lv_style_t * lv_style_inherit(lv_style_t * result, const lv_style_t * child, const lv_style_t * parent ); +void lv_style_cpy(lv_style_t * dest, const lv_style_t * src); -/** - * Set the content color of a style - * @param style pointer to style - * @param ccolor content color - */ -void lv_style_set_ccolor(lv_style_t * style, color_t ccolor); - -void lv_style_set_stype(lv_style_t * style, lv_stype_t stype); -/** - * Clear the content color of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_ccolor(lv_style_t * style); - -/** - * Set the opacity of a style - * @param style pointer to style - * @param opa opacity (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) - */ -void lv_style_set_opa(lv_style_t * style, opa_t opa); - -/** - * Clear the opacity of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_opa(lv_style_t * style); - -/** - * Set the proportional opacity attribute of a style (make the opacity relative to the parent) - * @param style pointer to style - * @param opa_prop true: enabled, false: disabled - */ -void lv_style_set_opa_prop(lv_style_t * style, bool opa_prop); - -/** - * Clear the proportional opacity attribute of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_opa_prop(lv_style_t * style); - -/** - * Set the container main color of a style - * @param style pointer to style - * @param mcolor main color of the background - */ -void lv_style_set_mcolor(lv_style_t * style, color_t mcolor); - -/** - * Clear the container main color of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_mcolor(lv_style_t * style); - -/** - * Set the container gradient color of a style - * @param style pointer to style - * @param gcolor gradient color of the background - */ -void lv_style_set_gcolor(lv_style_t * style, color_t gcolor); - -/** - * Clear the container gradient color of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_gcolor(lv_style_t * style); - -/** - * Set the container border color of a style - * @param style pointer to style - * @param bcolor border color of the background - */ -void lv_style_set_bcolor(lv_style_t * style, color_t bcolor); - -/** - * Clear the container border color of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_bcolor(lv_style_t * style); - -/** - * Set the container light (shadow effect) color of a style - * @param style pointer to style - * @param lcolor light (shadow) color of the background - */ -void lv_style_set_scolor(lv_style_t * style, color_t lcolor); - -/** - * Set the container corner radius of a style - * @param style pointer to style - * @param radius corner radius of the background (>= 0) - */ -void lv_style_set_radius(lv_style_t * style, cord_t radius); - -/** - * Clear the container radius of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_radius(lv_style_t * style); - -/** - * Set the container border width of a style - * @param style pointer to style - * @param bwidth border width of the background (>= 0, 0 means no border) - */ -void lv_style_set_bwidth(lv_style_t * style, cord_t bwidth); - -/** - * Clear the container border width of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_bwidth(lv_style_t * style); - -/** - * Set the container shadow width of a style - * @param style pointer to style - * @param swidth shadow width of the background (>= 0, 0 means no shadow) - */ -void lv_style_set_swidth(lv_style_t * style, cord_t swidth); - -/** - * Clear the container light (shadow) width of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_lwidth(lv_style_t * style); - -/** - * Set the container vertical padding of a style - * @param style pointer to style - * @param vpad vertical padding on the background - */ -void lv_style_set_vpad(lv_style_t * style, cord_t vpad); - -/** - * Clear the container vertical padding of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_vpad(lv_style_t * style); - -/** - * Set the container horizontal padding of a style - * @param style pointer to style - * @param hpad horizontal padding on the background - */ -void lv_style_set_hpad(lv_style_t * style, cord_t hpad); - -/** - * Clear the container horizontal padding of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_hpad(lv_style_t * style); - -/** - * Set the container object padding of a style - * @param style pointer to style - * @param opad padding between objects on the background - */ -void lv_style_set_opad(lv_style_t * style, cord_t opad); - -/** - * Clear the container object padding of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_opad(lv_style_t * style); - -/** - * Set the container border opacity of a style (relative to the object opacity) - * @param style pointer to style - * @param bopa border opacity of the background (OPA_COVER, OPA_TRANSP, OPA_10, OPA_20 ... OPA_90) - */ -void lv_style_set_bopa(lv_style_t * style, opa_t bopa); - -/** - * Clear the container border opacity of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_bopa(lv_style_t * style); - -/** - * Set container empty attribute of a style (transparent background but border drawn) - * @param style pointer to style - * @param empty true: empty enable, false: empty disable - */ -void lv_style_set_empty(lv_style_t * style, bool empty); - -/** - * Clear the container empty attribute of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_empty(lv_style_t * style); - -/** - * Set the font of a style - * @param style pointer to style - * @param font pointer to a font - */ -void lv_style_set_font(lv_style_t * style, const font_t * font); - -/** - * Clear the font of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_font(lv_style_t * style); - -/** - * Set the letter space of a style - * @param style pointer to style - * @param letter_space new letter space - */ -void lv_style_set_letter_space(lv_style_t * style, cord_t letter_space); - -/** - * Clear the letter space of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_letter_space(lv_style_t * style); - -/** - * Set the line space of a style - * @param style pointer to style - * @param line_space new letter space - */ -void lv_style_set_line_space(lv_style_t * style, cord_t line_space); - -/** - * Clear the line space of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_line_space(lv_style_t * style); - -/** - * Set the text align of a style - * @param style pointer to style - * @param align TODO - */ -void lv_style_set_txt_align(lv_style_t * style, lv_txt_align_t align); - -/** - * Clear the text align of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_txt_align(lv_style_t * style); - -/** - * Set the image re-color intensity of a style - * @param style pointer to style - * @param recolor re-coloring intensity (OPA_TRANSP: do nothing, OPA_COVER: fully re-color, OPA_10: little re-color) - */ -void lv_style_set_img_recolor(lv_style_t * style, opa_t recolor); - -/** - * Clear the image recolor of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_img_recolor(lv_style_t * style); - -/** - * Set the line width of a style - * @param style pointer to style - * @param width new line width (>=0) - */ -void lv_style_set_line_width(lv_style_t * style, cord_t width); - -/** - * Clear the line width of a style (it will be inherited from the parent style) - * @param style pointer to a style - */ -void lv_style_clear_line_width(lv_style_t * style); /********************** * MACROS diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index a2f47f4ac..b3116de26 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -17,6 +17,7 @@ /********************* * DEFINES *********************/ +#define LV_MBOX_CLOSE_ANIM_TIME 300 /*ms*/ /********************** * TYPEDEFS @@ -65,6 +66,7 @@ lv_obj_t * lv_mbox_create(lv_obj_t * par, lv_obj_t * copy) ext->btnh = NULL; ext->style_btn_rel = lv_style_get(LV_STYLE_BTN_REL, NULL); ext->style_btn_pr = lv_style_get(LV_STYLE_BTN_PR, NULL); + ext->anim_close_time = LV_MBOX_CLOSE_ANIM_TIME; /*The signal and design functions are not copied so set them here*/ lv_obj_set_signal_f(new_mbox, lv_mbox_signal); @@ -248,23 +250,35 @@ void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr) } } +/** + * Set close animation duration + * @param mbox pointer to a message box object + * @param time animation length in milliseconds (0: no animation) + */ +void lv_mbox_set_anim_close_time(lv_obj_t * mbox, uint16_t time) +{ + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + ext->anim_close_time = time; +} + /** * Automatically delete the message box after a given time * @param mbox pointer to a message box object * @param tout a time (in milliseconds) to wait before delete the message box - * @param anim_time time of close animation in milliseconds (0: no animation) */ -void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout, uint16_t anim_time) +void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout) { - if(anim_time != 0) { + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + + if(ext->anim_close_time != 0) { /*Add shrinking animations*/ - lv_obj_anim(mbox, LV_ANIM_GROW_H| ANIM_OUT, anim_time, tout, NULL); - lv_obj_anim(mbox, LV_ANIM_GROW_V| ANIM_OUT, anim_time, tout, lv_obj_del); + lv_obj_anim(mbox, LV_ANIM_GROW_H| ANIM_OUT, ext->anim_close_time, tout, NULL); + lv_obj_anim(mbox, LV_ANIM_GROW_V| ANIM_OUT, ext->anim_close_time, tout, lv_obj_del); /*When the animations start disable fit to let shrinking work*/ lv_obj_anim(mbox, LV_ANIM_NONE, 1, tout, lv_mbox_disable_fit); } else { - lv_obj_anim(mbox, LV_ANIM_NONE, anim_time, tout, lv_obj_del); + lv_obj_anim(mbox, LV_ANIM_NONE, ext->anim_close_time, tout, lv_obj_del); } } @@ -307,6 +321,16 @@ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn) return mbox; } +/** + * Get the close animation duration + * @param mbox pointer to a message box object + * @return animation length in milliseconds (0: no animation) + */ +uint16_t lv_mbox_get_anim_close_time(lv_obj_t * mbox ) +{ + lv_mbox_ext_t * ext = lv_obj_get_ext(mbox); + return ext->anim_close_time; +} /** * Get the style of the buttons on a message box * @param mbox pointer to a message box object diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index c43537538..e1521c2c9 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -48,6 +48,7 @@ typedef struct lv_obj_t * btnh; /*Holder of the buttons*/ lv_style_t * style_btn_rel; /*Style of the released buttons*/ lv_style_t * style_btn_pr; /*Style of the pressed buttons*/ + uint16_t anim_close_time; /*Duration of close animation [ms] (0: no animation)*/ }lv_mbox_ext_t; /********************** @@ -111,7 +112,7 @@ void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr); * @param mbox pointer to a message box object * @param tout a time (in milliseconds) to wait before delete the message box */ -void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout, uint16_t anim_time); +void lv_mbox_start_auto_close(lv_obj_t * mbox, uint16_t tout); /** * Stop the auto. closing of message box From 2abc9b214b5e878f21ac12aa33bcfb8f20129da4 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 8 May 2017 11:21:33 +0200 Subject: [PATCH 45/53] Minor update --- lv_app/lv_app_util/lv_app_notice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index e30eaf33a..3d649a199 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -85,11 +85,11 @@ lv_obj_t * lv_app_notice_add(const char * format, ...) lv_obj_t * mbox; mbox = lv_mbox_create(notice_h, NULL); - // lv_obj_set_style(mbox, lv_mboxs_get(LV_MBOXS_INFO, NULL)); lv_mbox_set_text(mbox, txt); + lv_mbox_set_anim_close_time(mbox, LV_APP_NOTICE_CLOSE_ANIM_TIME); #if LV_APP_NOTICE_SHOW_TIME != 0 - lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME, LV_APP_NOTICE_CLOSE_ANIM_TIME); + lv_mbox_start_auto_close(mbox, LV_APP_NOTICE_SHOW_TIME); #endif /*Delete the last children if there are too many*/ From 3f0323192c8e84c060f38c9d5453d174005a5b32 Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 8 May 2017 11:23:10 +0200 Subject: [PATCH 46/53] lv_conf_tmpl update --- lv_conf_temp.h => lv_conf_templ.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename lv_conf_temp.h => lv_conf_templ.h (99%) diff --git a/lv_conf_temp.h b/lv_conf_templ.h similarity index 99% rename from lv_conf_temp.h rename to lv_conf_templ.h index 993c37976..67210b97d 100644 --- a/lv_conf_temp.h +++ b/lv_conf_templ.h @@ -167,7 +167,7 @@ #define LV_APP_SC_WIDTH (LV_HOR_RES / 4) /*Shortcut width*/ #define LV_APP_SC_HEIGHT (LV_VER_RES / 3) /*Shortcut height*/ #define LV_APP_FONT_SMALL FONT_DEJAVU_20 -#define LV_APP_FONT_MEDIUM LV_FONT_DEFAULT +#define LV_APP_FONT_MEDIUM FONT_DEFAULT #define LV_APP_FONT_LARGE FONT_DEJAVU_40 /*Animation settings*/ From 20f468554161911e078003e4b34a404ea02d2494 Mon Sep 17 00:00:00 2001 From: Gabor Date: Wed, 10 May 2017 16:11:20 +0200 Subject: [PATCH 47/53] Solve warnings --- lv_app/lv_app.h | 8 ++++++++ lv_app/lv_app_util/lv_app_fsel.c | 5 +---- lv_app/lv_app_util/lv_app_fsel.h | 15 ++++++++++++++- lv_app/lv_app_util/lv_app_kb.c | 2 +- lv_app/lv_app_util/lv_app_kb.h | 2 +- lv_app/lv_app_util/lv_app_notice.c | 19 +------------------ lv_app/lv_app_util/lv_app_notice.h | 19 ++++++++++++++++++- lv_draw/lv_draw.c | 2 +- lv_obj/lv_obj.c | 19 +++++++++++++------ lv_objx/lv_label.c | 2 +- lv_objx/lv_label.h | 2 +- lv_objx/lv_page.c | 7 +++---- 12 files changed, 63 insertions(+), 39 deletions(-) diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index c2f94300a..5d44ea6f6 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -21,6 +21,14 @@ /********************* * DEFINES *********************/ +/*Check dependencies*/ +#if LV_OBJ_FREE_P == 0 +#error "lv_app: Free pointer is required for application. Enable it lv_conf.h: LV_OBJ_FREE_P 1" +#endif + +#if DM_CUSTOM == 0 && DM_MEM_SIZE < (2 * 1024) +#error "lv_app: not enough dynamic memory. Increase it in misc_conf.h: DM_MEM_SIZE" +#endif /********************** * TYPEDEFS diff --git a/lv_app/lv_app_util/lv_app_fsel.c b/lv_app/lv_app_util/lv_app_fsel.c index 0594613d0..1a41bbea9 100644 --- a/lv_app/lv_app_util/lv_app_fsel.c +++ b/lv_app/lv_app_util/lv_app_fsel.c @@ -7,7 +7,7 @@ * INCLUDES *********************/ #include "lv_app_fsel.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_FSEL != 0 #include #include "lv_app_notice.h" @@ -15,9 +15,6 @@ /********************* * DEFINES *********************/ -#define LV_APP_FSEL_FN_MAX_LEN 128 -#define LV_APP_FSEL_PATH_MAX_LEN 256 -#define LV_APP_FSEL_PAGE_SIZE 8 /********************** * TYPEDEFS diff --git a/lv_app/lv_app_util/lv_app_fsel.h b/lv_app/lv_app_util/lv_app_fsel.h index 4c9be142a..efba70b88 100644 --- a/lv_app/lv_app_util/lv_app_fsel.h +++ b/lv_app/lv_app_util/lv_app_fsel.h @@ -10,11 +10,24 @@ * INCLUDES *********************/ #include "../lv_app.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_FSEL != 0 /********************* * DEFINES *********************/ +/*Add the required configurations*/ +#ifndef LV_APP_FSEL_FN_MAX_LEN +#define LV_APP_FSEL_FN_MAX_LEN 128 +#endif + +#ifndef LV_APP_FSEL_PATH_MAX_LEN +#define LV_APP_FSEL_PATH_MAX_LEN 256 +#endif + +#ifndef LV_APP_FSEL_PAGE_SIZE +#define LV_APP_FSEL_PAGE_SIZE 8 +#endif + /********************** * TYPEDEFS diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 5558b959c..256897778 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -7,7 +7,7 @@ * INCLUDES *********************/ #include "lv_app_kb.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_KB != 0 #include "lvgl/lv_objx/lv_btnm.h" #include "lvgl/lv_objx/lv_ta.h" diff --git a/lv_app/lv_app_util/lv_app_kb.h b/lv_app/lv_app_util/lv_app_kb.h index 1eb4631da..bf0d48031 100644 --- a/lv_app/lv_app_util/lv_app_kb.h +++ b/lv_app/lv_app_util/lv_app_kb.h @@ -10,7 +10,7 @@ * INCLUDES *********************/ #include "../lv_app.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_KB != 0 /********************* * DEFINES diff --git a/lv_app/lv_app_util/lv_app_notice.c b/lv_app/lv_app_util/lv_app_notice.c index 3d649a199..12326e670 100644 --- a/lv_app/lv_app_util/lv_app_notice.c +++ b/lv_app/lv_app_util/lv_app_notice.c @@ -7,7 +7,7 @@ * INCLUDES *********************/ #include "lv_app_notice.h" -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_NOTICE != 0 #include #include "lvgl/lv_objx/lv_label.h" @@ -18,23 +18,6 @@ /********************* * DEFINES *********************/ -/*Add the required configurations*/ -#ifndef LV_APP_NOTICE_SHOW_TIME -#define LV_APP_NOTICE_SHOW_TIME 4000 -#endif - -#ifndef LV_APP_NOTICE_CLOSE_ANIM_TIME -#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 -#endif - - -#ifndef LV_APP_NOTICE_MAX_NUM -#define LV_APP_NOTICE_MAX_NUM 6 -#endif - -#ifndef LV_APP_NOTICE_MAX_LEN -#define LV_APP_NOTICE_MAX_LEN 256 -#endif /********************** * TYPEDEFS diff --git a/lv_app/lv_app_util/lv_app_notice.h b/lv_app/lv_app_util/lv_app_notice.h index 2dc25b815..7c2eaca5a 100644 --- a/lv_app/lv_app_util/lv_app_notice.h +++ b/lv_app/lv_app_util/lv_app_notice.h @@ -11,11 +11,28 @@ *********************/ #include "../lv_app.h" #include -#if LV_APP_ENABLE != 0 +#if USE_LV_APP_NOTICE != 0 /********************* * DEFINES *********************/ +/*Add the required configurations*/ +#ifndef LV_APP_NOTICE_SHOW_TIME +#define LV_APP_NOTICE_SHOW_TIME 4000 +#endif + +#ifndef LV_APP_NOTICE_CLOSE_ANIM_TIME +#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 +#endif + +#ifndef LV_APP_NOTICE_MAX_NUM +#define LV_APP_NOTICE_MAX_NUM 6 +#endif + +#ifndef LV_APP_NOTICE_MAX_LEN +#define LV_APP_NOTICE_MAX_LEN 256 +#endif + /********************** * TYPEDEFS diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index b3e9ce856..8b5c8a1e9 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -283,7 +283,7 @@ void lv_draw_label(const area_t * cords_p,const area_t * mask_p, const lv_style_ if(txt[i] == ' ') { /*Get the parameter*/ if(i - par_start == LABEL_RECOLOR_PAR_LENGTH) { - char buf[LABEL_RECOLOR_PAR_LENGTH]; + char buf[LABEL_RECOLOR_PAR_LENGTH + 1]; memcpy(buf, &txt[par_start], LABEL_RECOLOR_PAR_LENGTH); buf[LABEL_RECOLOR_PAR_LENGTH] = '\0'; int r,g,b; diff --git a/lv_obj/lv_obj.c b/lv_obj/lv_obj.c index 7da18e76e..78236ccc0 100644 --- a/lv_obj/lv_obj.c +++ b/lv_obj/lv_obj.c @@ -7,13 +7,14 @@ * INCLUDES *********************/ -#include -#include -#include -#include -#include -#include +#include "lv_conf.h" +#include "lvgl/lv_draw/lv_draw.h" +#include "lvgl/lv_obj/lv_dispi.h" +#include "lvgl/lv_obj/lv_obj.h" +#include "lvgl/lv_obj/lv_refr.h" +#include "lvgl/lv_app/lv_app.h" #include "lvgl/lv_draw/lv_draw_rbasic.h" +#include "misc/gfx/anim.h" #include #include #include @@ -138,7 +139,9 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) lv_obj_set_design_f(new_obj, lv_obj_design); /*Set free data*/ +#if LV_OBJ_FREE_NUM != 0 new_obj->free_num = 0; +#endif #if LV_OBJ_FREE_P != 0 new_obj->free_p = NULL; #endif @@ -179,7 +182,9 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) lv_obj_set_design_f(new_obj, lv_obj_design); /*Set free data*/ +#if LV_OBJ_FREE_NUM != 0 new_obj->free_num = 0; +#endif #if LV_OBJ_FREE_P != 0 new_obj->free_p = NULL; #endif @@ -202,7 +207,9 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy) new_obj->ext_size = copy->ext_size; /*Set free data*/ +#if LV_OBJ_FREE_NUM != 0 new_obj->free_num = copy->free_num; +#endif #if LV_OBJ_FREE_P != 0 new_obj->free_p = copy->free_p; #endif diff --git a/lv_objx/lv_label.c b/lv_objx/lv_label.c index bcb732ac8..0e61d5d58 100644 --- a/lv_objx/lv_label.c +++ b/lv_objx/lv_label.c @@ -602,7 +602,7 @@ static void lv_label_refr_text(lv_obj_t * label) ext->dot_tmp[i] = ext->txt[index - LV_LABEL_DOT_NUM + i]; ext->txt[index - LV_LABEL_DOT_NUM + i] = '.'; } - /*The last character is '\0'*/ + /*The last character is '\0'. Save this character from the text too.*/ ext->dot_tmp[i] = ext->txt[index]; ext->txt[index] = '\0'; } diff --git a/lv_objx/lv_label.h b/lv_objx/lv_label.h index 94fd1315c..f027787a0 100644 --- a/lv_objx/lv_label.h +++ b/lv_objx/lv_label.h @@ -41,7 +41,7 @@ typedef struct /*New data for this type */ char * txt; /*Text of the label*/ lv_label_long_mode_t long_mode; /*Determinate what to do with the long texts*/ - char dot_tmp[LV_LABEL_DOT_NUM]; /*Store the character which are replaced by dots (Handled by the library)*/ + char dot_tmp[LV_LABEL_DOT_NUM + 1]; /*Store the character which are replaced by dots (Handled by the library)*/ uint16_t dot_end; /*The text end position in dot mode (Handled by the library)*/ uint8_t static_txt :1; /*Flag to indicate the text is static*/ uint8_t recolor :1; /*Enable in-line letter re-coloring*/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 41cc6a442..6e8ffe4f6 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -428,8 +428,6 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) cord_t scrlable_y = lv_obj_get_y(ext->scrl); cord_t page_h = lv_obj_get_height(page); - bool refr = false; - cord_t top_err = -(scrlable_y + obj_y); cord_t bot_err = scrlable_y + obj_y + obj_h - page_h; @@ -440,7 +438,6 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) /*Calculate a new position and to let scrable_rects.vpad space above*/ scrlable_y = -(obj_y - style_scrl->vpad - style->vpad); scrlable_y += style_scrl->vpad; - refr = true; } /*Out of the page on the bottom*/ else if((obj_h <= page_h && bot_err > 0) || @@ -449,7 +446,9 @@ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) scrlable_y = -obj_y; scrlable_y += page_h - obj_h; scrlable_y -= style_scrl->vpad; - refr = true; + } else { + /*Alraedy in focus*/ + return; } if(anim_time == 0) { From 3a9a23b3505256393bfecd9273ddb75a775202d2 Mon Sep 17 00:00:00 2001 From: Gabor Date: Wed, 10 May 2017 15:45:00 +0200 Subject: [PATCH 48/53] minor style updates --- lv_app/lv_app.c | 4 +++- lv_app/lv_app_util/lv_app_kb.c | 4 ++-- lv_obj/lv_style.c | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lv_app/lv_app.c b/lv_app/lv_app.c index 05e1dfb1b..d66a6dc43 100644 --- a/lv_app/lv_app.c +++ b/lv_app/lv_app.c @@ -1011,8 +1011,10 @@ static void lv_app_init_style(void) app_style.menu_btn_rel.ccolor = COLOR_WHITE; app_style.menu_btn_rel.mcolor = COLOR_MAKE(0x30, 0x30, 0x30); app_style.menu_btn_rel.gcolor = COLOR_MAKE(0x30, 0x30, 0x30); - app_style.menu_btn_rel.bcolor = COLOR_MAKE(0x80, 0x80, 0x80); + app_style.menu_btn_rel.bcolor = COLOR_MAKE(0xa0, 0xa0, 0xa0); + app_style.menu_btn_rel.bopa = OPA_20; app_style.menu_btn_rel.bwidth = 0; + app_style.menu_btn_rel.radius = 0; app_style.menu_btn_rel.swidth = 0; app_style.menu_btn_rel.empty = 1; diff --git a/lv_app/lv_app_util/lv_app_kb.c b/lv_app/lv_app_util/lv_app_kb.c index 256897778..0eb843b8f 100644 --- a/lv_app/lv_app_util/lv_app_kb.c +++ b/lv_app/lv_app_util/lv_app_kb.c @@ -33,14 +33,14 @@ static lv_obj_t * kb_win; static lv_obj_t * kb_ta; static const char * kb_map_lc[] = { "\0051#", "\004q", "\004w", "\004e", "\004r", "\004t", "\004y", "\004u", "\004i", "\004o", "\004p", "\007Del", "\n", -"\007ABC", "\004a", "\004s", "\004d", "\004f", "\004g", "\004h", "\004j", "\004k", "\004l", "\010Enter", "\n", +"\006ABC", "\003a", "\003s", "\003d", "\003f", "\003g", "\003h", "\003j", "\003k", "\003l", "\010Enter", "\n", "_", "-", "z", "x", "c", "v", "b", "n", "m", ".", ",", ":", "\n", "\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; static const char * kb_map_uc[] = { "\0051#", "\004Q", "\004W", "\004E", "\004R", "\004T", "\004Y", "\004U", "\004I", "\004O", "\004P", "\007Del", "\n", -"\007abc", "\004A", "\004S", "\004D", "\004F", "\004G", "\004H", "\004J", "\004K", "\004L", "\010Enter", "\n", +"\006abc", "\003A", "\003S", "\003D", "\003F", "\003G", "\003H", "\003J", "\003K", "\003L", "\010Enter", "\n", "_", "-", "Z", "X", "C", "V", "B", "N", "M", ".", ",", ":", "\n", "\003Hide", "\003Left", "\006 ", "\003Right", "\003Ok", "" }; diff --git a/lv_obj/lv_style.c b/lv_obj/lv_style.c index 7f0366fc1..e0ab30cbf 100644 --- a/lv_obj/lv_style.c +++ b/lv_obj/lv_style.c @@ -76,7 +76,7 @@ void lv_style_init (void) lv_style_scr.font = font_get(FONT_DEFAULT); lv_style_scr.letter_space = 1 * LV_DOWNSCALE; lv_style_scr.line_space = 3 * LV_DOWNSCALE; - lv_style_scr.txt_align = 0; + lv_style_scr.txt_align = LV_TXT_ALIGN_LEFT; lv_style_scr.img_recolor = OPA_TRANSP; lv_style_scr.line_width = 1 * LV_DOWNSCALE; From da1f4e8e2f2937f1ba1ef14599f81cb8545e9c26 Mon Sep 17 00:00:00 2001 From: Gabor Date: Fri, 12 May 2017 16:09:37 +0200 Subject: [PATCH 49/53] minor updates --- lv_obj/lv_obj.h | 55 +++++++++++++++++++++++------------------------ lv_objx/lv_mbox.h | 15 ++++++++++++- lv_objx/lv_page.c | 2 +- lv_objx/lv_page.h | 2 +- lv_objx/lv_win.c | 4 ++-- lv_objx/lv_win.h | 12 +++++------ 6 files changed, 51 insertions(+), 39 deletions(-) diff --git a/lv_obj/lv_obj.h b/lv_obj/lv_obj.h index df95fda42..987bcc833 100644 --- a/lv_obj/lv_obj.h +++ b/lv_obj/lv_obj.h @@ -173,25 +173,6 @@ typedef enum */ void lv_init(void); -/** - * Mark the object as invalid therefore its current position will be redrawn by 'lv_refr_task' - * @param obj pointer to an object - */ -void lv_obj_inv(lv_obj_t * obj); - -/** - * Notify an object about its style is modified - * @param obj pointer to an object - */ -void lv_obj_refr_style(lv_obj_t * obj); - -/** - * Notify all object if a style is modified - * @param style pinter to a style. Only objects with this style will be notified - * (NULL to notify all objects) - */ -void lv_style_refr_objs(void * style); - /** * Create a basic object * @param parent pointer to a parent object. @@ -216,6 +197,12 @@ void lv_obj_del(lv_obj_t * obj); */ bool lv_obj_signal(lv_obj_t * obj, lv_signal_t sign, void * param); +/** + * Mark the object as invalid therefore its current position will be redrawn by 'lv_refr_task' + * @param obj pointer to an object + */ +void lv_obj_inv(lv_obj_t * obj); + /** * Load a new screen * @param scr pointer to a screen @@ -239,7 +226,7 @@ void lv_obj_set_pos(lv_obj_t * obj, cord_t x, cord_t y); /** * Set relative the position of an object (relative to the parent). - * The coordinates will be upscaled to compensate LV_DOWNSCALE. + * The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side of the parent. (will be multiplied with LV_DOWNSCALE) * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) @@ -255,7 +242,7 @@ void lv_obj_set_x(lv_obj_t * obj, cord_t x); /** * Set the x coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param x new distance from the left side from the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -270,7 +257,7 @@ void lv_obj_set_y(lv_obj_t * obj, cord_t y); /** * Set the y coordinate of a object. - * The coordinate will be upscaled to compensate LV_DOWNSCALE. + * The coordinate will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param y new distance from the top of the parent. (will be multiplied with LV_DOWNSCALE) */ @@ -285,7 +272,7 @@ void lv_obj_set_y_us(lv_obj_t * obj, cord_t y); void lv_obj_set_size(lv_obj_t * obj, cord_t w, cord_t h); /** - * Set the size of an object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Set the size of an object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) * @param h new height (will be multiplied with LV_DOWNSCALE) @@ -300,7 +287,7 @@ void lv_obj_set_size_us(lv_obj_t * obj, cord_t w, cord_t h); void lv_obj_set_width(lv_obj_t * obj, cord_t w); /** - * Set the width of an object. The width will be upscaled to compensate LV_DOWNSCALE + * Set the width of an object. The width will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param w new width (will be multiplied with LV_DOWNSCALE) */ @@ -314,7 +301,7 @@ void lv_obj_set_width_us(lv_obj_t * obj, cord_t w); void lv_obj_set_height(lv_obj_t * obj, cord_t h); /** - * Set the height of an object. The height will be upscaled to compensate LV_DOWNSCALE + * Set the height of an object. The height will be upscaled with LV_DOWNSCALE * @param obj pointer to an object * @param h new height (will be multiplied with LV_DOWNSCALE) */ @@ -331,7 +318,7 @@ void lv_obj_set_height_us(lv_obj_t * obj, cord_t h); void lv_obj_align(lv_obj_t * obj,lv_obj_t * base, lv_align_t align, cord_t x_mod, cord_t y_mod); /** - * Align an object to an other object. The coordinates will be upscaled to compensate LV_DOWNSCALE. + * Align an object to an other object. The coordinates will be upscaled with LV_DOWNSCALE. * @param obj pointer to an object to align * @param base pointer to an object (if NULL the parent is used). 'obj' will be aligned to it. * @param align type of alignment (see 'lv_align_t' enum) @@ -354,6 +341,19 @@ void lv_obj_set_ext_size(lv_obj_t * obj, cord_t ext_size); */ void lv_obj_set_style(lv_obj_t * obj, lv_style_t * style); +/** + * Notify an object about its style is modified + * @param obj pointer to an object + */ +void lv_obj_refr_style(lv_obj_t * obj); + +/** + * Notify all object if a style is modified + * @param style pointer to a style. Only the objects with this style will be notified + * (NULL to notify all objects) + */ +void lv_style_refr_objs(void * style); + /** * Hide an object. It won't be visible and clickable. * @param obj pointer to an object @@ -460,7 +460,6 @@ void lv_obj_set_free_num(lv_obj_t * obj, uint8_t free_num); */ void lv_obj_set_free_p(lv_obj_t * obj, void * free_p); #endif - /** * Animate an object * @param obj pointer to an object to animate @@ -550,7 +549,7 @@ cord_t lv_obj_get_height(lv_obj_t * obj); cord_t lv_obj_get_ext_size(lv_obj_t * obj); /** - * Get the style pointer of an object + * Get the style pointer of an object (if NULL get style of the parent) * @param obj pointer to an object * @return pointer to a style */ diff --git a/lv_objx/lv_mbox.h b/lv_objx/lv_mbox.h index e1521c2c9..df31e7eb7 100644 --- a/lv_objx/lv_mbox.h +++ b/lv_objx/lv_mbox.h @@ -107,6 +107,13 @@ void lv_mbox_set_text(lv_obj_t * mbox, const char * txt); */ void lv_mbox_set_styles_btn(lv_obj_t * mbox, lv_style_t * rel, lv_style_t * pr); +/** + * Set close animation duration + * @param mbox pointer to a message box object + * @param time animation length in milliseconds (0: no animation) + */ +void lv_mbox_set_anim_close_time(lv_obj_t * mbox, uint16_t time); + /** * Automatically delete the message box after a given time * @param mbox pointer to a message box object @@ -135,6 +142,13 @@ const char * lv_mbox_get_txt(lv_obj_t * mbox); */ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn); +/** + * Get the close animation duration + * @param mbox pointer to a message box object + * @return animation length in milliseconds (0: no animation) + */ +uint16_t lv_mbox_get_anim_close_time(lv_obj_t * mbox ); + /** * Get the style of the buttons on a message box * @param mbox pointer to a message box object @@ -143,7 +157,6 @@ lv_obj_t * lv_mbox_get_from_btn(lv_obj_t * btn); */ lv_style_t * lv_mbox_get_style_btn(lv_obj_t * mbox, lv_btn_state_t state); - /********************** * MACROS **********************/ diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index 6e8ffe4f6..c376bd1cd 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -414,7 +414,7 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue) * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object * @param obj pointer to an object to focus (must be on the page) - * @param anim_time true: scroll animation time in milliseconds (0: no animation) + * @param anim_time scroll animation time in milliseconds (0: no animation) */ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time) { diff --git a/lv_objx/lv_page.h b/lv_objx/lv_page.h index 1c93597c7..117103afb 100644 --- a/lv_objx/lv_page.h +++ b/lv_objx/lv_page.h @@ -122,7 +122,7 @@ void lv_page_glue_obj(lv_obj_t * obj, bool glue); * Focus on an object. It ensures that the object will be visible on the page. * @param page pointer to a page object * @param obj pointer to an object to focus (must be on the page) - * @param anim_en true: scroll with animation + * @param anim_time scroll animation time in milliseconds (0: no animation) */ void lv_page_focus(lv_obj_t * page, lv_obj_t * obj, uint16_t anim_time); diff --git a/lv_objx/lv_win.c b/lv_objx/lv_win.c index 4d8253aed..62f672bd3 100644 --- a/lv_objx/lv_win.c +++ b/lv_objx/lv_win.c @@ -271,7 +271,7 @@ void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size) /** * Set the styles of the window control buttons in a given state * @param win pointer to a window object - * @param rel spointer to the style in released state + * @param rel pointer to the style in released state * @param pr pointer to the style in pressed state */ void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr) @@ -338,7 +338,7 @@ cord_t lv_win_get_cbtn_size(lv_obj_t * win) /** * Get width of the content area (page scrollable) of the window * @param win pointer to a window object - * @return the width of the contetn area + * @return the width of the content area */ cord_t lv_win_get_width(lv_obj_t * win) { diff --git a/lv_objx/lv_win.h b/lv_objx/lv_win.h index c94b97502..126a72274 100644 --- a/lv_objx/lv_win.h +++ b/lv_objx/lv_win.h @@ -113,9 +113,9 @@ void lv_win_set_title(lv_obj_t * win, const char * title); void lv_win_set_cbtn_size(lv_obj_t * win, cord_t size); /** - * Set the styles of the window control buttons in a given state + * Set the styles of the window control buttons in a given state * @param win pointer to a window object - * @param rel spointer to the style in released state + * @param rel pointer to the style in released state * @param pr pointer to the style in pressed state */ void lv_win_set_styles_cbtn(lv_obj_t * win, lv_style_t * rel, lv_style_t * pr); @@ -151,17 +151,17 @@ cord_t lv_win_get_cbtn_size(lv_obj_t * win); /** * Get width of the content area (page scrollable) of the window * @param win pointer to a window object - * @return the width of the contetn area + * @return the width of the content area */ cord_t lv_win_get_width(lv_obj_t * win); /** * Get the pointer of a widow from one of its control button. * It is useful in the action of the control buttons where only button is known. - * @param cbtn pointer to a control button of a window - * @return pointer to the window of 'cbtn' + * @param ctrl_btn pointer to a control button of a window + * @return pointer to the window of 'ctrl_btn' */ -lv_obj_t * lv_win_get_from_cbtn(lv_obj_t * cbtn); +lv_obj_t * lv_win_get_from_cbtn(lv_obj_t * ctrl_btn); /********************** * MACROS From 20af407203de996cdfa7045962ea85bc05dae2df Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Sat, 13 May 2017 11:02:40 +0200 Subject: [PATCH 50/53] Minor object updates with some object types --- lv_objx/lv_chart.c | 58 +++++++++++++++++++++++++++++++++++----------- lv_objx/lv_led.c | 2 +- lv_objx/lv_page.c | 4 ++-- 3 files changed, 47 insertions(+), 17 deletions(-) diff --git a/lv_objx/lv_chart.c b/lv_objx/lv_chart.c index fa0a7fefc..e3d18f2df 100644 --- a/lv_objx/lv_chart.c +++ b/lv_objx/lv_chart.c @@ -402,28 +402,58 @@ static void lv_chart_draw_div(lv_obj_t * chart, const area_t * mask) lv_style_t * style = lv_obj_get_style(chart); uint8_t div_i; + uint8_t div_i_end; + uint8_t div_i_start; point_t p1; point_t p2; cord_t w = lv_obj_get_width(chart); cord_t h = lv_obj_get_height(chart); cord_t x_ofs = chart->cords.x1; cord_t y_ofs = chart->cords.y1; - p1.x = 0 + x_ofs; - p2.x = w + x_ofs; - for(div_i = 1; div_i <= ext->hdiv_num; div_i ++) { - p1.y = (int32_t)((int32_t)h * div_i) / (ext->hdiv_num + 1); - p1.y += y_ofs; - p2.y = p1.y; - lv_draw_line(&p1, &p2, mask, style); + + if(ext->hdiv_num != 0) { + /*Draw slide lines if no border*/ + if(style->bwidth != 0) { + div_i_start = 1; + div_i_end = ext->hdiv_num; + } else { + div_i_start = 0; + div_i_end = ext->hdiv_num + 1; + } + + p1.x = 0 + x_ofs; + p2.x = w + x_ofs; + for(div_i = div_i_start; div_i <= div_i_end; div_i++) { + p1.y = (int32_t)((int32_t)h * div_i) / (ext->hdiv_num + 1); + p1.y += y_ofs; + if(div_i == div_i_start) p1.y += (style->line_width >> 1) + 1; /*The first line might not be visible*/ + if(div_i == div_i_end) p1.y -= (style->line_width >> 1) + 1; /*The last line might not be visible*/ + + p2.y = p1.y; + lv_draw_line(&p1, &p2, mask, style); + } } - p1.y = 0 + y_ofs; - p2.y = h + y_ofs; - for(div_i = 1; div_i <= ext->vdiv_num; div_i ++) { - p1.x = (int32_t)((int32_t)w * div_i) / (ext->vdiv_num + 1); - p1.x += x_ofs; - p2.x = p1.x; - lv_draw_line(&p1, &p2, mask, style); + if(ext->vdiv_num != 0) { + /*Draw slide lines if no border*/ + if(style->bwidth != 0) { + div_i_start = 1; + div_i_end = ext->vdiv_num; + } else { + div_i_start = 0; + div_i_end = ext->vdiv_num + 1; + } + + p1.y = 0 + y_ofs; + p2.y = h + y_ofs; + for(div_i = div_i_start; div_i <= div_i_end; div_i ++) { + p1.x = (int32_t)((int32_t)w * div_i) / (ext->vdiv_num + 1); + p1.x += x_ofs; + if(div_i == div_i_start) p1.x += (style->line_width >> 1) + 1; /*The first line might not be visible*/ + if(div_i == div_i_end) p1.x -= (style->line_width >> 1) + 1; /*The last line might not be visible*/ + p2.x = p1.x; + lv_draw_line(&p1, &p2, mask, style); + } } } diff --git a/lv_objx/lv_led.c b/lv_objx/lv_led.c index 5f80c40b6..245bb4183 100644 --- a/lv_objx/lv_led.c +++ b/lv_objx/lv_led.c @@ -17,7 +17,7 @@ *********************/ #define LV_LED_WIDTH_DEF (LV_DPI / 3) #define LV_LED_HEIGHT_DEF (LV_DPI / 3) -#define LV_LED_BRIGHT_OFF 128 +#define LV_LED_BRIGHT_OFF 100 #define LV_LED_BRIGHT_ON 255 /********************** diff --git a/lv_objx/lv_page.c b/lv_objx/lv_page.c index c376bd1cd..2f47fce28 100644 --- a/lv_objx/lv_page.c +++ b/lv_objx/lv_page.c @@ -69,7 +69,7 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) ext->sbh_draw = 0; ext->sbv_draw = 0; ext->style_sb = lv_style_get(LV_STYLE_PRETTY, NULL); - ext->sb_width = LV_DPI / 8; + ext->sb_width = LV_DPI / 8; /*Will be modified later*/ ext->sb_mode = LV_PAGE_SB_MODE_ON; if(ancestor_design_f == NULL) ancestor_design_f = lv_obj_get_design_f(new_page); @@ -85,7 +85,7 @@ lv_obj_t * lv_page_create(lv_obj_t * par, lv_obj_t * copy) lv_cont_set_fit(ext->scrl, true, true); lv_obj_set_style(ext->scrl, lv_style_get(LV_STYLE_PRETTY, NULL)); - lv_page_set_sb_width(new_page, ext->sb_width); + lv_page_set_sb_width(new_page, style->hpad); lv_page_set_sb_mode(new_page, ext->sb_mode); lv_page_set_style_sb(new_page, ext->style_sb); From cc10990d640b1e7926d0ee73d7e7ad9a849304c8 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Sat, 13 May 2017 11:02:59 +0200 Subject: [PATCH 51/53] shadow bugfix --- lv_draw/lv_draw.c | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/lv_draw/lv_draw.c b/lv_draw/lv_draw.c index 8b5c8a1e9..baf82a015 100644 --- a/lv_draw/lv_draw.c +++ b/lv_draw/lv_draw.c @@ -1171,17 +1171,28 @@ static void lv_draw_cont_shadow_full(const area_t * cords_p, const area_t * mask point_lb.y = ofs_lb.y + row; uint16_t d; - for(d= 0; d < p; d++) { - px_fp(point_rb.x,point_rb.y , mask_p, style->scolor, opa_v_result[d]); - point_rb.x++; + for(d = 0; d < p; d++) { + + if(point_rt.x != point_lt.x) { + px_fp(point_lt.x,point_lt.y , mask_p, style->scolor, opa_v_result[d]); + } + + if(point_rb.x != point_lb.x && point_lt.y != point_lb.y) { + px_fp(point_lb.x,point_lb.y , mask_p, style->scolor, opa_v_result[d]); + } + + if(point_lt.y != point_lb.y) { + px_fp(point_rb.x,point_rb.y , mask_p, style->scolor, opa_v_result[d]); + } + px_fp(point_rt.x,point_rt.y , mask_p, style->scolor, opa_v_result[d]); - point_rt.x++; - px_fp(point_lb.x,point_rb.y , mask_p, style->scolor, opa_v_result[d]); + + point_rb.x++; point_lb.x--; - px_fp(point_lt.x,point_lt.y , mask_p, style->scolor, opa_v_result[d]); + point_rt.x++; point_lt.x--; } From 50d30e8d888b4566decca67d23bf541ee46499d7 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Sun, 14 May 2017 18:49:44 +0200 Subject: [PATCH 52/53] comments update --- lv_obj/lv_dispi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_obj/lv_dispi.h b/lv_obj/lv_dispi.h index 39243d1be..b5175cb05 100644 --- a/lv_obj/lv_dispi.h +++ b/lv_obj/lv_dispi.h @@ -40,8 +40,8 @@ typedef struct typedef enum { - LV_ACTION_RES_INV = 0, - LV_ACTION_RES_OK, + LV_ACTION_RES_INV = 0, /*Typically indicates that the object is deleted (become invalid) in the action function*/ + LV_ACTION_RES_OK, /*The object is valid (no deleted) after the action*/ }lv_action_res_t; typedef lv_action_res_t ( * lv_action_t) (struct __LV_OBJ_T * obj, lv_dispi_t * dispi); From 813a8e5476cd019a671b6fe7cf4e2800ec8c88fb Mon Sep 17 00:00:00 2001 From: Gabor Date: Mon, 15 May 2017 09:14:48 +0200 Subject: [PATCH 53/53] Minor updates --- lv_app/lv_app.h | 4 ++ lv_conf_templ.h | 120 ++++++++++++++++++++++++++++------------------ lv_objx/lv_list.h | 5 ++ lv_objx/lv_mbox.c | 8 +--- 4 files changed, 85 insertions(+), 52 deletions(-) diff --git a/lv_app/lv_app.h b/lv_app/lv_app.h index 5d44ea6f6..6edfa24e7 100644 --- a/lv_app/lv_app.h +++ b/lv_app/lv_app.h @@ -26,6 +26,10 @@ #error "lv_app: Free pointer is required for application. Enable it lv_conf.h: LV_OBJ_FREE_P 1" #endif +#if LV_OBJ_FREE_NUM == 0 +#error "lv_app: Free number is required for application. Enable it lv_conf.h: LV_OBJ_FREE_NUM 1" +#endif + #if DM_CUSTOM == 0 && DM_MEM_SIZE < (2 * 1024) #error "lv_app: not enough dynamic memory. Increase it in misc_conf.h: DM_MEM_SIZE" #endif diff --git a/lv_conf_templ.h b/lv_conf_templ.h index 67210b97d..db7c61d39 100644 --- a/lv_conf_templ.h +++ b/lv_conf_templ.h @@ -19,7 +19,7 @@ #define LV_DPI (80 * LV_DOWNSCALE) /* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/ -#define LV_VDB_SIZE (LV_HOR_RES * 20) +#define LV_VDB_SIZE (LV_HOR_RES * 30) /* Enable antialaiassing * If enabled everything will half-sized @@ -28,11 +28,7 @@ #define LV_ANTIALIAS 1 /*Set the downscaling value*/ -#if LV_ANTIALIAS == 0 -#define LV_DOWNSCALE 1 -#else -#define LV_DOWNSCALE 2 -#endif +#define LV_DOWNSCALE (1 << LV_ANTIALIAS) #define LV_REFR_PERIOD 40 /*Screen refresh period in milliseconds*/ #define LV_INV_FIFO_SIZE 32 /*The average number of objects on a screen */ @@ -41,12 +37,12 @@ Misc. setting *=================*/ /*Display Input settings*/ -#define LV_DISPI_READ_PERIOD 50 /*Input device read period milliseconds*/ -#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points (Value means marker point size)*/ -#define LV_DISPI_DRAG_LIMIT 10 /*Drag threshold in pixels */ -#define LV_DISPI_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */ -#define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/ -#define LV_DISPI_LONG_PRESS_REP_TIME 100 /*Repeated trigger period in long press [ms] */ +#define LV_DISPI_READ_PERIOD 50 /*Input device read period milliseconds*/ +#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points (Value means marker point size)*/ +#define LV_DISPI_DRAG_LIMIT (10 * LV_DOWNSCALE) /*Drag threshold in pixels */ +#define LV_DISPI_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */ +#define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/ +#define LV_DISPI_LONG_PRESS_REP_TIME 100 /*Repeated trigger period in long press [ms] */ /*lv_obj (base object) settings*/ #define LV_OBJ_FREE_NUM 1 /*Enable the free number attribute*/ @@ -95,10 +91,10 @@ /*Container (dependencies: -*/ #define USE_LV_CONT 1 -/*Page (dependencies: lv_rect)*/ +/*Page (dependencies: lv_cont)*/ #define USE_LV_PAGE 1 -/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/ +/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/ #define USE_LV_WIN 1 /************************* @@ -108,16 +104,16 @@ /*Bar (dependencies: -)*/ #define USE_LV_BAR 1 -/*Line meter (dependencies: bar, misc: trigo)*/ +/*Line meter (dependencies: bar; misc: trigo)*/ #define USE_LV_LMETER 1 -/*Gauge (dependencies: misc: trigo)*/ +/*Gauge (dependencies:bar, lmeter; misc: trigo)*/ #define USE_LV_GAUGE 1 /*Chart (dependencies: -)*/ #define USE_LV_CHART 1 -/*LED (dependencies: lv_rect)*/ +/*LED (dependencies: -)*/ #define USE_LV_LED 1 /*Message box (dependencies: lv_rect, lv_btn, lv_label)*/ @@ -143,13 +139,13 @@ /*Check box (dependencies: lv_btn, lv_label)*/ #define USE_LV_CB 1 -/*List (dependencies: lv_btn, lv_label, lv_img)*/ +/*List (dependencies: lv_page, lv_btn, lv_label, lv_img)*/ #define USE_LV_LIST 1 /*Drop down list (dependencies: lv_page, lv_label)*/ #define USE_LV_DDLIST 1 -/*Bar (dependencies: lv_bar)*/ +/*Slider (dependencies: lv_bar)*/ #define USE_LV_SLIDER 1 @@ -158,59 +154,91 @@ * =================*/ /*Enable the application system*/ -#define LV_APP_ENABLE 1 - +#define LV_APP_ENABLE 0 #if LV_APP_ENABLE != 0 -#define LV_APP_DESKTOP 1 +/**************************** + * Basic application settings + *****************************/ +#define LV_APP_DESKTOP 1 /*Create a desktop-like environment*/ #define LV_APP_SC_WIDTH (LV_HOR_RES / 4) /*Shortcut width*/ #define LV_APP_SC_HEIGHT (LV_VER_RES / 3) /*Shortcut height*/ -#define LV_APP_FONT_SMALL FONT_DEJAVU_20 -#define LV_APP_FONT_MEDIUM FONT_DEFAULT -#define LV_APP_FONT_LARGE FONT_DEJAVU_40 +#define LV_APP_FONT_SMALL FONT_DEJAVU_20 /*A small font*/ +#define LV_APP_FONT_MEDIUM FONT_DEFAULT /*A medium font*/ +#define LV_APP_FONT_LARGE FONT_DEJAVU_40 /*A large font*/ -/*Animation settings*/ -#define LV_APP_ANIM_WIN 200 /*Animation time in milliseconds (0: turn off animation)*/ -#define LV_APP_ANIM_DESKTOP 200 /*Animation on the desktop (0: turn off animation)*/ +/*********************** + * Animation settings + ***********************/ +#define LV_APP_ANIM_WIN 200 /*Animation time of windows [ms] (0: turn off animations)*/ +#define LV_APP_ANIM_DESKTOP 200 /*Animation time the desktop [ms] (0: turn off animations)*/ + +/************************ + * App. utility settings + ************************/ + +/*Notice*/ +#define USE_LV_APP_NOTICE 1 +#if USE_LV_APP_NOTICE != 0 +#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ +#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 /*Notice close animation time. [ms] 0: no animation */ +#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/ +#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ +#endif + +/*File selector*/ +#define USE_LV_APP_FSEL 1 +#if USE_LV_APP_FSEL != 0 +#define LV_APP_FSEL_PAGE_SIZE 8 /*Max. number of files/folder on a page*/ +#define LV_APP_FSEL_FN_MAX_LEN 32 /*Max file name length*/ +#define LV_APP_FSEL_PATH_MAX_LEN 256 /*Max path length*/ +#endif + +/*Keyboard*/ +#define USE_LV_APP_KB 1 +#if USE_LV_APP_KB != 0 +/*No settings*/ +#endif -/* App. utility settings */ -#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/ -#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 /*Notice close animation time. [ms] 0: no animation */ -#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/ -#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/ /*================== * LV APP X USAGE * ================*/ +/*Example application*/ #define USE_LV_APP_EXAMPLE 1 +/*System monitor*/ #define USE_LV_APP_SYSMON 1 #if USE_LV_APP_SYSMON != 0 -#define LV_APP_SYSMON_REFR_TIME 500 /*[ms]*/ -#define LV_APP_SYSMON_PNUM 64 -#define LV_APP_SYSMON_MEM_WARN (4 * 1024) -#define LV_APP_SYSMON_FRAG_WARN (70) /*[%]*/ -#define LV_APP_SYSMON_DEFRAG_PERIOD (5000) /*[%]*/ +#define LV_APP_SYSMON_REFR_TIME 500 /*Mem. and CPU usage read period [ms]*/ +#define LV_APP_SYSMON_PNUM 64 /*Number of point on the window's chart*/ +#define LV_APP_SYSMON_MEM_WARN (2 * 1024) /*Make a notice less then this remaining memory [bytes]*/ +#define LV_APP_SYSMON_FRAG_WARN (70) /*Make a notice above this fragmentation level [%]*/ +#define LV_APP_SYSMON_DEFRAG_PERIOD (5000) /*Auto-defrag period [ms]*/ #endif /*USE_LV_APP_SYSMON != 0*/ +/*Terminal*/ #define USE_LV_APP_TERMINAL 1 #if USE_LV_APP_TERMINAL != 0 -#define LV_APP_TERMINAL_LENGTH 512 /*Memory of the terminal*/ +#define LV_APP_TERMINAL_LENGTH 512 /*Memory of the terminal [character number]*/ #endif /*USE_LV_APP_TERMINAL != 0*/ -#define USE_LV_APP_FILES 1 +/*Files*/ +#define USE_LV_APP_FILES 1 #if USE_LV_APP_FILES != 0 -#define LV_APP_FILES_PAGE_SIZE 8 /*Max. number of files/folder on a page*/ -#define LV_APP_FILES_FN_MAX_LEN 128 -#define LV_APP_FILES_PATH_MAX_LEN 256 -#define LV_APP_FILES_CHUNK_DEF_SIZE 256 -#define LV_APP_FILES_CHUNK_DEF_TIME 100 -#define LV_APP_FILES_CHUNK_MAX_SIZE 1024 +#define LV_APP_FILES_PAGE_SIZE 8 /*Max. number of files/folder on a page*/ +#define LV_APP_FILES_FN_MAX_LEN 32 /*Max file name length*/ +#define LV_APP_FILES_PATH_MAX_LEN 256 /*Max path length*/ +#define LV_APP_FILES_CHUNK_DEF_SIZE 256 /*Chunk size when sending a file*/ +#define LV_APP_FILES_CHUNK_DEF_TIME 100 /*Delay between sent chunks*/ +#define LV_APP_FILES_CHUNK_MAX_SIZE 1024 /*Max chunk size when the user sets it*/ #endif /*USE_LV_APP_FILES != 0*/ + #endif /*LV_APP_ENABLE != 0*/ #endif /*LV_CONF_H*/ + #endif /*Remove this to enable the content*/ diff --git a/lv_objx/lv_list.h b/lv_objx/lv_list.h index b33c2e1ed..746f94825 100644 --- a/lv_objx/lv_list.h +++ b/lv_objx/lv_list.h @@ -13,6 +13,10 @@ #if USE_LV_LIST != 0 /*Testing of dependencies*/ +#if USE_LV_PAGE == 0 +#error "lv_list: lv_page is required. Enable it in lv_conf.h (USE_LV_PAGE 1) " +#endif + #if USE_LV_BTN == 0 #error "lv_list: lv_btn is required. Enable it in lv_conf.h (USE_LV_BTN 1) " #endif @@ -25,6 +29,7 @@ #error "lv_list: lv_img is required. Enable it in lv_conf.h (USE_LV_IMG 1) " #endif + #include "../lv_obj/lv_obj.h" #include "lv_page.h" #include "lv_btn.h" diff --git a/lv_objx/lv_mbox.c b/lv_objx/lv_mbox.c index b3116de26..1d115fd45 100644 --- a/lv_objx/lv_mbox.c +++ b/lv_objx/lv_mbox.c @@ -17,7 +17,7 @@ /********************* * DEFINES *********************/ -#define LV_MBOX_CLOSE_ANIM_TIME 300 /*ms*/ +#define LV_MBOX_CLOSE_ANIM_TIME 200 /*Default close anim. time [ms]*/ /********************** * TYPEDEFS @@ -134,13 +134,9 @@ bool lv_mbox_signal(lv_obj_t * mbox, lv_signal_t sign, void * param) } } else if(sign == LV_SIGNAL_LONG_PRESS) { -#if LV_MBOX_ANIM_TIME != 0 lv_mbox_start_auto_close(mbox, 0); -#else - lv_obj_del(mbox); - valid = false; -#endif lv_dispi_wait_release(param); + valid = false; } else if(sign == LV_SIGNAL_STYLE_CHG) { /*Refresh all the buttons*/