chore(format) add formatting for examples & demos, merge test config
This commit is contained in:
@@ -56,7 +56,7 @@ typedef struct {
|
|||||||
uint32_t fps_normal;
|
uint32_t fps_normal;
|
||||||
uint32_t fps_opa;
|
uint32_t fps_opa;
|
||||||
uint8_t weight;
|
uint8_t weight;
|
||||||
}scene_dsc_t;
|
} scene_dsc_t;
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
* STATIC PROTOTYPES
|
* STATIC PROTOTYPES
|
||||||
@@ -528,65 +528,65 @@ static void sub_text_cb(void)
|
|||||||
* STATIC VARIABLES
|
* STATIC VARIABLES
|
||||||
**********************/
|
**********************/
|
||||||
static scene_dsc_t scenes[] = {
|
static scene_dsc_t scenes[] = {
|
||||||
{.name = "Rectangle", .weight = 30, .create_cb = rectangle_cb},
|
{.name = "Rectangle", .weight = 30, .create_cb = rectangle_cb},
|
||||||
{.name = "Rectangle rounded", .weight = 20, .create_cb = rectangle_rounded_cb},
|
{.name = "Rectangle rounded", .weight = 20, .create_cb = rectangle_rounded_cb},
|
||||||
{.name = "Circle", .weight = 10, .create_cb = rectangle_circle_cb},
|
{.name = "Circle", .weight = 10, .create_cb = rectangle_circle_cb},
|
||||||
{.name = "Border", .weight = 20, .create_cb = border_cb},
|
{.name = "Border", .weight = 20, .create_cb = border_cb},
|
||||||
{.name = "Border rounded", .weight = 30, .create_cb = border_rounded_cb},
|
{.name = "Border rounded", .weight = 30, .create_cb = border_rounded_cb},
|
||||||
{.name = "Circle border", .weight = 10, .create_cb = border_circle_cb},
|
{.name = "Circle border", .weight = 10, .create_cb = border_circle_cb},
|
||||||
{.name = "Border top", .weight = 3, .create_cb = border_top_cb},
|
{.name = "Border top", .weight = 3, .create_cb = border_top_cb},
|
||||||
{.name = "Border left", .weight = 3, .create_cb = border_left_cb},
|
{.name = "Border left", .weight = 3, .create_cb = border_left_cb},
|
||||||
{.name = "Border top + left", .weight = 3, .create_cb = border_top_left_cb},
|
{.name = "Border top + left", .weight = 3, .create_cb = border_top_left_cb},
|
||||||
{.name = "Border left + right", .weight = 3, .create_cb = border_left_right_cb},
|
{.name = "Border left + right", .weight = 3, .create_cb = border_left_right_cb},
|
||||||
{.name = "Border top + bottom", .weight = 3, .create_cb = border_top_bottom_cb},
|
{.name = "Border top + bottom", .weight = 3, .create_cb = border_top_bottom_cb},
|
||||||
|
|
||||||
{.name = "Shadow small", .weight = 3, .create_cb = shadow_small_cb},
|
{.name = "Shadow small", .weight = 3, .create_cb = shadow_small_cb},
|
||||||
{.name = "Shadow small offset", .weight = 5, .create_cb = shadow_small_ofs_cb},
|
{.name = "Shadow small offset", .weight = 5, .create_cb = shadow_small_ofs_cb},
|
||||||
{.name = "Shadow large", .weight = 5, .create_cb = shadow_large_cb},
|
{.name = "Shadow large", .weight = 5, .create_cb = shadow_large_cb},
|
||||||
{.name = "Shadow large offset", .weight = 3, .create_cb = shadow_large_ofs_cb},
|
{.name = "Shadow large offset", .weight = 3, .create_cb = shadow_large_ofs_cb},
|
||||||
|
|
||||||
{.name = "Image RGB", .weight = 20, .create_cb = img_rgb_cb},
|
{.name = "Image RGB", .weight = 20, .create_cb = img_rgb_cb},
|
||||||
{.name = "Image ARGB", .weight = 20, .create_cb = img_argb_cb},
|
{.name = "Image ARGB", .weight = 20, .create_cb = img_argb_cb},
|
||||||
{.name = "Image chorma keyed", .weight = 5, .create_cb = img_ckey_cb},
|
{.name = "Image chorma keyed", .weight = 5, .create_cb = img_ckey_cb},
|
||||||
{.name = "Image indexed", .weight = 5, .create_cb = img_index_cb},
|
{.name = "Image indexed", .weight = 5, .create_cb = img_index_cb},
|
||||||
{.name = "Image alpha only", .weight = 5, .create_cb = img_alpha_cb},
|
{.name = "Image alpha only", .weight = 5, .create_cb = img_alpha_cb},
|
||||||
|
|
||||||
{.name = "Image RGB recolor", .weight = 5, .create_cb = img_rgb_recolor_cb},
|
{.name = "Image RGB recolor", .weight = 5, .create_cb = img_rgb_recolor_cb},
|
||||||
{.name = "Image ARGB recolor", .weight = 20, .create_cb = img_argb_recolor_cb},
|
{.name = "Image ARGB recolor", .weight = 20, .create_cb = img_argb_recolor_cb},
|
||||||
{.name = "Image chorma keyed recolor", .weight = 3, .create_cb = img_ckey_recolor_cb},
|
{.name = "Image chorma keyed recolor", .weight = 3, .create_cb = img_ckey_recolor_cb},
|
||||||
{.name = "Image indexed recolor", .weight = 3, .create_cb = img_index_recolor_cb},
|
{.name = "Image indexed recolor", .weight = 3, .create_cb = img_index_recolor_cb},
|
||||||
|
|
||||||
{.name = "Image RGB rotate", .weight = 3, .create_cb = img_rgb_rot_cb},
|
{.name = "Image RGB rotate", .weight = 3, .create_cb = img_rgb_rot_cb},
|
||||||
{.name = "Image RGB rotate anti aliased", .weight = 3, .create_cb = img_rgb_rot_aa_cb},
|
{.name = "Image RGB rotate anti aliased", .weight = 3, .create_cb = img_rgb_rot_aa_cb},
|
||||||
{.name = "Image ARGB rotate", .weight = 5, .create_cb = img_argb_rot_cb},
|
{.name = "Image ARGB rotate", .weight = 5, .create_cb = img_argb_rot_cb},
|
||||||
{.name = "Image ARGB rotate anti aliased", .weight = 5, .create_cb = img_argb_rot_aa_cb},
|
{.name = "Image ARGB rotate anti aliased", .weight = 5, .create_cb = img_argb_rot_aa_cb},
|
||||||
{.name = "Image RGB zoom", .weight = 3, .create_cb = img_rgb_zoom_cb},
|
{.name = "Image RGB zoom", .weight = 3, .create_cb = img_rgb_zoom_cb},
|
||||||
{.name = "Image RGB zoom anti aliased", .weight = 3, .create_cb = img_rgb_zoom_aa_cb},
|
{.name = "Image RGB zoom anti aliased", .weight = 3, .create_cb = img_rgb_zoom_aa_cb},
|
||||||
{.name = "Image ARGB zoom", .weight = 5, .create_cb = img_argb_zoom_cb},
|
{.name = "Image ARGB zoom", .weight = 5, .create_cb = img_argb_zoom_cb},
|
||||||
{.name = "Image ARGB zoom anti aliased", .weight = 5, .create_cb = img_argb_zoom_aa_cb},
|
{.name = "Image ARGB zoom anti aliased", .weight = 5, .create_cb = img_argb_zoom_aa_cb},
|
||||||
|
|
||||||
{.name = "Text small", .weight = 20, .create_cb = txt_small_cb},
|
{.name = "Text small", .weight = 20, .create_cb = txt_small_cb},
|
||||||
{.name = "Text medium", .weight = 30, .create_cb = txt_medium_cb},
|
{.name = "Text medium", .weight = 30, .create_cb = txt_medium_cb},
|
||||||
{.name = "Text large", .weight = 20, .create_cb = txt_large_cb},
|
{.name = "Text large", .weight = 20, .create_cb = txt_large_cb},
|
||||||
|
|
||||||
{.name = "Text small compressed", .weight = 3, .create_cb = txt_small_compr_cb},
|
{.name = "Text small compressed", .weight = 3, .create_cb = txt_small_compr_cb},
|
||||||
{.name = "Text medium compressed", .weight = 5, .create_cb = txt_medium_compr_cb},
|
{.name = "Text medium compressed", .weight = 5, .create_cb = txt_medium_compr_cb},
|
||||||
{.name = "Text large compressed", .weight = 10, .create_cb = txt_large_compr_cb},
|
{.name = "Text large compressed", .weight = 10, .create_cb = txt_large_compr_cb},
|
||||||
|
|
||||||
{.name = "Line", .weight = 10, .create_cb = line_cb},
|
{.name = "Line", .weight = 10, .create_cb = line_cb},
|
||||||
|
|
||||||
{.name = "Arc think", .weight = 10, .create_cb = arc_think_cb},
|
{.name = "Arc think", .weight = 10, .create_cb = arc_think_cb},
|
||||||
{.name = "Arc thick", .weight = 10, .create_cb = arc_thick_cb},
|
{.name = "Arc thick", .weight = 10, .create_cb = arc_thick_cb},
|
||||||
|
|
||||||
{.name = "Substr. rectangle", .weight = 10, .create_cb = sub_rectangle_cb},
|
{.name = "Substr. rectangle", .weight = 10, .create_cb = sub_rectangle_cb},
|
||||||
{.name = "Substr. border", .weight = 10, .create_cb = sub_border_cb},
|
{.name = "Substr. border", .weight = 10, .create_cb = sub_border_cb},
|
||||||
{.name = "Substr. shadow", .weight = 10, .create_cb = sub_shadow_cb},
|
{.name = "Substr. shadow", .weight = 10, .create_cb = sub_shadow_cb},
|
||||||
{.name = "Substr. image", .weight = 10, .create_cb = sub_img_cb},
|
{.name = "Substr. image", .weight = 10, .create_cb = sub_img_cb},
|
||||||
{.name = "Substr. line", .weight = 10, .create_cb = sub_line_cb},
|
{.name = "Substr. line", .weight = 10, .create_cb = sub_line_cb},
|
||||||
{.name = "Substr. arc", .weight = 10, .create_cb = sub_arc_cb},
|
{.name = "Substr. arc", .weight = 10, .create_cb = sub_arc_cb},
|
||||||
{.name = "Substr. text", .weight = 10, .create_cb = sub_text_cb},
|
{.name = "Substr. text", .weight = 10, .create_cb = sub_text_cb},
|
||||||
|
|
||||||
{.name = "", .create_cb = NULL}
|
{.name = "", .create_cb = NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
static int32_t scene_act = -1;
|
static int32_t scene_act = -1;
|
||||||
@@ -597,22 +597,22 @@ static uint32_t rnd_act;
|
|||||||
|
|
||||||
|
|
||||||
static uint32_t rnd_map[] = {
|
static uint32_t rnd_map[] = {
|
||||||
0xbd13204f, 0x67d8167f, 0x20211c99, 0xb0a7cc05,
|
0xbd13204f, 0x67d8167f, 0x20211c99, 0xb0a7cc05,
|
||||||
0x06d5c703, 0xeafb01a7, 0xd0473b5c, 0xc999aaa2,
|
0x06d5c703, 0xeafb01a7, 0xd0473b5c, 0xc999aaa2,
|
||||||
0x86f9d5d9, 0x294bdb29, 0x12a3c207, 0x78914d14,
|
0x86f9d5d9, 0x294bdb29, 0x12a3c207, 0x78914d14,
|
||||||
0x10a30006, 0x6134c7db, 0x194443af, 0x142d1099,
|
0x10a30006, 0x6134c7db, 0x194443af, 0x142d1099,
|
||||||
0x376292d5, 0x20f433c5, 0x074d2a59, 0x4e74c293,
|
0x376292d5, 0x20f433c5, 0x074d2a59, 0x4e74c293,
|
||||||
0x072a0810, 0xdd0f136d, 0x5cca6dbc, 0x623bfdd8,
|
0x072a0810, 0xdd0f136d, 0x5cca6dbc, 0x623bfdd8,
|
||||||
0xb645eb2f, 0xbe50894a, 0xc9b56717, 0xe0f912c8,
|
0xb645eb2f, 0xbe50894a, 0xc9b56717, 0xe0f912c8,
|
||||||
0x4f6b5e24, 0xfe44b128, 0xe12d57a8, 0x9b15c9cc,
|
0x4f6b5e24, 0xfe44b128, 0xe12d57a8, 0x9b15c9cc,
|
||||||
0xab2ae1d3, 0xb4dc5074, 0x67d457c8, 0x8e46b00c,
|
0xab2ae1d3, 0xb4dc5074, 0x67d457c8, 0x8e46b00c,
|
||||||
0xa29a1871, 0xcee40332, 0x80f93aa1, 0x85286096,
|
0xa29a1871, 0xcee40332, 0x80f93aa1, 0x85286096,
|
||||||
0x09bd6b49, 0x95072088, 0x2093924b, 0x6a27328f,
|
0x09bd6b49, 0x95072088, 0x2093924b, 0x6a27328f,
|
||||||
0xa796079b, 0xc3b488bc, 0xe29bcce0, 0x07048a4c,
|
0xa796079b, 0xc3b488bc, 0xe29bcce0, 0x07048a4c,
|
||||||
0x7d81bd99, 0x27aacb30, 0x44fc7a0e, 0xa2382241,
|
0x7d81bd99, 0x27aacb30, 0x44fc7a0e, 0xa2382241,
|
||||||
0x8357a17d, 0x97e9c9cc, 0xad10ff52, 0x9923fc5c,
|
0x8357a17d, 0x97e9c9cc, 0xad10ff52, 0x9923fc5c,
|
||||||
0x8f2c840a, 0x20356ba2, 0x7997a677, 0x9a7f1800,
|
0x8f2c840a, 0x20356ba2, 0x7997a677, 0x9a7f1800,
|
||||||
0x35c7562b, 0xd901fe51, 0x8f4e053d, 0xa5b94923,
|
0x35c7562b, 0xd901fe51, 0x8f4e053d, 0xa5b94923,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
@@ -662,12 +662,13 @@ static void monitor_cb(lv_disp_drv_t * drv, uint32_t time, uint32_t px)
|
|||||||
if(opa_mode) {
|
if(opa_mode) {
|
||||||
scenes[scene_act].refr_cnt_opa ++;
|
scenes[scene_act].refr_cnt_opa ++;
|
||||||
scenes[scene_act].time_sum_opa += time;
|
scenes[scene_act].time_sum_opa += time;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
scenes[scene_act].refr_cnt_normal ++;
|
scenes[scene_act].refr_cnt_normal ++;
|
||||||
scenes[scene_act].time_sum_normal += time;
|
scenes[scene_act].time_sum_normal += time;
|
||||||
}
|
}
|
||||||
|
|
||||||
// lv_obj_invalidate(lv_scr_act());
|
// lv_obj_invalidate(lv_scr_act());
|
||||||
}
|
}
|
||||||
|
|
||||||
static void scene_next_task_cb(lv_timer_t * timer)
|
static void scene_next_task_cb(lv_timer_t * timer)
|
||||||
@@ -680,24 +681,31 @@ static void scene_next_task_cb(lv_timer_t * timer)
|
|||||||
if(scenes[scene_act].time_sum_opa == 0) scenes[scene_act].time_sum_opa = 1;
|
if(scenes[scene_act].time_sum_opa == 0) scenes[scene_act].time_sum_opa = 1;
|
||||||
scenes[scene_act].fps_opa = (1000 * scenes[scene_act].refr_cnt_opa) / scenes[scene_act].time_sum_opa;
|
scenes[scene_act].fps_opa = (1000 * scenes[scene_act].refr_cnt_opa) / scenes[scene_act].time_sum_opa;
|
||||||
if(scenes[scene_act].create_cb) scene_act++; /*If still there are scenes go to the next*/
|
if(scenes[scene_act].create_cb) scene_act++; /*If still there are scenes go to the next*/
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
scene_act ++;
|
scene_act ++;
|
||||||
}
|
}
|
||||||
opa_mode = false;
|
opa_mode = false;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
if(scenes[scene_act].time_sum_normal == 0) scenes[scene_act].time_sum_normal = 1;
|
if(scenes[scene_act].time_sum_normal == 0) scenes[scene_act].time_sum_normal = 1;
|
||||||
scenes[scene_act].fps_normal = (1000 * scenes[scene_act].refr_cnt_normal) / scenes[scene_act].time_sum_normal;
|
scenes[scene_act].fps_normal = (1000 * scenes[scene_act].refr_cnt_normal) / scenes[scene_act].time_sum_normal;
|
||||||
opa_mode = true;
|
opa_mode = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(scenes[scene_act].create_cb) {
|
if(scenes[scene_act].create_cb) {
|
||||||
lv_label_set_text_fmt(title, "%"LV_PRId32"/%d: %s%s", scene_act * 2 + (opa_mode ? 1 : 0), (sizeof(scenes) / sizeof(scene_dsc_t) * 2) - 2, scenes[scene_act].name, opa_mode ? " + opa" : "");
|
lv_label_set_text_fmt(title, "%"LV_PRId32"/%d: %s%s", scene_act * 2 + (opa_mode ? 1 : 0),
|
||||||
|
(sizeof(scenes) / sizeof(scene_dsc_t) * 2) - 2, scenes[scene_act].name, opa_mode ? " + opa" : "");
|
||||||
if(opa_mode) {
|
if(opa_mode) {
|
||||||
lv_label_set_text_fmt(subtitle, "Result of \"%s\": %"LV_PRId32" FPS", scenes[scene_act].name, scenes[scene_act].fps_normal);
|
lv_label_set_text_fmt(subtitle, "Result of \"%s\": %"LV_PRId32" FPS", scenes[scene_act].name,
|
||||||
} else {
|
scenes[scene_act].fps_normal);
|
||||||
|
}
|
||||||
|
else {
|
||||||
if(scene_act > 0) {
|
if(scene_act > 0) {
|
||||||
lv_label_set_text_fmt(subtitle, "Result of \"%s + opa\": %"LV_PRId32" FPS", scenes[scene_act - 1].name, scenes[scene_act - 1].fps_opa);
|
lv_label_set_text_fmt(subtitle, "Result of \"%s + opa\": %"LV_PRId32" FPS", scenes[scene_act - 1].name,
|
||||||
} else {
|
scenes[scene_act - 1].fps_opa);
|
||||||
|
}
|
||||||
|
else {
|
||||||
lv_label_set_text(subtitle, "");
|
lv_label_set_text(subtitle, "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -750,41 +758,41 @@ static void scene_next_task_cb(lv_timer_t * timer)
|
|||||||
|
|
||||||
lv_coord_t w = lv_obj_get_content_width(lv_scr_act());
|
lv_coord_t w = lv_obj_get_content_width(lv_scr_act());
|
||||||
lv_obj_t * table = lv_table_create(lv_scr_act());
|
lv_obj_t * table = lv_table_create(lv_scr_act());
|
||||||
// lv_obj_clean_style_list(table, LV_PART_MAIN);
|
// lv_obj_clean_style_list(table, LV_PART_MAIN);
|
||||||
lv_table_set_col_cnt(table, 2);
|
lv_table_set_col_cnt(table, 2);
|
||||||
|
|
||||||
lv_table_set_col_width(table, 0, (w * 3) / 4 - 3);
|
lv_table_set_col_width(table, 0, (w * 3) / 4 - 3);
|
||||||
lv_table_set_col_width(table, 1, w / 4 - 3);
|
lv_table_set_col_width(table, 1, w / 4 - 3);
|
||||||
lv_obj_set_width(table, lv_pct(100));
|
lv_obj_set_width(table, lv_pct(100));
|
||||||
|
|
||||||
// static lv_style_t style_cell_slow;
|
// static lv_style_t style_cell_slow;
|
||||||
// static lv_style_t style_cell_very_slow;
|
// static lv_style_t style_cell_very_slow;
|
||||||
// static lv_style_t style_cell_title;
|
// static lv_style_t style_cell_title;
|
||||||
//
|
//
|
||||||
// lv_style_init(&style_cell_title);
|
// lv_style_init(&style_cell_title);
|
||||||
// lv_style_set_bg_color(&style_cell_title, LV_STATE_DEFAULT, lv_palette_main(LV_PALETTE_GREY));
|
// lv_style_set_bg_color(&style_cell_title, LV_STATE_DEFAULT, lv_palette_main(LV_PALETTE_GREY));
|
||||||
// lv_style_set_bg_opa(&style_cell_title, LV_STATE_DEFAULT, LV_OPA_50);
|
// lv_style_set_bg_opa(&style_cell_title, LV_STATE_DEFAULT, LV_OPA_50);
|
||||||
//
|
//
|
||||||
// lv_style_init(&style_cell_slow);
|
// lv_style_init(&style_cell_slow);
|
||||||
// lv_style_set_text_color(&style_cell_slow, LV_STATE_DEFAULT, LV_COLOR_ORANGE);
|
// lv_style_set_text_color(&style_cell_slow, LV_STATE_DEFAULT, LV_COLOR_ORANGE);
|
||||||
//
|
//
|
||||||
// lv_style_init(&style_cell_very_slow);
|
// lv_style_init(&style_cell_very_slow);
|
||||||
// lv_style_set_text_color(&style_cell_very_slow, LV_STATE_DEFAULT, lv_palette_main(LV_PALETTE_RED));
|
// lv_style_set_text_color(&style_cell_very_slow, LV_STATE_DEFAULT, lv_palette_main(LV_PALETTE_RED));
|
||||||
|
|
||||||
// lv_obj_add_style(table, LV_TABLE_PART_CELL2, &style_cell_slow);
|
// lv_obj_add_style(table, LV_TABLE_PART_CELL2, &style_cell_slow);
|
||||||
// lv_obj_add_style(table, LV_TABLE_PART_CELL3, &style_cell_very_slow);
|
// lv_obj_add_style(table, LV_TABLE_PART_CELL3, &style_cell_very_slow);
|
||||||
// lv_obj_add_style(table, LV_TABLE_PART_CELL4, &style_cell_title);
|
// lv_obj_add_style(table, LV_TABLE_PART_CELL4, &style_cell_title);
|
||||||
|
|
||||||
|
|
||||||
uint16_t row = 0;
|
uint16_t row = 0;
|
||||||
lv_table_add_cell_ctrl(table, row, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT);
|
lv_table_add_cell_ctrl(table, row, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT);
|
||||||
lv_table_set_cell_value(table, row, 0, "Slow but common cases");
|
lv_table_set_cell_value(table, row, 0, "Slow but common cases");
|
||||||
// lv_table_set_cell_type(table, row, 0, 4);
|
// lv_table_set_cell_type(table, row, 0, 4);
|
||||||
|
|
||||||
LV_LOG("\r\n"
|
LV_LOG("\r\n"
|
||||||
"LVGL v%d.%d.%d " LVGL_VERSION_INFO
|
"LVGL v%d.%d.%d " LVGL_VERSION_INFO
|
||||||
" Benchmark (in csv format)\r\n",
|
" Benchmark (in csv format)\r\n",
|
||||||
LVGL_VERSION_MAJOR, LVGL_VERSION_MINOR, LVGL_VERSION_PATCH);
|
LVGL_VERSION_MAJOR, LVGL_VERSION_MINOR, LVGL_VERSION_PATCH);
|
||||||
|
|
||||||
row++;
|
row++;
|
||||||
char buf[256];
|
char buf[256];
|
||||||
@@ -796,27 +804,27 @@ static void scene_next_task_cb(lv_timer_t * timer)
|
|||||||
lv_snprintf(buf, sizeof(buf), "%"LV_PRIu32, scenes[i].fps_normal);
|
lv_snprintf(buf, sizeof(buf), "%"LV_PRIu32, scenes[i].fps_normal);
|
||||||
lv_table_set_cell_value(table, row, 1, buf);
|
lv_table_set_cell_value(table, row, 1, buf);
|
||||||
|
|
||||||
// lv_table_set_cell_type(table, row, 0, 2);
|
// lv_table_set_cell_type(table, row, 0, 2);
|
||||||
// lv_table_set_cell_type(table, row, 1, 2);
|
// lv_table_set_cell_type(table, row, 1, 2);
|
||||||
|
|
||||||
LV_LOG("%s,%s\r\n", scenes[i].name, buf);
|
LV_LOG("%s,%s\r\n", scenes[i].name, buf);
|
||||||
|
|
||||||
row++;
|
row++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(scenes[i].fps_opa < 20 && LV_MAX(scenes[i].weight / 2, 1) >= 10) {
|
if(scenes[i].fps_opa < 20 && LV_MAX(scenes[i].weight / 2, 1) >= 10) {
|
||||||
lv_snprintf(buf, sizeof(buf), "%s + opa", scenes[i].name);
|
lv_snprintf(buf, sizeof(buf), "%s + opa", scenes[i].name);
|
||||||
lv_table_set_cell_value(table, row, 0, buf);
|
lv_table_set_cell_value(table, row, 0, buf);
|
||||||
|
|
||||||
LV_LOG("%s,", buf);
|
LV_LOG("%s,", buf);
|
||||||
|
|
||||||
lv_snprintf(buf, sizeof(buf), "%"LV_PRIu32, scenes[i].fps_opa);
|
lv_snprintf(buf, sizeof(buf), "%"LV_PRIu32, scenes[i].fps_opa);
|
||||||
lv_table_set_cell_value(table, row, 1, buf);
|
lv_table_set_cell_value(table, row, 1, buf);
|
||||||
|
|
||||||
// lv_table_set_cell_type(table, row, 0, 2);
|
// lv_table_set_cell_type(table, row, 0, 2);
|
||||||
// lv_table_set_cell_type(table, row, 1, 2);
|
// lv_table_set_cell_type(table, row, 1, 2);
|
||||||
LV_LOG("%s\r\n", buf);
|
LV_LOG("%s\r\n", buf);
|
||||||
|
|
||||||
row++;
|
row++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -830,7 +838,7 @@ static void scene_next_task_cb(lv_timer_t * timer)
|
|||||||
|
|
||||||
lv_table_add_cell_ctrl(table, row, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT);
|
lv_table_add_cell_ctrl(table, row, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT);
|
||||||
lv_table_set_cell_value(table, row, 0, "All cases");
|
lv_table_set_cell_value(table, row, 0, "All cases");
|
||||||
// lv_table_set_cell_type(table, row, 0, 4);
|
// lv_table_set_cell_type(table, row, 0, 4);
|
||||||
row++;
|
row++;
|
||||||
|
|
||||||
for(i = 0; i < sizeof(scenes) / sizeof(scene_dsc_t) - 1; i++) {
|
for(i = 0; i < sizeof(scenes) / sizeof(scene_dsc_t) - 1; i++) {
|
||||||
@@ -840,14 +848,14 @@ static void scene_next_task_cb(lv_timer_t * timer)
|
|||||||
lv_table_set_cell_value(table, row, 1, buf);
|
lv_table_set_cell_value(table, row, 1, buf);
|
||||||
|
|
||||||
if(scenes[i].fps_normal < 10) {
|
if(scenes[i].fps_normal < 10) {
|
||||||
// lv_table_set_cell_type(table, row, 0, 3);
|
// lv_table_set_cell_type(table, row, 0, 3);
|
||||||
// lv_table_set_cell_type(table, row, 1, 3);
|
// lv_table_set_cell_type(table, row, 1, 3);
|
||||||
}
|
}
|
||||||
else if(scenes[i].fps_normal < 20) {
|
else if(scenes[i].fps_normal < 20) {
|
||||||
// lv_table_set_cell_type(table, row, 0, 2);
|
// lv_table_set_cell_type(table, row, 0, 2);
|
||||||
// lv_table_set_cell_type(table, row, 1, 2);
|
// lv_table_set_cell_type(table, row, 1, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
LV_LOG("%s,%s\r\n", scenes[i].name, buf);
|
LV_LOG("%s,%s\r\n", scenes[i].name, buf);
|
||||||
|
|
||||||
row++;
|
row++;
|
||||||
@@ -856,26 +864,26 @@ static void scene_next_task_cb(lv_timer_t * timer)
|
|||||||
lv_table_set_cell_value(table, row, 0, buf);
|
lv_table_set_cell_value(table, row, 0, buf);
|
||||||
|
|
||||||
LV_LOG("%s,", buf);
|
LV_LOG("%s,", buf);
|
||||||
|
|
||||||
lv_snprintf(buf, sizeof(buf), "%"LV_PRIu32, scenes[i].fps_opa);
|
lv_snprintf(buf, sizeof(buf), "%"LV_PRIu32, scenes[i].fps_opa);
|
||||||
lv_table_set_cell_value(table, row, 1, buf);
|
lv_table_set_cell_value(table, row, 1, buf);
|
||||||
|
|
||||||
|
|
||||||
if(scenes[i].fps_opa < 10) {
|
if(scenes[i].fps_opa < 10) {
|
||||||
// lv_table_set_cell_type(table, row, 0, 3);
|
// lv_table_set_cell_type(table, row, 0, 3);
|
||||||
// lv_table_set_cell_type(table, row, 1, 3);
|
// lv_table_set_cell_type(table, row, 1, 3);
|
||||||
}
|
}
|
||||||
else if(scenes[i].fps_opa < 20) {
|
else if(scenes[i].fps_opa < 20) {
|
||||||
// lv_table_set_cell_type(table, row, 0, 2);
|
// lv_table_set_cell_type(table, row, 0, 2);
|
||||||
// lv_table_set_cell_type(table, row, 1, 2);
|
// lv_table_set_cell_type(table, row, 1, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
LV_LOG("%s\r\n", buf);
|
LV_LOG("%s\r\n", buf);
|
||||||
|
|
||||||
row++;
|
row++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// lv_page_set_scrl_layout(page, LV_LAYOUT_COLUMN_LEFT);
|
// lv_page_set_scrl_layout(page, LV_LAYOUT_COLUMN_LEFT);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ static void ta_event_cb(lv_event_t * e);
|
|||||||
/**********************
|
/**********************
|
||||||
* STATIC VARIABLES
|
* STATIC VARIABLES
|
||||||
**********************/
|
**********************/
|
||||||
static lv_group_t* g;
|
static lv_group_t * g;
|
||||||
static lv_obj_t * tv;
|
static lv_obj_t * tv;
|
||||||
static lv_obj_t * t1;
|
static lv_obj_t * t1;
|
||||||
static lv_obj_t * t2;
|
static lv_obj_t * t2;
|
||||||
@@ -49,18 +49,18 @@ void lv_demo_keypad_encoder(void)
|
|||||||
g = lv_group_create();
|
g = lv_group_create();
|
||||||
lv_group_set_default(g);
|
lv_group_set_default(g);
|
||||||
|
|
||||||
lv_indev_t* cur_drv = NULL;
|
lv_indev_t * cur_drv = NULL;
|
||||||
for (;;) {
|
for(;;) {
|
||||||
cur_drv = lv_indev_get_next(cur_drv);
|
cur_drv = lv_indev_get_next(cur_drv);
|
||||||
if (!cur_drv) {
|
if(!cur_drv) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cur_drv->driver->type == LV_INDEV_TYPE_KEYPAD) {
|
if(cur_drv->driver->type == LV_INDEV_TYPE_KEYPAD) {
|
||||||
lv_indev_set_group(cur_drv, g);
|
lv_indev_set_group(cur_drv, g);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cur_drv->driver->type == LV_INDEV_TYPE_ENCODER) {
|
if(cur_drv->driver->type == LV_INDEV_TYPE_ENCODER) {
|
||||||
lv_indev_set_group(cur_drv, g);
|
lv_indev_set_group(cur_drv, g);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -152,7 +152,7 @@ static void text_input_create(lv_obj_t * parent)
|
|||||||
lv_textarea_set_one_line(ta2, true);
|
lv_textarea_set_one_line(ta2, true);
|
||||||
lv_textarea_set_placeholder_text(ta2, "Type something");
|
lv_textarea_set_placeholder_text(ta2, "Type something");
|
||||||
|
|
||||||
lv_obj_t *kb = lv_keyboard_create(lv_scr_act());
|
lv_obj_t * kb = lv_keyboard_create(lv_scr_act());
|
||||||
lv_obj_add_flag(kb, LV_OBJ_FLAG_HIDDEN);
|
lv_obj_add_flag(kb, LV_OBJ_FLAG_HIDDEN);
|
||||||
|
|
||||||
lv_obj_add_event_cb(ta1, ta_event_cb, LV_EVENT_ALL, kb);
|
lv_obj_add_event_cb(ta1, ta_event_cb, LV_EVENT_ALL, kb);
|
||||||
|
|||||||
@@ -16,23 +16,23 @@ extern "C" {
|
|||||||
#include "../lvgl.h"
|
#include "../lvgl.h"
|
||||||
|
|
||||||
#if LV_USE_DEMO_WIDGETS
|
#if LV_USE_DEMO_WIDGETS
|
||||||
#include "widgets/lv_demo_widgets.h"
|
#include "widgets/lv_demo_widgets.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LV_USE_DEMO_BENCHMARK
|
#if LV_USE_DEMO_BENCHMARK
|
||||||
#include "benchmark/lv_demo_benchmark.h"
|
#include "benchmark/lv_demo_benchmark.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LV_USE_DEMO_STRESS
|
#if LV_USE_DEMO_STRESS
|
||||||
#include "stress/lv_demo_stress.h"
|
#include "stress/lv_demo_stress.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LV_USE_DEMO_KEYPAD_AND_ENCODER
|
#if LV_USE_DEMO_KEYPAD_AND_ENCODER
|
||||||
#include "keypad_encoder/lv_demo_keypad_encoder.h"
|
#include "keypad_encoder/lv_demo_keypad_encoder.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if LV_USE_DEMO_MUSIC
|
#if LV_USE_DEMO_MUSIC
|
||||||
#include "music/lv_demo_music.h"
|
#include "music/lv_demo_music.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
* STATIC PROTOTYPES
|
* STATIC PROTOTYPES
|
||||||
**********************/
|
**********************/
|
||||||
#if LV_DEMO_MUSIC_AUTO_PLAY
|
#if LV_DEMO_MUSIC_AUTO_PLAY
|
||||||
static void auto_step_cb(lv_timer_t * timer);
|
static void auto_step_cb(lv_timer_t * timer);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
@@ -87,20 +87,20 @@ static const char * genre_list[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const uint32_t time_list[] = {
|
static const uint32_t time_list[] = {
|
||||||
1*60 + 14,
|
1 * 60 + 14,
|
||||||
2*60 + 26,
|
2 * 60 + 26,
|
||||||
1*60 + 54,
|
1 * 60 + 54,
|
||||||
2*60 + 24,
|
2 * 60 + 24,
|
||||||
2*60 + 37,
|
2 * 60 + 37,
|
||||||
3*60 + 33,
|
3 * 60 + 33,
|
||||||
1*60 + 56,
|
1 * 60 + 56,
|
||||||
3*60 + 31,
|
3 * 60 + 31,
|
||||||
2*60 + 20,
|
2 * 60 + 20,
|
||||||
2*60 + 19,
|
2 * 60 + 19,
|
||||||
2*60 + 20,
|
2 * 60 + 20,
|
||||||
2*60 + 19,
|
2 * 60 + 19,
|
||||||
2*60 + 20,
|
2 * 60 + 20,
|
||||||
2*60 + 19,
|
2 * 60 + 19,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
@@ -166,84 +166,84 @@ static void auto_step_cb(lv_timer_t * t)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
switch(state) {
|
switch(state) {
|
||||||
case 5:
|
case 5:
|
||||||
_lv_demo_music_album_next(true);
|
_lv_demo_music_album_next(true);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 6:
|
case 6:
|
||||||
_lv_demo_music_album_next(true);
|
_lv_demo_music_album_next(true);
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
_lv_demo_music_album_next(true);
|
_lv_demo_music_album_next(true);
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
_lv_demo_music_play(0);
|
_lv_demo_music_play(0);
|
||||||
break;
|
break;
|
||||||
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
||||||
case 11:
|
case 11:
|
||||||
lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON);
|
lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 13:
|
||||||
lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON);
|
lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
#else
|
#else
|
||||||
case 12:
|
case 12:
|
||||||
lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON);
|
lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case 15:
|
case 15:
|
||||||
lv_obj_scroll_by(list, 0, -300, LV_ANIM_ON);
|
lv_obj_scroll_by(list, 0, -300, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
lv_obj_scroll_by(list, 0, 300, LV_ANIM_ON);
|
lv_obj_scroll_by(list, 0, 300, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
_lv_demo_music_play(1);
|
_lv_demo_music_play(1);
|
||||||
break;
|
break;
|
||||||
case 19:
|
case 19:
|
||||||
lv_obj_scroll_by(ctrl, 0, LV_VER_RES, LV_ANIM_ON);
|
lv_obj_scroll_by(ctrl, 0, LV_VER_RES, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
||||||
case 20:
|
case 20:
|
||||||
lv_obj_scroll_by(ctrl, 0, LV_VER_RES, LV_ANIM_ON);
|
lv_obj_scroll_by(ctrl, 0, LV_VER_RES, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case 30:
|
case 30:
|
||||||
_lv_demo_music_play(2);
|
_lv_demo_music_play(2);
|
||||||
break;
|
break;
|
||||||
case 40: {
|
case 40: {
|
||||||
lv_obj_t * bg = lv_layer_top();
|
lv_obj_t * bg = lv_layer_top();
|
||||||
lv_obj_set_style_bg_color(bg, lv_color_hex(0x6f8af6), 0);
|
lv_obj_set_style_bg_color(bg, lv_color_hex(0x6f8af6), 0);
|
||||||
lv_obj_set_style_text_color(bg, lv_color_white(), 0);
|
lv_obj_set_style_text_color(bg, lv_color_white(), 0);
|
||||||
lv_obj_set_style_bg_opa(bg, LV_OPA_COVER, 0);
|
lv_obj_set_style_bg_opa(bg, LV_OPA_COVER, 0);
|
||||||
lv_obj_fade_in(bg, 400, 0);
|
lv_obj_fade_in(bg, 400, 0);
|
||||||
lv_obj_t * dsc = lv_label_create(bg);
|
lv_obj_t * dsc = lv_label_create(bg);
|
||||||
lv_obj_set_style_text_font(dsc, font_small, 0);
|
lv_obj_set_style_text_font(dsc, font_small, 0);
|
||||||
lv_label_set_text(dsc, "The average FPS is");
|
lv_label_set_text(dsc, "The average FPS is");
|
||||||
lv_obj_align(dsc, LV_ALIGN_TOP_MID, 0, 90);
|
lv_obj_align(dsc, LV_ALIGN_TOP_MID, 0, 90);
|
||||||
|
|
||||||
lv_obj_t * num = lv_label_create(bg);
|
lv_obj_t * num = lv_label_create(bg);
|
||||||
lv_obj_set_style_text_font(num, font_large, 0);
|
lv_obj_set_style_text_font(num, font_large, 0);
|
||||||
#if LV_USE_PERF_MONITOR
|
#if LV_USE_PERF_MONITOR
|
||||||
lv_label_set_text_fmt(num, "%d", lv_refr_get_fps_avg());
|
lv_label_set_text_fmt(num, "%d", lv_refr_get_fps_avg());
|
||||||
#endif
|
#endif
|
||||||
lv_obj_align(num, LV_ALIGN_TOP_MID, 0, 120);
|
lv_obj_align(num, LV_ALIGN_TOP_MID, 0, 120);
|
||||||
|
|
||||||
lv_obj_t * attr = lv_label_create(bg);
|
lv_obj_t * attr = lv_label_create(bg);
|
||||||
lv_obj_set_style_text_align(attr, LV_TEXT_ALIGN_CENTER, 0);
|
lv_obj_set_style_text_align(attr, LV_TEXT_ALIGN_CENTER, 0);
|
||||||
lv_obj_set_style_text_font(attr, font_small, 0);
|
lv_obj_set_style_text_font(attr, font_small, 0);
|
||||||
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
||||||
lv_label_set_text(attr, "Copyright 2020 LVGL Kft.\nwww.lvgl.io | lvgl@lvgl.io");
|
lv_label_set_text(attr, "Copyright 2020 LVGL Kft.\nwww.lvgl.io | lvgl@lvgl.io");
|
||||||
#else
|
#else
|
||||||
lv_label_set_text(attr, "Copyright 2020 LVGL Kft. | www.lvgl.io | lvgl@lvgl.io");
|
lv_label_set_text(attr, "Copyright 2020 LVGL Kft. | www.lvgl.io | lvgl@lvgl.io");
|
||||||
#endif
|
#endif
|
||||||
lv_obj_align(attr, LV_ALIGN_BOTTOM_MID, 0, -10);
|
lv_obj_align(attr, LV_ALIGN_BOTTOM_MID, 0, -10);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 41:
|
case 41:
|
||||||
lv_scr_load(lv_obj_create(NULL));
|
lv_scr_load(lv_obj_create(NULL));
|
||||||
_lv_demo_music_pause();
|
_lv_demo_music_pause();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
state++;
|
state++;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ lv_obj_t * _lv_demo_music_list_create(lv_obj_t * parent)
|
|||||||
|
|
||||||
lv_style_init(&style_artist);
|
lv_style_init(&style_artist);
|
||||||
lv_style_set_text_font(&style_artist, font_small);
|
lv_style_set_text_font(&style_artist, font_small);
|
||||||
lv_style_set_text_color(&style_artist,lv_color_hex(0xb1b0be));
|
lv_style_set_text_color(&style_artist, lv_color_hex(0xb1b0be));
|
||||||
|
|
||||||
lv_style_init(&style_time);
|
lv_style_init(&style_time);
|
||||||
lv_style_set_text_font(&style_time, font_medium);
|
lv_style_set_text_font(&style_time, font_medium);
|
||||||
|
|||||||
@@ -23,11 +23,11 @@
|
|||||||
#define BAR_COLOR2 lv_color_hex(0x6f8af6)
|
#define BAR_COLOR2 lv_color_hex(0x6f8af6)
|
||||||
#define BAR_COLOR3 lv_color_hex(0xffffff)
|
#define BAR_COLOR3 lv_color_hex(0xffffff)
|
||||||
#if LV_DEMO_MUSIC_LARGE
|
#if LV_DEMO_MUSIC_LARGE
|
||||||
# define BAR_COLOR1_STOP 160
|
#define BAR_COLOR1_STOP 160
|
||||||
# define BAR_COLOR2_STOP 200
|
#define BAR_COLOR2_STOP 200
|
||||||
#else
|
#else
|
||||||
# define BAR_COLOR1_STOP 80
|
#define BAR_COLOR1_STOP 80
|
||||||
# define BAR_COLOR2_STOP 100
|
#define BAR_COLOR2_STOP 100
|
||||||
#endif
|
#endif
|
||||||
#define BAR_COLOR3_STOP (2 * LV_HOR_RES / 3)
|
#define BAR_COLOR3_STOP (2 * LV_HOR_RES / 3)
|
||||||
#define BAR_CNT 20
|
#define BAR_CNT 20
|
||||||
@@ -82,7 +82,7 @@ static uint32_t bar_ofs = 0;
|
|||||||
static uint32_t spectrum_lane_ofs_start = 0;
|
static uint32_t spectrum_lane_ofs_start = 0;
|
||||||
static uint32_t bar_rot = 0;
|
static uint32_t bar_rot = 0;
|
||||||
static uint32_t time_act;
|
static uint32_t time_act;
|
||||||
static lv_timer_t * sec_counter_timer;
|
static lv_timer_t * sec_counter_timer;
|
||||||
static const lv_font_t * font_small;
|
static const lv_font_t * font_small;
|
||||||
static const lv_font_t * font_large;
|
static const lv_font_t * font_large;
|
||||||
static uint32_t track_id;
|
static uint32_t track_id;
|
||||||
@@ -106,16 +106,18 @@ static const uint16_t rnd_array[30] = {994, 285, 553, 11, 792, 707, 966, 641, 85
|
|||||||
* Callback adapter function to convert parameter types to avoid compile-time
|
* Callback adapter function to convert parameter types to avoid compile-time
|
||||||
* warning.
|
* warning.
|
||||||
*/
|
*/
|
||||||
static void _img_set_zoom_anim_cb(void * obj, int32_t zoom) {
|
static void _img_set_zoom_anim_cb(void * obj, int32_t zoom)
|
||||||
lv_img_set_zoom((lv_obj_t*)obj, (uint16_t)zoom);
|
{
|
||||||
|
lv_img_set_zoom((lv_obj_t *)obj, (uint16_t)zoom);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Callback adapter function to convert parameter types to avoid compile-time
|
* Callback adapter function to convert parameter types to avoid compile-time
|
||||||
* warning.
|
* warning.
|
||||||
*/
|
*/
|
||||||
static void _obj_set_x_anim_cb(void * obj, int32_t x) {
|
static void _obj_set_x_anim_cb(void * obj, int32_t x)
|
||||||
lv_obj_set_x((lv_obj_t*)obj, (lv_coord_t)x);
|
{
|
||||||
|
lv_obj_set_x((lv_obj_t *)obj, (lv_coord_t)x);
|
||||||
}
|
}
|
||||||
|
|
||||||
lv_obj_t * _lv_demo_music_main_create(lv_obj_t * parent)
|
lv_obj_t * _lv_demo_music_main_create(lv_obj_t * parent)
|
||||||
@@ -145,16 +147,17 @@ lv_obj_t * _lv_demo_music_main_create(lv_obj_t * parent)
|
|||||||
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
||||||
static const lv_coord_t grid_cols[] = {LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static const lv_coord_t grid_cols[] = {LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_rows[] = {LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
static lv_coord_t grid_rows[] = {LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
||||||
0, /*Spectrum obj, set later*/
|
0, /*Spectrum obj, set later*/
|
||||||
LV_GRID_CONTENT, /*Title box*/
|
LV_GRID_CONTENT, /*Title box*/
|
||||||
LV_GRID_FR(3), /*Spacer*/
|
LV_GRID_FR(3), /*Spacer*/
|
||||||
LV_GRID_CONTENT, /*Icon box*/
|
LV_GRID_CONTENT, /*Icon box*/
|
||||||
LV_GRID_FR(3), /*Spacer*/
|
LV_GRID_FR(3), /*Spacer*/
|
||||||
LV_GRID_CONTENT, /*Control box*/
|
LV_GRID_CONTENT, /*Control box*/
|
||||||
LV_GRID_FR(3), /*Spacer*/
|
LV_GRID_FR(3), /*Spacer*/
|
||||||
LV_GRID_CONTENT, /*Handle box*/
|
LV_GRID_CONTENT, /*Handle box*/
|
||||||
LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
||||||
LV_GRID_TEMPLATE_LAST};
|
LV_GRID_TEMPLATE_LAST
|
||||||
|
};
|
||||||
|
|
||||||
grid_rows[1] = LV_VER_RES;
|
grid_rows[1] = LV_VER_RES;
|
||||||
|
|
||||||
@@ -184,7 +187,8 @@ lv_obj_t * _lv_demo_music_main_create(lv_obj_t * parent)
|
|||||||
LV_GRID_CONTENT, /*Handle box*/
|
LV_GRID_CONTENT, /*Handle box*/
|
||||||
LV_GRID_FR(1), /*Spacer*/
|
LV_GRID_FR(1), /*Spacer*/
|
||||||
LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
||||||
LV_GRID_TEMPLATE_LAST};
|
LV_GRID_TEMPLATE_LAST
|
||||||
|
};
|
||||||
|
|
||||||
lv_obj_set_grid_dsc_array(cont, grid_cols, grid_rows);
|
lv_obj_set_grid_dsc_array(cont, grid_cols, grid_rows);
|
||||||
lv_obj_set_style_grid_row_align(cont, LV_GRID_ALIGN_SPACE_BETWEEN, 0);
|
lv_obj_set_style_grid_row_align(cont, LV_GRID_ALIGN_SPACE_BETWEEN, 0);
|
||||||
@@ -207,7 +211,8 @@ lv_obj_t * _lv_demo_music_main_create(lv_obj_t * parent)
|
|||||||
LV_GRID_CONTENT, /*Handle box*/
|
LV_GRID_CONTENT, /*Handle box*/
|
||||||
LV_GRID_FR(1), /*Spacer*/
|
LV_GRID_FR(1), /*Spacer*/
|
||||||
LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
LV_DEMO_MUSIC_HANDLE_SIZE, /*Spacing*/
|
||||||
LV_GRID_TEMPLATE_LAST};
|
LV_GRID_TEMPLATE_LAST
|
||||||
|
};
|
||||||
|
|
||||||
lv_obj_set_grid_dsc_array(cont, grid_cols, grid_rows);
|
lv_obj_set_grid_dsc_array(cont, grid_cols, grid_rows);
|
||||||
lv_obj_set_style_grid_row_align(cont, LV_GRID_ALIGN_SPACE_BETWEEN, 0);
|
lv_obj_set_style_grid_row_align(cont, LV_GRID_ALIGN_SPACE_BETWEEN, 0);
|
||||||
@@ -292,17 +297,20 @@ void _lv_demo_music_album_next(bool next)
|
|||||||
if(next) {
|
if(next) {
|
||||||
id++;
|
id++;
|
||||||
if(id >= ACTIVE_TRACK_CNT) id = 0;
|
if(id >= ACTIVE_TRACK_CNT) id = 0;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
if(id == 0) {
|
if(id == 0) {
|
||||||
id = ACTIVE_TRACK_CNT - 1;
|
id = ACTIVE_TRACK_CNT - 1;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
id--;
|
id--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(playing) {
|
if(playing) {
|
||||||
_lv_demo_music_play(id);
|
_lv_demo_music_play(id);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
track_load(id);
|
track_load(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -381,21 +389,21 @@ static lv_obj_t * create_cont(lv_obj_t * parent)
|
|||||||
lv_obj_t * placeholder1 = lv_obj_create(main_cont);
|
lv_obj_t * placeholder1 = lv_obj_create(main_cont);
|
||||||
lv_obj_remove_style_all(placeholder1);
|
lv_obj_remove_style_all(placeholder1);
|
||||||
lv_obj_clear_flag(placeholder1, LV_OBJ_FLAG_CLICKABLE);
|
lv_obj_clear_flag(placeholder1, LV_OBJ_FLAG_CLICKABLE);
|
||||||
// lv_obj_set_style_bg_color(placeholder1, lv_color_hex(0xff0000), 0);
|
// lv_obj_set_style_bg_color(placeholder1, lv_color_hex(0xff0000), 0);
|
||||||
// lv_obj_set_style_bg_opa(placeholder1, LV_OPA_50, 0);
|
// lv_obj_set_style_bg_opa(placeholder1, LV_OPA_50, 0);
|
||||||
|
|
||||||
lv_obj_t * placeholder2 = lv_obj_create(main_cont);
|
lv_obj_t * placeholder2 = lv_obj_create(main_cont);
|
||||||
lv_obj_remove_style_all(placeholder2);
|
lv_obj_remove_style_all(placeholder2);
|
||||||
lv_obj_clear_flag(placeholder2, LV_OBJ_FLAG_CLICKABLE);
|
lv_obj_clear_flag(placeholder2, LV_OBJ_FLAG_CLICKABLE);
|
||||||
// lv_obj_set_style_bg_color(placeholder2, lv_color_hex(0x00ff00), 0);
|
// lv_obj_set_style_bg_color(placeholder2, lv_color_hex(0x00ff00), 0);
|
||||||
// lv_obj_set_style_bg_opa(placeholder2, LV_OPA_50, 0);
|
// lv_obj_set_style_bg_opa(placeholder2, LV_OPA_50, 0);
|
||||||
|
|
||||||
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
#if LV_DEMO_MUSIC_SQUARE || LV_DEMO_MUSIC_ROUND
|
||||||
lv_obj_t * placeholder3 = lv_obj_create(main_cont);
|
lv_obj_t * placeholder3 = lv_obj_create(main_cont);
|
||||||
lv_obj_remove_style_all(placeholder3);
|
lv_obj_remove_style_all(placeholder3);
|
||||||
lv_obj_clear_flag(placeholder3, LV_OBJ_FLAG_CLICKABLE);
|
lv_obj_clear_flag(placeholder3, LV_OBJ_FLAG_CLICKABLE);
|
||||||
// lv_obj_set_style_bg_color(placeholder3, lv_color_hex(0x0000ff), 0);
|
// lv_obj_set_style_bg_color(placeholder3, lv_color_hex(0x0000ff), 0);
|
||||||
// lv_obj_set_style_bg_opa(placeholder3, LV_OPA_20, 0);
|
// lv_obj_set_style_bg_opa(placeholder3, LV_OPA_20, 0);
|
||||||
|
|
||||||
lv_obj_set_size(placeholder1, lv_pct(100), LV_VER_RES);
|
lv_obj_set_size(placeholder1, lv_pct(100), LV_VER_RES);
|
||||||
lv_obj_set_y(placeholder1, 0);
|
lv_obj_set_y(placeholder1, 0);
|
||||||
@@ -423,13 +431,13 @@ static void create_wave_images(lv_obj_t * parent)
|
|||||||
LV_IMG_DECLARE(img_lv_demo_music_wave_top);
|
LV_IMG_DECLARE(img_lv_demo_music_wave_top);
|
||||||
LV_IMG_DECLARE(img_lv_demo_music_wave_bottom);
|
LV_IMG_DECLARE(img_lv_demo_music_wave_bottom);
|
||||||
lv_obj_t * wave_top = lv_img_create(parent);
|
lv_obj_t * wave_top = lv_img_create(parent);
|
||||||
lv_img_set_src(wave_top,&img_lv_demo_music_wave_top);
|
lv_img_set_src(wave_top, &img_lv_demo_music_wave_top);
|
||||||
lv_obj_set_width(wave_top, LV_HOR_RES);
|
lv_obj_set_width(wave_top, LV_HOR_RES);
|
||||||
lv_obj_align(wave_top, LV_ALIGN_TOP_MID, 0, 0);
|
lv_obj_align(wave_top, LV_ALIGN_TOP_MID, 0, 0);
|
||||||
lv_obj_add_flag(wave_top, LV_OBJ_FLAG_IGNORE_LAYOUT);
|
lv_obj_add_flag(wave_top, LV_OBJ_FLAG_IGNORE_LAYOUT);
|
||||||
|
|
||||||
lv_obj_t * wave_bottom = lv_img_create(parent);
|
lv_obj_t * wave_bottom = lv_img_create(parent);
|
||||||
lv_img_set_src(wave_bottom,&img_lv_demo_music_wave_bottom);
|
lv_img_set_src(wave_bottom, &img_lv_demo_music_wave_bottom);
|
||||||
lv_obj_set_width(wave_bottom, LV_HOR_RES);
|
lv_obj_set_width(wave_bottom, LV_HOR_RES);
|
||||||
lv_obj_align(wave_bottom, LV_ALIGN_BOTTOM_MID, 0, 0);
|
lv_obj_align(wave_bottom, LV_ALIGN_BOTTOM_MID, 0, 0);
|
||||||
lv_obj_add_flag(wave_bottom, LV_OBJ_FLAG_IGNORE_LAYOUT);
|
lv_obj_add_flag(wave_bottom, LV_OBJ_FLAG_IGNORE_LAYOUT);
|
||||||
@@ -538,7 +546,7 @@ static lv_obj_t * create_ctrl_box(lv_obj_t * parent)
|
|||||||
#else
|
#else
|
||||||
lv_obj_set_style_pad_bottom(cont, 8, 0);
|
lv_obj_set_style_pad_bottom(cont, 8, 0);
|
||||||
#endif
|
#endif
|
||||||
static const lv_coord_t grid_col[] = {LV_GRID_FR(2), LV_GRID_FR(3),LV_GRID_FR(5), LV_GRID_FR(5), LV_GRID_FR(5), LV_GRID_FR(3), LV_GRID_FR(2), LV_GRID_TEMPLATE_LAST};
|
static const lv_coord_t grid_col[] = {LV_GRID_FR(2), LV_GRID_FR(3), LV_GRID_FR(5), LV_GRID_FR(5), LV_GRID_FR(5), LV_GRID_FR(3), LV_GRID_FR(2), LV_GRID_TEMPLATE_LAST};
|
||||||
static const lv_coord_t grid_row[] = {LV_GRID_CONTENT, LV_GRID_CONTENT, LV_GRID_TEMPLATE_LAST};
|
static const lv_coord_t grid_row[] = {LV_GRID_CONTENT, LV_GRID_CONTENT, LV_GRID_TEMPLATE_LAST};
|
||||||
lv_obj_set_grid_dsc_array(cont, grid_col, grid_row);
|
lv_obj_set_grid_dsc_array(cont, grid_col, grid_row);
|
||||||
|
|
||||||
@@ -669,13 +677,15 @@ static void track_load(uint32_t id)
|
|||||||
#if LV_DEMO_MUSIC_LANDSCAPE
|
#if LV_DEMO_MUSIC_LANDSCAPE
|
||||||
if(next) {
|
if(next) {
|
||||||
lv_anim_set_values(&a, 0, - LV_HOR_RES / 7);
|
lv_anim_set_values(&a, 0, - LV_HOR_RES / 7);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_anim_set_values(&a, 0, LV_HOR_RES / 7);
|
lv_anim_set_values(&a, 0, LV_HOR_RES / 7);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if(next) {
|
if(next) {
|
||||||
lv_anim_set_values(&a, 0, - LV_HOR_RES / 2);
|
lv_anim_set_values(&a, 0, - LV_HOR_RES / 2);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_anim_set_values(&a, 0, LV_HOR_RES / 2);
|
lv_anim_set_values(&a, 0, LV_HOR_RES / 2);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -768,18 +778,18 @@ static void spectrum_draw_event_cb(lv_event_t * e)
|
|||||||
uint32_t f;
|
uint32_t f;
|
||||||
uint32_t band_w = 0; /*Real number of bars in this band.*/
|
uint32_t band_w = 0; /*Real number of bars in this band.*/
|
||||||
switch(s) {
|
switch(s) {
|
||||||
case 0:
|
case 0:
|
||||||
band_w = 20;
|
band_w = 20;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
band_w = 8;
|
band_w = 8;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
band_w = 4;
|
band_w = 4;
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
band_w = 2;
|
band_w = 2;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add "side bars" with cosine characteristic.*/
|
/* Add "side bars" with cosine characteristic.*/
|
||||||
@@ -799,7 +809,7 @@ static void spectrum_draw_event_cb(lv_event_t * e)
|
|||||||
for(i = 0; i < BAR_CNT; i++) {
|
for(i = 0; i < BAR_CNT; i++) {
|
||||||
uint32_t deg_space = 1;
|
uint32_t deg_space = 1;
|
||||||
uint32_t deg = i * DEG_STEP + 90;
|
uint32_t deg = i * DEG_STEP + 90;
|
||||||
uint32_t j = (i + bar_rot + rnd_array[bar_ofs %10]) % BAR_CNT;
|
uint32_t j = (i + bar_rot + rnd_array[bar_ofs % 10]) % BAR_CNT;
|
||||||
uint32_t k = (i + bar_rot + rnd_array[(bar_ofs + 1) % 10]) % BAR_CNT;
|
uint32_t k = (i + bar_rot + rnd_array[(bar_ofs + 1) % 10]) % BAR_CNT;
|
||||||
|
|
||||||
uint32_t v = (r[k] * animv + r[j] * (amax - animv)) / amax;
|
uint32_t v = (r[k] * animv + r[j] * (amax - animv)) / amax;
|
||||||
@@ -811,8 +821,10 @@ static void spectrum_draw_event_cb(lv_event_t * e)
|
|||||||
|
|
||||||
if(v < BAR_COLOR1_STOP) draw_dsc.bg_color = BAR_COLOR1;
|
if(v < BAR_COLOR1_STOP) draw_dsc.bg_color = BAR_COLOR1;
|
||||||
else if(v > BAR_COLOR3_STOP) draw_dsc.bg_color = BAR_COLOR3;
|
else if(v > BAR_COLOR3_STOP) draw_dsc.bg_color = BAR_COLOR3;
|
||||||
else if(v > BAR_COLOR2_STOP) draw_dsc.bg_color = lv_color_mix(BAR_COLOR3, BAR_COLOR2, ((v - BAR_COLOR2_STOP) * 255) / (BAR_COLOR3_STOP-BAR_COLOR2_STOP));
|
else if(v > BAR_COLOR2_STOP) draw_dsc.bg_color = lv_color_mix(BAR_COLOR3, BAR_COLOR2,
|
||||||
else draw_dsc.bg_color = lv_color_mix(BAR_COLOR2, BAR_COLOR1, ((v - BAR_COLOR1_STOP) * 255) / (BAR_COLOR2_STOP - BAR_COLOR1_STOP));
|
((v - BAR_COLOR2_STOP) * 255) / (BAR_COLOR3_STOP - BAR_COLOR2_STOP));
|
||||||
|
else draw_dsc.bg_color = lv_color_mix(BAR_COLOR2, BAR_COLOR1,
|
||||||
|
((v - BAR_COLOR1_STOP) * 255) / (BAR_COLOR2_STOP - BAR_COLOR1_STOP));
|
||||||
|
|
||||||
uint32_t di = deg + deg_space;
|
uint32_t di = deg + deg_space;
|
||||||
|
|
||||||
@@ -859,7 +871,7 @@ static void spectrum_anim_cb(void * a, int32_t v)
|
|||||||
static int32_t last_bass = -1000;
|
static int32_t last_bass = -1000;
|
||||||
static int32_t dir = 1;
|
static int32_t dir = 1;
|
||||||
if(spectrum[spectrum_i][0] > 12) {
|
if(spectrum[spectrum_i][0] > 12) {
|
||||||
if(spectrum_i-last_bass > 5) {
|
if(spectrum_i - last_bass > 5) {
|
||||||
bass_cnt++;
|
bass_cnt++;
|
||||||
last_bass = spectrum_i;
|
last_bass = spectrum_i;
|
||||||
if(bass_cnt >= 2) {
|
if(bass_cnt >= 2) {
|
||||||
@@ -869,7 +881,7 @@ static void spectrum_anim_cb(void * a, int32_t v)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(spectrum[spectrum_i][0] < 4) bar_rot+= dir;
|
if(spectrum[spectrum_i][0] < 4) bar_rot += dir;
|
||||||
|
|
||||||
lv_img_set_zoom(album_img_obj, LV_IMG_ZOOM_NONE + spectrum[spectrum_i][0]);
|
lv_img_set_zoom(album_img_obj, LV_IMG_ZOOM_NONE + spectrum[spectrum_i][0]);
|
||||||
}
|
}
|
||||||
@@ -891,21 +903,21 @@ static lv_obj_t * album_img_create(lv_obj_t * parent)
|
|||||||
img = lv_img_create(parent);
|
img = lv_img_create(parent);
|
||||||
|
|
||||||
switch(track_id) {
|
switch(track_id) {
|
||||||
case 2:
|
case 2:
|
||||||
lv_img_set_src(img, &img_lv_demo_music_cover_3);
|
lv_img_set_src(img, &img_lv_demo_music_cover_3);
|
||||||
spectrum = spectrum_3;
|
spectrum = spectrum_3;
|
||||||
spectrum_len = sizeof(spectrum_3) / sizeof(spectrum_3[0]);
|
spectrum_len = sizeof(spectrum_3) / sizeof(spectrum_3[0]);
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
lv_img_set_src(img, &img_lv_demo_music_cover_2);
|
lv_img_set_src(img, &img_lv_demo_music_cover_2);
|
||||||
spectrum = spectrum_2;
|
spectrum = spectrum_2;
|
||||||
spectrum_len = sizeof(spectrum_2) / sizeof(spectrum_2[0]);
|
spectrum_len = sizeof(spectrum_2) / sizeof(spectrum_2[0]);
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
lv_img_set_src(img, &img_lv_demo_music_cover_1);
|
lv_img_set_src(img, &img_lv_demo_music_cover_1);
|
||||||
spectrum = spectrum_1;
|
spectrum = spectrum_1;
|
||||||
spectrum_len = sizeof(spectrum_1) / sizeof(spectrum_1[0]);
|
spectrum_len = sizeof(spectrum_1) / sizeof(spectrum_1[0]);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
lv_img_set_antialias(img, false);
|
lv_img_set_antialias(img, false);
|
||||||
lv_obj_align(img, LV_ALIGN_CENTER, 0, 0);
|
lv_obj_align(img, LV_ALIGN_CENTER, 0, 0);
|
||||||
@@ -929,7 +941,8 @@ static void play_event_click_cb(lv_event_t * e)
|
|||||||
lv_obj_t * obj = lv_event_get_target(e);
|
lv_obj_t * obj = lv_event_get_target(e);
|
||||||
if(lv_obj_has_state(obj, LV_STATE_CHECKED)) {
|
if(lv_obj_has_state(obj, LV_STATE_CHECKED)) {
|
||||||
_lv_demo_music_resume();
|
_lv_demo_music_resume();
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
_lv_demo_music_pause();
|
_lv_demo_music_pause();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,28 +60,27 @@ static void obj_test_task_cb(lv_timer_t * tmr)
|
|||||||
lv_anim_t a;
|
lv_anim_t a;
|
||||||
lv_obj_t * obj;
|
lv_obj_t * obj;
|
||||||
|
|
||||||
// printf("step start: %d\n", state);
|
// printf("step start: %d\n", state);
|
||||||
|
|
||||||
switch(state) {
|
switch(state) {
|
||||||
case -1:
|
case -1: {
|
||||||
{
|
lv_res_t res = lv_mem_test();
|
||||||
lv_res_t res = lv_mem_test();
|
if(res != LV_RES_OK) {
|
||||||
if(res != LV_RES_OK) {
|
LV_LOG_ERROR("Memory integrity error");
|
||||||
LV_LOG_ERROR("Memory integrity error");
|
}
|
||||||
|
|
||||||
|
lv_mem_monitor_t mon;
|
||||||
|
lv_mem_monitor(&mon);
|
||||||
|
|
||||||
|
if(mem_free_start == 0) mem_free_start = mon.free_size;
|
||||||
|
|
||||||
|
LV_LOG_USER("mem leak since start: %d, frag: %3d %%", mem_free_start - mon.free_size, mon.frag_pct);
|
||||||
}
|
}
|
||||||
|
|
||||||
lv_mem_monitor_t mon;
|
|
||||||
lv_mem_monitor(&mon);
|
|
||||||
|
|
||||||
if(mem_free_start == 0) mem_free_start = mon.free_size;
|
|
||||||
|
|
||||||
LV_LOG_USER("mem leak since start: %d, frag: %3d %%", mem_free_start - mon.free_size, mon.frag_pct);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 0:
|
case 0:
|
||||||
/* Holder for all object types */
|
/* Holder for all object types */
|
||||||
main_page = lv_obj_create(lv_scr_act());
|
main_page = lv_obj_create(lv_scr_act());
|
||||||
lv_obj_set_size(main_page, LV_HOR_RES / 2 , LV_VER_RES);
|
lv_obj_set_size(main_page, LV_HOR_RES / 2, LV_VER_RES);
|
||||||
lv_obj_set_flex_flow(main_page, LV_FLEX_FLOW_COLUMN);
|
lv_obj_set_flex_flow(main_page, LV_FLEX_FLOW_COLUMN);
|
||||||
|
|
||||||
|
|
||||||
@@ -91,25 +90,24 @@ static void obj_test_task_cb(lv_timer_t * tmr)
|
|||||||
lv_label_set_text(obj, "Multi line\n"LV_SYMBOL_OK LV_SYMBOL_CLOSE LV_SYMBOL_WIFI);
|
lv_label_set_text(obj, "Multi line\n"LV_SYMBOL_OK LV_SYMBOL_CLOSE LV_SYMBOL_WIFI);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1: {
|
||||||
{
|
obj = lv_tabview_create(lv_scr_act(), LV_DIR_TOP, 50);
|
||||||
obj = lv_tabview_create(lv_scr_act(), LV_DIR_TOP, 50);
|
lv_obj_set_size(obj, LV_HOR_RES / 2, LV_VER_RES / 2);
|
||||||
lv_obj_set_size(obj, LV_HOR_RES / 2, LV_VER_RES / 2);
|
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, 0, 0);
|
||||||
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, 0, 0);
|
lv_obj_t * t = lv_tabview_add_tab(obj, "First");
|
||||||
lv_obj_t * t = lv_tabview_add_tab(obj, "First");
|
|
||||||
|
|
||||||
t = lv_tabview_add_tab(obj, "Second");
|
t = lv_tabview_add_tab(obj, "Second");
|
||||||
lv_obj_t * c = lv_colorwheel_create(t, true);
|
lv_obj_t * c = lv_colorwheel_create(t, true);
|
||||||
lv_obj_set_size(c, 150, 150);
|
lv_obj_set_size(c, 150, 150);
|
||||||
// c = lv_led_create(t, NULL);
|
// c = lv_led_create(t, NULL);
|
||||||
// lv_obj_set_pos(c, 160, 20);
|
// lv_obj_set_pos(c, 160, 20);
|
||||||
t = lv_tabview_add_tab(obj, LV_SYMBOL_EDIT " Edit");
|
t = lv_tabview_add_tab(obj, LV_SYMBOL_EDIT " Edit");
|
||||||
t = lv_tabview_add_tab(obj, LV_SYMBOL_CLOSE);
|
t = lv_tabview_add_tab(obj, LV_SYMBOL_CLOSE);
|
||||||
|
|
||||||
lv_tabview_set_act(obj, 1, LV_ANIM_ON);
|
lv_tabview_set_act(obj, 1, LV_ANIM_ON);
|
||||||
auto_del(obj, LV_DEMO_STRESS_TIME_STEP * 5 + 30);
|
auto_del(obj, LV_DEMO_STRESS_TIME_STEP * 5 + 30);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
obj = lv_btn_create(main_page);
|
obj = lv_btn_create(main_page);
|
||||||
@@ -148,12 +146,12 @@ static void obj_test_task_cb(lv_timer_t * tmr)
|
|||||||
lv_obj_set_style_bg_img_src(obj, LV_SYMBOL_DUMMY"Text from\nstyle", 0);
|
lv_obj_set_style_bg_img_src(obj, LV_SYMBOL_DUMMY"Text from\nstyle", 0);
|
||||||
lv_obj_del_async(obj); /*Delete on next call of `lv_task_handler` (so not now)*/
|
lv_obj_del_async(obj); /*Delete on next call of `lv_task_handler` (so not now)*/
|
||||||
|
|
||||||
// obj = lv_btn_create(main_page);
|
// obj = lv_btn_create(main_page);
|
||||||
// lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
// lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
||||||
// lv_obj_set_style_bg_img_src(obj, LV_SYMBOL_LEFT);
|
// lv_obj_set_style_bg_img_src(obj, LV_SYMBOL_LEFT);
|
||||||
// lv_obj_set_style_bg_img_opa(obj, LV_OPA_50);
|
// lv_obj_set_style_bg_img_opa(obj, LV_OPA_50);
|
||||||
// lv_obj_set_style_bg_img_tiled(obj, true);
|
// lv_obj_set_style_bg_img_tiled(obj, true);
|
||||||
// lv_obj_scroll_to_view(obj, LV_ANIM_ON);
|
// lv_obj_scroll_to_view(obj, LV_ANIM_ON);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 5:
|
case 5:
|
||||||
@@ -184,19 +182,19 @@ static void obj_test_task_cb(lv_timer_t * tmr)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 8:
|
case 8:
|
||||||
obj = lv_win_create(lv_scr_act(), 50);
|
obj = lv_win_create(lv_scr_act(), 50);
|
||||||
lv_obj_set_size(obj, LV_HOR_RES / 2, LV_VER_RES / 2);
|
lv_obj_set_size(obj, LV_HOR_RES / 2, LV_VER_RES / 2);
|
||||||
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, 0, 0);
|
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, 0, 0);
|
||||||
lv_win_add_title(obj, "Window title");
|
lv_win_add_title(obj, "Window title");
|
||||||
lv_win_add_btn(obj, LV_SYMBOL_CLOSE, 40);
|
lv_win_add_btn(obj, LV_SYMBOL_CLOSE, 40);
|
||||||
lv_win_add_btn(obj, LV_SYMBOL_DOWN, 40);
|
lv_win_add_btn(obj, LV_SYMBOL_DOWN, 40);
|
||||||
auto_del(obj, LV_DEMO_STRESS_TIME_STEP * 3 + 5);
|
auto_del(obj, LV_DEMO_STRESS_TIME_STEP * 3 + 5);
|
||||||
|
|
||||||
obj = lv_calendar_create(lv_win_get_content(obj));
|
obj = lv_calendar_create(lv_win_get_content(obj));
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
lv_textarea_set_text(ta, "A very very long text which will should make the text area scrollable"
|
lv_textarea_set_text(ta, "A very very long text which will should make the text area scrollable"
|
||||||
"Here area some dummy sentences to be sure the text area will be really scrollable.");
|
"Here area some dummy sentences to be sure the text area will be really scrollable.");
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
obj = lv_keyboard_create(lv_scr_act());
|
obj = lv_keyboard_create(lv_scr_act());
|
||||||
@@ -258,27 +256,26 @@ static void obj_test_task_cb(lv_timer_t * tmr)
|
|||||||
lv_textarea_set_one_line(ta, false);
|
lv_textarea_set_one_line(ta, false);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 16:
|
case 16: {
|
||||||
{
|
lv_obj_t * tv = lv_tileview_create(lv_scr_act());
|
||||||
lv_obj_t * tv = lv_tileview_create(lv_scr_act());
|
lv_obj_set_size(tv, 200, 200);
|
||||||
lv_obj_set_size(tv, 200, 200);
|
auto_del(tv, LV_DEMO_STRESS_TIME_STEP * 4 + 5);
|
||||||
auto_del(tv, LV_DEMO_STRESS_TIME_STEP * 4 + 5);
|
|
||||||
|
|
||||||
obj = lv_tileview_add_tile(tv, 0, 0, LV_DIR_ALL);
|
obj = lv_tileview_add_tile(tv, 0, 0, LV_DIR_ALL);
|
||||||
obj = lv_label_create(obj);
|
obj = lv_label_create(obj);
|
||||||
lv_label_set_text(obj, "Tile: 0;0");
|
lv_label_set_text(obj, "Tile: 0;0");
|
||||||
|
|
||||||
obj = lv_tileview_add_tile(tv, 0, 1, LV_DIR_ALL);
|
obj = lv_tileview_add_tile(tv, 0, 1, LV_DIR_ALL);
|
||||||
obj = lv_label_create(obj);
|
obj = lv_label_create(obj);
|
||||||
lv_label_set_text(obj, "Tile: 0;1");
|
lv_label_set_text(obj, "Tile: 0;1");
|
||||||
|
|
||||||
obj = lv_tileview_add_tile(tv, 1, 1, LV_DIR_ALL);
|
obj = lv_tileview_add_tile(tv, 1, 1, LV_DIR_ALL);
|
||||||
obj = lv_label_create(obj);
|
obj = lv_label_create(obj);
|
||||||
lv_label_set_text(obj, "Tile: 1;1");
|
lv_label_set_text(obj, "Tile: 1;1");
|
||||||
|
|
||||||
lv_obj_set_tile_id(tv, 1, 1, LV_ANIM_ON);
|
lv_obj_set_tile_id(tv, 1, 1, LV_ANIM_ON);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 18:
|
case 18:
|
||||||
obj = lv_list_create(main_page);
|
obj = lv_list_create(main_page);
|
||||||
@@ -424,7 +421,7 @@ static void obj_test_task_cb(lv_timer_t * tmr)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// printf("step end: %d\n", state);
|
// printf("step end: %d\n", state);
|
||||||
state ++;
|
state ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#if LV_USE_DEMO_WIDGETS
|
#if LV_USE_DEMO_WIDGETS
|
||||||
|
|
||||||
#if LV_MEM_CUSTOM == 0 && LV_MEM_SIZE < (38ul * 1024ul)
|
#if LV_MEM_CUSTOM == 0 && LV_MEM_SIZE < (38ul * 1024ul)
|
||||||
#error Insufficient memory for lv_demo_widgets. Please set LV_MEM_SIZE to at least 38KB (38ul * 1024ul). 48KB is recommended.
|
#error Insufficient memory for lv_demo_widgets. Please set LV_MEM_SIZE to at least 38KB (38ul * 1024ul). 48KB is recommended.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
@@ -25,7 +25,7 @@ typedef enum {
|
|||||||
DISP_SMALL,
|
DISP_SMALL,
|
||||||
DISP_MEDIUM,
|
DISP_MEDIUM,
|
||||||
DISP_LARGE,
|
DISP_LARGE,
|
||||||
}disp_size_t;
|
} disp_size_t;
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
* STATIC PROTOTYPES
|
* STATIC PROTOTYPES
|
||||||
@@ -35,8 +35,10 @@ static void analytics_create(lv_obj_t * parent);
|
|||||||
static void shop_create(lv_obj_t * parent);
|
static void shop_create(lv_obj_t * parent);
|
||||||
static void color_changer_create(lv_obj_t * parent);
|
static void color_changer_create(lv_obj_t * parent);
|
||||||
|
|
||||||
static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const char * text2, const char * text3);
|
static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const char * text2,
|
||||||
static lv_obj_t * create_shop_item(lv_obj_t * parent, const void * img_src, const char * name, const char * category, const char * price);
|
const char * text3);
|
||||||
|
static lv_obj_t * create_shop_item(lv_obj_t * parent, const void * img_src, const char * name, const char * category,
|
||||||
|
const char * price);
|
||||||
|
|
||||||
static void color_changer_event_cb(lv_event_t * e);
|
static void color_changer_event_cb(lv_event_t * e);
|
||||||
static void color_event_cb(lv_event_t * e);
|
static void color_event_cb(lv_event_t * e);
|
||||||
@@ -114,7 +116,8 @@ void lv_demo_widgets(void)
|
|||||||
#else
|
#else
|
||||||
LV_LOG_WARN("LV_FONT_MONTSERRAT_16 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
LV_LOG_WARN("LV_FONT_MONTSERRAT_16 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
||||||
#endif
|
#endif
|
||||||
} else if(disp_size == DISP_MEDIUM) {
|
}
|
||||||
|
else if(disp_size == DISP_MEDIUM) {
|
||||||
tab_h = 45;
|
tab_h = 45;
|
||||||
#if LV_FONT_MONTSERRAT_20
|
#if LV_FONT_MONTSERRAT_20
|
||||||
font_large = &lv_font_montserrat_20;
|
font_large = &lv_font_montserrat_20;
|
||||||
@@ -126,22 +129,24 @@ void lv_demo_widgets(void)
|
|||||||
#else
|
#else
|
||||||
LV_LOG_WARN("LV_FONT_MONTSERRAT_14 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
LV_LOG_WARN("LV_FONT_MONTSERRAT_14 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
||||||
#endif
|
#endif
|
||||||
} else { /* disp_size == DISP_SMALL */
|
}
|
||||||
|
else { /* disp_size == DISP_SMALL */
|
||||||
tab_h = 45;
|
tab_h = 45;
|
||||||
#if LV_FONT_MONTSERRAT_18
|
#if LV_FONT_MONTSERRAT_18
|
||||||
font_large = &lv_font_montserrat_18;
|
font_large = &lv_font_montserrat_18;
|
||||||
#else
|
#else
|
||||||
LV_LOG_WARN("LV_FONT_MONTSERRAT_18 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
LV_LOG_WARN("LV_FONT_MONTSERRAT_18 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
||||||
#endif
|
#endif
|
||||||
#if LV_FONT_MONTSERRAT_12
|
#if LV_FONT_MONTSERRAT_12
|
||||||
font_normal = &lv_font_montserrat_12;
|
font_normal = &lv_font_montserrat_12;
|
||||||
#else
|
#else
|
||||||
LV_LOG_WARN("LV_FONT_MONTSERRAT_12 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
LV_LOG_WARN("LV_FONT_MONTSERRAT_12 is not enabled for the widgets demo. Using LV_FONT_DEFAULT instead.");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if LV_USE_THEME_DEFAULT
|
#if LV_USE_THEME_DEFAULT
|
||||||
lv_theme_default_init(NULL, lv_palette_main(LV_PALETTE_BLUE), lv_palette_main(LV_PALETTE_RED), LV_THEME_DEFAULT_DARK, font_normal);
|
lv_theme_default_init(NULL, lv_palette_main(LV_PALETTE_BLUE), lv_palette_main(LV_PALETTE_RED), LV_THEME_DEFAULT_DARK,
|
||||||
|
font_normal);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
lv_style_init(&style_text_muted);
|
lv_style_init(&style_text_muted);
|
||||||
@@ -210,7 +215,7 @@ static void profile_create(lv_obj_t * parent)
|
|||||||
|
|
||||||
lv_obj_t * dsc = lv_label_create(panel1);
|
lv_obj_t * dsc = lv_label_create(panel1);
|
||||||
lv_obj_add_style(dsc, &style_text_muted, 0);
|
lv_obj_add_style(dsc, &style_text_muted, 0);
|
||||||
lv_label_set_text(dsc, "This is a short description of me. Take a look at my profile!" );
|
lv_label_set_text(dsc, "This is a short description of me. Take a look at my profile!");
|
||||||
lv_label_set_long_mode(dsc, LV_LABEL_LONG_WRAP);
|
lv_label_set_long_mode(dsc, LV_LABEL_LONG_WRAP);
|
||||||
|
|
||||||
lv_obj_t * email_icn = lv_label_create(panel1);
|
lv_obj_t * email_icn = lv_label_create(panel1);
|
||||||
@@ -325,14 +330,14 @@ static void profile_create(lv_obj_t * parent)
|
|||||||
|
|
||||||
static lv_coord_t grid_2_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_2_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_2_row_dsc[] = {
|
static lv_coord_t grid_2_row_dsc[] = {
|
||||||
LV_GRID_CONTENT, /*Title*/
|
LV_GRID_CONTENT, /*Title*/
|
||||||
5, /*Separator*/
|
5, /*Separator*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
30, /*Boxes*/
|
30, /*Boxes*/
|
||||||
5, /*Separator*/
|
5, /*Separator*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
30, /*Boxes*/
|
30, /*Boxes*/
|
||||||
LV_GRID_TEMPLATE_LAST
|
LV_GRID_TEMPLATE_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -382,27 +387,28 @@ static void profile_create(lv_obj_t * parent)
|
|||||||
/*Create the top panel*/
|
/*Create the top panel*/
|
||||||
static lv_coord_t grid_1_col_dsc[] = {LV_GRID_CONTENT, 1, LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_1_col_dsc[] = {LV_GRID_CONTENT, 1, LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_1_row_dsc[] = {
|
static lv_coord_t grid_1_row_dsc[] = {
|
||||||
LV_GRID_CONTENT, /*Name*/
|
LV_GRID_CONTENT, /*Name*/
|
||||||
LV_GRID_CONTENT, /*Description*/
|
LV_GRID_CONTENT, /*Description*/
|
||||||
LV_GRID_CONTENT, /*Email*/
|
LV_GRID_CONTENT, /*Email*/
|
||||||
-20,
|
-20,
|
||||||
LV_GRID_CONTENT, /*Phone*/
|
LV_GRID_CONTENT, /*Phone*/
|
||||||
LV_GRID_CONTENT, /*Buttons*/
|
LV_GRID_CONTENT, /*Buttons*/
|
||||||
LV_GRID_TEMPLATE_LAST};
|
LV_GRID_TEMPLATE_LAST
|
||||||
|
};
|
||||||
|
|
||||||
static lv_coord_t grid_2_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_2_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_2_row_dsc[] = {
|
static lv_coord_t grid_2_row_dsc[] = {
|
||||||
LV_GRID_CONTENT, /*Title*/
|
LV_GRID_CONTENT, /*Title*/
|
||||||
5, /*Separator*/
|
5, /*Separator*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_TEMPLATE_LAST
|
LV_GRID_TEMPLATE_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -454,29 +460,30 @@ static void profile_create(lv_obj_t * parent)
|
|||||||
/*Create the top panel*/
|
/*Create the top panel*/
|
||||||
static lv_coord_t grid_1_col_dsc[] = {LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_1_col_dsc[] = {LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_1_row_dsc[] = {LV_GRID_CONTENT, /*Avatar*/
|
static lv_coord_t grid_1_row_dsc[] = {LV_GRID_CONTENT, /*Avatar*/
|
||||||
LV_GRID_CONTENT, /*Name*/
|
LV_GRID_CONTENT, /*Name*/
|
||||||
LV_GRID_CONTENT, /*Description*/
|
LV_GRID_CONTENT, /*Description*/
|
||||||
LV_GRID_CONTENT, /*Email*/
|
LV_GRID_CONTENT, /*Email*/
|
||||||
LV_GRID_CONTENT, /*Phone number*/
|
LV_GRID_CONTENT, /*Phone number*/
|
||||||
LV_GRID_CONTENT, /*Button1*/
|
LV_GRID_CONTENT, /*Button1*/
|
||||||
LV_GRID_CONTENT, /*Button2*/
|
LV_GRID_CONTENT, /*Button2*/
|
||||||
LV_GRID_TEMPLATE_LAST};
|
LV_GRID_TEMPLATE_LAST
|
||||||
|
};
|
||||||
|
|
||||||
lv_obj_set_grid_dsc_array(panel1, grid_1_col_dsc, grid_1_row_dsc);
|
lv_obj_set_grid_dsc_array(panel1, grid_1_col_dsc, grid_1_row_dsc);
|
||||||
|
|
||||||
|
|
||||||
static lv_coord_t grid_2_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_2_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_2_row_dsc[] = {
|
static lv_coord_t grid_2_row_dsc[] = {
|
||||||
LV_GRID_CONTENT, /*Title*/
|
LV_GRID_CONTENT, /*Title*/
|
||||||
5, /*Separator*/
|
5, /*Separator*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, /*Box*/
|
40, /*Box*/
|
||||||
LV_GRID_CONTENT, /*Box title*/
|
LV_GRID_CONTENT, /*Box title*/
|
||||||
40, LV_GRID_TEMPLATE_LAST /*Box*/
|
40, LV_GRID_TEMPLATE_LAST /*Box*/
|
||||||
};
|
};
|
||||||
|
|
||||||
lv_obj_set_grid_dsc_array(panel2, grid_2_col_dsc, grid_2_row_dsc);
|
lv_obj_set_grid_dsc_array(panel2, grid_2_col_dsc, grid_2_row_dsc);
|
||||||
@@ -638,7 +645,7 @@ static void analytics_create(lv_obj_t * parent)
|
|||||||
lv_chart_set_next_value(chart2, ser3, lv_rand(10, 80));
|
lv_chart_set_next_value(chart2, ser3, lv_rand(10, 80));
|
||||||
|
|
||||||
lv_meter_scale_t * scale;
|
lv_meter_scale_t * scale;
|
||||||
lv_meter_indicator_t *indic;
|
lv_meter_indicator_t * indic;
|
||||||
meter1 = create_meter_box(parent, "Monthly Target", "Revenue: 63%", "Sales: 44%", "Costs: 58%");
|
meter1 = create_meter_box(parent, "Monthly Target", "Revenue: 63%", "Sales: 44%", "Costs: 58%");
|
||||||
lv_obj_add_flag(lv_obj_get_parent(meter1), LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
lv_obj_add_flag(lv_obj_get_parent(meter1), LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||||
scale = lv_meter_add_scale(meter1);
|
scale = lv_meter_add_scale(meter1);
|
||||||
@@ -715,7 +722,8 @@ static void analytics_create(lv_obj_t * parent)
|
|||||||
lv_meter_set_indicator_start_value(meter3, indic, 0);
|
lv_meter_set_indicator_start_value(meter3, indic, 0);
|
||||||
lv_meter_set_indicator_end_value(meter3, indic, 20);
|
lv_meter_set_indicator_end_value(meter3, indic, 20);
|
||||||
|
|
||||||
indic = lv_meter_add_scale_lines(meter3, scale, lv_palette_darken(LV_PALETTE_RED, 3), lv_palette_darken(LV_PALETTE_RED, 3), true, 0);
|
indic = lv_meter_add_scale_lines(meter3, scale, lv_palette_darken(LV_PALETTE_RED, 3), lv_palette_darken(LV_PALETTE_RED,
|
||||||
|
3), true, 0);
|
||||||
lv_meter_set_indicator_start_value(meter3, indic, 0);
|
lv_meter_set_indicator_start_value(meter3, indic, 0);
|
||||||
lv_meter_set_indicator_end_value(meter3, indic, 20);
|
lv_meter_set_indicator_end_value(meter3, indic, 20);
|
||||||
|
|
||||||
@@ -723,7 +731,8 @@ static void analytics_create(lv_obj_t * parent)
|
|||||||
lv_meter_set_indicator_start_value(meter3, indic, 20);
|
lv_meter_set_indicator_start_value(meter3, indic, 20);
|
||||||
lv_meter_set_indicator_end_value(meter3, indic, 40);
|
lv_meter_set_indicator_end_value(meter3, indic, 40);
|
||||||
|
|
||||||
indic = lv_meter_add_scale_lines(meter3, scale, lv_palette_darken(LV_PALETTE_BLUE, 3), lv_palette_darken(LV_PALETTE_BLUE, 3), true, 0);
|
indic = lv_meter_add_scale_lines(meter3, scale, lv_palette_darken(LV_PALETTE_BLUE, 3),
|
||||||
|
lv_palette_darken(LV_PALETTE_BLUE, 3), true, 0);
|
||||||
lv_meter_set_indicator_start_value(meter3, indic, 20);
|
lv_meter_set_indicator_start_value(meter3, indic, 20);
|
||||||
lv_meter_set_indicator_end_value(meter3, indic, 40);
|
lv_meter_set_indicator_end_value(meter3, indic, 40);
|
||||||
|
|
||||||
@@ -731,7 +740,8 @@ static void analytics_create(lv_obj_t * parent)
|
|||||||
lv_meter_set_indicator_start_value(meter3, indic, 40);
|
lv_meter_set_indicator_start_value(meter3, indic, 40);
|
||||||
lv_meter_set_indicator_end_value(meter3, indic, 60);
|
lv_meter_set_indicator_end_value(meter3, indic, 60);
|
||||||
|
|
||||||
indic = lv_meter_add_scale_lines(meter3, scale, lv_palette_darken(LV_PALETTE_GREEN, 3), lv_palette_darken(LV_PALETTE_GREEN, 3), true, 0);
|
indic = lv_meter_add_scale_lines(meter3, scale, lv_palette_darken(LV_PALETTE_GREEN, 3),
|
||||||
|
lv_palette_darken(LV_PALETTE_GREEN, 3), true, 0);
|
||||||
lv_meter_set_indicator_start_value(meter3, indic, 40);
|
lv_meter_set_indicator_start_value(meter3, indic, 40);
|
||||||
lv_meter_set_indicator_end_value(meter3, indic, 60);
|
lv_meter_set_indicator_end_value(meter3, indic, 60);
|
||||||
|
|
||||||
@@ -758,7 +768,8 @@ static void analytics_create(lv_obj_t * parent)
|
|||||||
lv_obj_set_size(meter1, 200, 200);
|
lv_obj_set_size(meter1, 200, 200);
|
||||||
lv_obj_set_size(meter2, 200, 200);
|
lv_obj_set_size(meter2, 200, 200);
|
||||||
lv_obj_set_size(meter3, 200, 200);
|
lv_obj_set_size(meter3, 200, 200);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_coord_t meter_w = lv_obj_get_width(meter1);
|
lv_coord_t meter_w = lv_obj_get_width(meter1);
|
||||||
lv_obj_set_height(meter1, meter_w);
|
lv_obj_set_height(meter1, meter_w);
|
||||||
lv_obj_set_height(meter2, meter_w);
|
lv_obj_set_height(meter2, meter_w);
|
||||||
@@ -836,13 +847,14 @@ void shop_create(lv_obj_t * parent)
|
|||||||
lv_obj_set_grid_cell(amount, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 3, 1);
|
lv_obj_set_grid_cell(amount, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 3, 1);
|
||||||
lv_obj_set_grid_cell(hint, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 4, 1);
|
lv_obj_set_grid_cell(hint, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 4, 1);
|
||||||
lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_STRETCH, 0, 5);
|
lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_STRETCH, 0, 5);
|
||||||
} else if(disp_size == DISP_MEDIUM) {
|
}
|
||||||
|
else if(disp_size == DISP_MEDIUM) {
|
||||||
static lv_coord_t grid1_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid1_col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid1_row_dsc[] = {
|
static lv_coord_t grid1_row_dsc[] = {
|
||||||
LV_GRID_CONTENT, /*Title + Date*/
|
LV_GRID_CONTENT, /*Title + Date*/
|
||||||
LV_GRID_CONTENT, /*Amount + Hint*/
|
LV_GRID_CONTENT, /*Amount + Hint*/
|
||||||
200, /*Chart*/
|
200, /*Chart*/
|
||||||
LV_GRID_TEMPLATE_LAST
|
LV_GRID_TEMPLATE_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
lv_obj_update_layout(panel1);
|
lv_obj_update_layout(panel1);
|
||||||
@@ -855,15 +867,16 @@ void shop_create(lv_obj_t * parent)
|
|||||||
lv_obj_set_grid_cell(amount, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
lv_obj_set_grid_cell(amount, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
||||||
lv_obj_set_grid_cell(hint, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
lv_obj_set_grid_cell(hint, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
||||||
lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_END, 0, 2, LV_GRID_ALIGN_STRETCH, 2, 1);
|
lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_END, 0, 2, LV_GRID_ALIGN_STRETCH, 2, 1);
|
||||||
} else if(disp_size == DISP_SMALL) {
|
}
|
||||||
|
else if(disp_size == DISP_SMALL) {
|
||||||
static lv_coord_t grid1_col_dsc[] = {LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid1_col_dsc[] = {LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid1_row_dsc[] = {
|
static lv_coord_t grid1_row_dsc[] = {
|
||||||
LV_GRID_CONTENT, /*Title*/
|
LV_GRID_CONTENT, /*Title*/
|
||||||
LV_GRID_CONTENT, /*Date*/
|
LV_GRID_CONTENT, /*Date*/
|
||||||
LV_GRID_CONTENT, /*Amount*/
|
LV_GRID_CONTENT, /*Amount*/
|
||||||
LV_GRID_CONTENT, /*Hint*/
|
LV_GRID_CONTENT, /*Hint*/
|
||||||
LV_GRID_CONTENT, /*Chart*/
|
LV_GRID_CONTENT, /*Chart*/
|
||||||
LV_GRID_TEMPLATE_LAST
|
LV_GRID_TEMPLATE_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
lv_obj_set_width(chart3, LV_PCT(95));
|
lv_obj_set_width(chart3, LV_PCT(95));
|
||||||
@@ -883,7 +896,8 @@ void shop_create(lv_obj_t * parent)
|
|||||||
if(disp_size == DISP_SMALL) {
|
if(disp_size == DISP_SMALL) {
|
||||||
lv_obj_add_flag(list, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
lv_obj_add_flag(list, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||||
lv_obj_set_height(list, LV_PCT(100));
|
lv_obj_set_height(list, LV_PCT(100));
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_obj_set_height(list, LV_PCT(100));
|
lv_obj_set_height(list, LV_PCT(100));
|
||||||
lv_obj_set_style_max_height(list, 300, 0);
|
lv_obj_set_style_max_height(list, 300, 0);
|
||||||
}
|
}
|
||||||
@@ -907,7 +921,8 @@ void shop_create(lv_obj_t * parent)
|
|||||||
if(disp_size == DISP_SMALL) {
|
if(disp_size == DISP_SMALL) {
|
||||||
lv_obj_add_flag(notifications, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
lv_obj_add_flag(notifications, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK);
|
||||||
lv_obj_set_height(notifications, LV_PCT(100));
|
lv_obj_set_height(notifications, LV_PCT(100));
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_obj_set_height(notifications, LV_PCT(100));
|
lv_obj_set_height(notifications, LV_PCT(100));
|
||||||
lv_obj_set_style_max_height(notifications, 300, 0);
|
lv_obj_set_style_max_height(notifications, 300, 0);
|
||||||
}
|
}
|
||||||
@@ -947,8 +962,9 @@ void shop_create(lv_obj_t * parent)
|
|||||||
static void color_changer_create(lv_obj_t * parent)
|
static void color_changer_create(lv_obj_t * parent)
|
||||||
{
|
{
|
||||||
static lv_palette_t palette[] = {
|
static lv_palette_t palette[] = {
|
||||||
LV_PALETTE_BLUE, LV_PALETTE_GREEN, LV_PALETTE_BLUE_GREY, LV_PALETTE_ORANGE,
|
LV_PALETTE_BLUE, LV_PALETTE_GREEN, LV_PALETTE_BLUE_GREY, LV_PALETTE_ORANGE,
|
||||||
LV_PALETTE_RED, LV_PALETTE_PURPLE, LV_PALETTE_TEAL, _LV_PALETTE_LAST };
|
LV_PALETTE_RED, LV_PALETTE_PURPLE, LV_PALETTE_TEAL, _LV_PALETTE_LAST
|
||||||
|
};
|
||||||
|
|
||||||
lv_obj_t * color_cont = lv_obj_create(parent);
|
lv_obj_t * color_cont = lv_obj_create(parent);
|
||||||
lv_obj_remove_style_all(color_cont);
|
lv_obj_remove_style_all(color_cont);
|
||||||
@@ -987,12 +1003,13 @@ static void color_changer_create(lv_obj_t * parent)
|
|||||||
lv_obj_set_style_bg_img_src(btn, LV_SYMBOL_TINT, 0);
|
lv_obj_set_style_bg_img_src(btn, LV_SYMBOL_TINT, 0);
|
||||||
|
|
||||||
if(disp_size == DISP_SMALL) {
|
if(disp_size == DISP_SMALL) {
|
||||||
lv_obj_set_size(btn, LV_DPX(42), LV_DPX(42));
|
lv_obj_set_size(btn, LV_DPX(42), LV_DPX(42));
|
||||||
lv_obj_align(btn, LV_ALIGN_BOTTOM_RIGHT, -LV_DPX(15), -LV_DPX(15));
|
lv_obj_align(btn, LV_ALIGN_BOTTOM_RIGHT, -LV_DPX(15), -LV_DPX(15));
|
||||||
} else {
|
}
|
||||||
lv_obj_set_size(btn, LV_DPX(50), LV_DPX(50));
|
else {
|
||||||
lv_obj_align(btn, LV_ALIGN_BOTTOM_RIGHT, -LV_DPX(15), -LV_DPX(15));
|
lv_obj_set_size(btn, LV_DPX(50), LV_DPX(50));
|
||||||
}
|
lv_obj_align(btn, LV_ALIGN_BOTTOM_RIGHT, -LV_DPX(15), -LV_DPX(15));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void color_changer_anim_cb(void * var, int32_t v)
|
static void color_changer_anim_cb(void * var, int32_t v)
|
||||||
@@ -1005,7 +1022,8 @@ static void color_changer_anim_cb(void * var, int32_t v)
|
|||||||
w = lv_map(v, 0, 256, LV_DPX(52), max_w);
|
w = lv_map(v, 0, 256, LV_DPX(52), max_w);
|
||||||
lv_obj_set_width(obj, w);
|
lv_obj_set_width(obj, w);
|
||||||
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, - LV_DPX(10), - LV_DPX(10));
|
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, - LV_DPX(10), - LV_DPX(10));
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
w = lv_map(v, 0, 256, LV_DPX(60), max_w);
|
w = lv_map(v, 0, 256, LV_DPX(60), max_w);
|
||||||
lv_obj_set_width(obj, w);
|
lv_obj_set_width(obj, w);
|
||||||
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, - LV_DPX(10), - LV_DPX(10));
|
lv_obj_align(obj, LV_ALIGN_BOTTOM_RIGHT, - LV_DPX(10), - LV_DPX(10));
|
||||||
@@ -1020,7 +1038,7 @@ static void color_changer_anim_cb(void * var, int32_t v)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void color_changer_event_cb(lv_event_t *e)
|
static void color_changer_event_cb(lv_event_t * e)
|
||||||
{
|
{
|
||||||
if(lv_event_get_code(e) == LV_EVENT_CLICKED) {
|
if(lv_event_get_code(e) == LV_EVENT_CLICKED) {
|
||||||
lv_obj_t * color_cont = lv_event_get_user_data(e);
|
lv_obj_t * color_cont = lv_event_get_user_data(e);
|
||||||
@@ -1032,7 +1050,8 @@ static void color_changer_event_cb(lv_event_t *e)
|
|||||||
lv_anim_set_values(&a, 0, 256);
|
lv_anim_set_values(&a, 0, 256);
|
||||||
lv_anim_set_time(&a, 200);
|
lv_anim_set_time(&a, 200);
|
||||||
lv_anim_start(&a);
|
lv_anim_start(&a);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_anim_t a;
|
lv_anim_t a;
|
||||||
lv_anim_init(&a);
|
lv_anim_init(&a);
|
||||||
lv_anim_set_var(&a, color_cont);
|
lv_anim_set_var(&a, color_cont);
|
||||||
@@ -1065,7 +1084,8 @@ static void color_event_cb(lv_event_t * e)
|
|||||||
lv_palette_t palette_secondary = (*palette_primary) + 3; /*Use another palette as secondary*/
|
lv_palette_t palette_secondary = (*palette_primary) + 3; /*Use another palette as secondary*/
|
||||||
if(palette_secondary >= _LV_PALETTE_LAST) palette_secondary = 0;
|
if(palette_secondary >= _LV_PALETTE_LAST) palette_secondary = 0;
|
||||||
|
|
||||||
lv_theme_default_init(NULL, lv_palette_main(*palette_primary), lv_palette_main(palette_secondary), LV_THEME_DEFAULT_DARK, font_normal);
|
lv_theme_default_init(NULL, lv_palette_main(*palette_primary), lv_palette_main(palette_secondary),
|
||||||
|
LV_THEME_DEFAULT_DARK, font_normal);
|
||||||
|
|
||||||
lv_color_t color = lv_palette_main(*palette_primary);
|
lv_color_t color = lv_palette_main(*palette_primary);
|
||||||
lv_style_set_text_color(&style_icon, color);
|
lv_style_set_text_color(&style_icon, color);
|
||||||
@@ -1074,7 +1094,8 @@ static void color_event_cb(lv_event_t * e)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const char * text2, const char * text3)
|
static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const char * text2,
|
||||||
|
const char * text3)
|
||||||
{
|
{
|
||||||
lv_obj_t * cont = lv_obj_create(parent);
|
lv_obj_t * cont = lv_obj_create(parent);
|
||||||
lv_obj_set_height(cont, LV_SIZE_CONTENT);
|
lv_obj_set_height(cont, LV_SIZE_CONTENT);
|
||||||
@@ -1114,7 +1135,7 @@ static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const
|
|||||||
lv_label_set_text(label3, text3);
|
lv_label_set_text(label3, text3);
|
||||||
|
|
||||||
if(disp_size == DISP_MEDIUM) {
|
if(disp_size == DISP_MEDIUM) {
|
||||||
static lv_coord_t grid_col_dsc[] = {LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_CONTENT,LV_GRID_FR(8), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_col_dsc[] = {LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_CONTENT, LV_GRID_FR(8), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_row_dsc[] = {LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_CONTENT, LV_GRID_CONTENT, LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_row_dsc[] = {LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_CONTENT, LV_GRID_CONTENT, LV_GRID_CONTENT, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
|
|
||||||
lv_obj_set_grid_dsc_array(cont, grid_col_dsc, grid_row_dsc);
|
lv_obj_set_grid_dsc_array(cont, grid_col_dsc, grid_row_dsc);
|
||||||
@@ -1146,7 +1167,8 @@ static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static lv_obj_t * create_shop_item(lv_obj_t * parent, const void * img_src, const char * name, const char * category, const char * price)
|
static lv_obj_t * create_shop_item(lv_obj_t * parent, const void * img_src, const char * name, const char * category,
|
||||||
|
const char * price)
|
||||||
{
|
{
|
||||||
static lv_coord_t grid_col_dsc[] = {LV_GRID_CONTENT, 5, LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_col_dsc[] = {LV_GRID_CONTENT, 5, LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t grid_row_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t grid_row_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
@@ -1257,9 +1279,10 @@ static void slider_event_cb(lv_event_t * e)
|
|||||||
lv_obj_t * obj = lv_event_get_target(e);
|
lv_obj_t * obj = lv_event_get_target(e);
|
||||||
|
|
||||||
if(code == LV_EVENT_REFR_EXT_DRAW_SIZE) {
|
if(code == LV_EVENT_REFR_EXT_DRAW_SIZE) {
|
||||||
lv_coord_t *s = lv_event_get_param(e);
|
lv_coord_t * s = lv_event_get_param(e);
|
||||||
*s = LV_MAX(*s, 60);
|
*s = LV_MAX(*s, 60);
|
||||||
} else if(code == LV_EVENT_DRAW_PART_END) {
|
}
|
||||||
|
else if(code == LV_EVENT_DRAW_PART_END) {
|
||||||
lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e);
|
lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e);
|
||||||
if(dsc->part == LV_PART_KNOB && lv_obj_has_state(obj, LV_STATE_PRESSED)) {
|
if(dsc->part == LV_PART_KNOB && lv_obj_has_state(obj, LV_STATE_PRESSED)) {
|
||||||
char buf[8];
|
char buf[8];
|
||||||
@@ -1310,7 +1333,8 @@ static void chart_event_cb(lv_event_t * e)
|
|||||||
if(lv_chart_get_type(obj) == LV_CHART_TYPE_BAR) {
|
if(lv_chart_get_type(obj) == LV_CHART_TYPE_BAR) {
|
||||||
const char * month[] = {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII"};
|
const char * month[] = {"I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII"};
|
||||||
lv_snprintf(dsc->text, dsc->text_length, "%s", month[dsc->value]);
|
lv_snprintf(dsc->text, dsc->text_length, "%s", month[dsc->value]);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
const char * month[] = {"Jan", "Febr", "March", "Apr", "May", "Jun", "July", "Aug", "Sept", "Oct", "Nov", "Dec"};
|
const char * month[] = {"Jan", "Febr", "March", "Apr", "May", "Jun", "July", "Aug", "Sept", "Oct", "Nov", "Dec"};
|
||||||
lv_snprintf(dsc->text, dsc->text_length, "%s", month[dsc->value]);
|
lv_snprintf(dsc->text, dsc->text_length, "%s", month[dsc->value]);
|
||||||
}
|
}
|
||||||
@@ -1322,13 +1346,15 @@ static void chart_event_cb(lv_event_t * e)
|
|||||||
/*Add a line mask that keeps the area below the line*/
|
/*Add a line mask that keeps the area below the line*/
|
||||||
if(dsc->p1 && dsc->p2) {
|
if(dsc->p1 && dsc->p2) {
|
||||||
lv_draw_mask_line_param_t line_mask_param;
|
lv_draw_mask_line_param_t line_mask_param;
|
||||||
lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y, LV_DRAW_MASK_LINE_SIDE_BOTTOM);
|
lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y,
|
||||||
|
LV_DRAW_MASK_LINE_SIDE_BOTTOM);
|
||||||
int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL);
|
int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL);
|
||||||
|
|
||||||
/*Add a fade effect: transparent bottom covering top*/
|
/*Add a fade effect: transparent bottom covering top*/
|
||||||
lv_coord_t h = lv_obj_get_height(obj);
|
lv_coord_t h = lv_obj_get_height(obj);
|
||||||
lv_draw_mask_fade_param_t fade_mask_param;
|
lv_draw_mask_fade_param_t fade_mask_param;
|
||||||
lv_draw_mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP, obj->coords.y2);
|
lv_draw_mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP,
|
||||||
|
obj->coords.y2);
|
||||||
int16_t fade_mask_id = lv_draw_mask_add(&fade_mask_param, NULL);
|
int16_t fade_mask_id = lv_draw_mask_add(&fade_mask_param, NULL);
|
||||||
|
|
||||||
/*Draw a rectangle that will be affected by the mask*/
|
/*Draw a rectangle that will be affected by the mask*/
|
||||||
@@ -1361,7 +1387,8 @@ static void chart_event_cb(lv_event_t * e)
|
|||||||
if(lv_chart_get_type(obj) == LV_CHART_TYPE_LINE) {
|
if(lv_chart_get_type(obj) == LV_CHART_TYPE_LINE) {
|
||||||
dsc->rect_dsc->outline_color = lv_color_white();
|
dsc->rect_dsc->outline_color = lv_color_white();
|
||||||
dsc->rect_dsc->outline_width = 2;
|
dsc->rect_dsc->outline_width = 2;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
dsc->rect_dsc->shadow_color = ser->color;
|
dsc->rect_dsc->shadow_color = ser->color;
|
||||||
dsc->rect_dsc->shadow_width = 15;
|
dsc->rect_dsc->shadow_width = 15;
|
||||||
dsc->rect_dsc->shadow_spread = 0;
|
dsc->rect_dsc->shadow_spread = 0;
|
||||||
@@ -1380,11 +1407,13 @@ static void chart_event_cb(lv_event_t * e)
|
|||||||
if(ser == lv_chart_get_series_next(obj, NULL)) {
|
if(ser == lv_chart_get_series_next(obj, NULL)) {
|
||||||
txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2;
|
txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2;
|
||||||
txt_area.x2 = txt_area.x1 + text_size.x;
|
txt_area.x2 = txt_area.x1 + text_size.x;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
txt_area.x2 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2;
|
txt_area.x2 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2;
|
||||||
txt_area.x1 = txt_area.x2 - text_size.x;
|
txt_area.x1 = txt_area.x2 - text_size.x;
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2 - text_size.x / 2;
|
txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2 - text_size.x / 2;
|
||||||
txt_area.x2 = txt_area.x1 + text_size.x;
|
txt_area.x2 = txt_area.x1 + text_size.x;
|
||||||
txt_area.y2 = dsc->draw_area->y1 - LV_DPX(15);
|
txt_area.y2 = dsc->draw_area->y1 - LV_DPX(15);
|
||||||
@@ -1408,7 +1437,8 @@ static void chart_event_cb(lv_event_t * e)
|
|||||||
label_dsc.color = lv_color_white();
|
label_dsc.color = lv_color_white();
|
||||||
label_dsc.font = font_normal;
|
label_dsc.font = font_normal;
|
||||||
lv_draw_label(dsc->draw_ctx, &label_dsc, &txt_area, buf, NULL);
|
lv_draw_label(dsc->draw_ctx, &label_dsc, &txt_area, buf, NULL);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
dsc->rect_dsc->outline_width = 0;
|
dsc->rect_dsc->outline_width = 0;
|
||||||
dsc->rect_dsc->shadow_width = 0;
|
dsc->rect_dsc->shadow_width = 0;
|
||||||
}
|
}
|
||||||
@@ -1455,15 +1485,15 @@ static void shop_chart_event_cb(lv_event_t * e)
|
|||||||
lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
||||||
|
|
||||||
a.y1 = a.y2 - 4; /*-4 to overlap the radius*/
|
a.y1 = a.y2 - 4; /*-4 to overlap the radius*/
|
||||||
a.y2 = a.y1 + (clothes[dsc->id] * h) / 100;
|
a.y2 = a.y1 + (clothes[dsc->id] * h) / 100;
|
||||||
draw_rect_dsc.bg_color = lv_palette_main(LV_PALETTE_BLUE);
|
draw_rect_dsc.bg_color = lv_palette_main(LV_PALETTE_BLUE);
|
||||||
draw_rect_dsc.radius = 0;
|
draw_rect_dsc.radius = 0;
|
||||||
lv_draw_rect( dsc->draw_ctx, &draw_rect_dsc, &a);
|
lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
||||||
|
|
||||||
a.y1 = a.y2;
|
a.y1 = a.y2;
|
||||||
a.y2 = a.y1 + (services[dsc->id] * h) / 100;
|
a.y2 = a.y1 + (services[dsc->id] * h) / 100;
|
||||||
draw_rect_dsc.bg_color = lv_palette_main(LV_PALETTE_GREEN);
|
draw_rect_dsc.bg_color = lv_palette_main(LV_PALETTE_GREEN);
|
||||||
lv_draw_rect( dsc->draw_ctx, &draw_rect_dsc, &a);
|
lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1509,7 +1539,8 @@ static void meter2_timer_cb(lv_timer_t * timer)
|
|||||||
if(down1) {
|
if(down1) {
|
||||||
session_desktop -= 137;
|
session_desktop -= 137;
|
||||||
if(session_desktop < 1400) down1 = false;
|
if(session_desktop < 1400) down1 = false;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
session_desktop += 116;
|
session_desktop += 116;
|
||||||
if(session_desktop > 4500) down1 = true;
|
if(session_desktop > 4500) down1 = true;
|
||||||
}
|
}
|
||||||
@@ -1517,7 +1548,8 @@ static void meter2_timer_cb(lv_timer_t * timer)
|
|||||||
if(down2) {
|
if(down2) {
|
||||||
session_tablet -= 3;
|
session_tablet -= 3;
|
||||||
if(session_tablet < 1400) down2 = false;
|
if(session_tablet < 1400) down2 = false;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
session_tablet += 9;
|
session_tablet += 9;
|
||||||
if(session_tablet > 4500) down2 = true;
|
if(session_tablet > 4500) down2 = true;
|
||||||
}
|
}
|
||||||
@@ -1525,7 +1557,8 @@ static void meter2_timer_cb(lv_timer_t * timer)
|
|||||||
if(down3) {
|
if(down3) {
|
||||||
session_mobile -= 57;
|
session_mobile -= 57;
|
||||||
if(session_mobile < 1400) down3 = false;
|
if(session_mobile < 1400) down3 = false;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
session_mobile += 76;
|
session_mobile += 76;
|
||||||
if(session_mobile > 4500) down3 = true;
|
if(session_mobile > 4500) down3 = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,7 +20,8 @@ static void sw_event_cb(lv_event_t * e)
|
|||||||
lv_anim_set_exec_cb(&a, anim_x_cb);
|
lv_anim_set_exec_cb(&a, anim_x_cb);
|
||||||
lv_anim_set_path_cb(&a, lv_anim_path_overshoot);
|
lv_anim_set_path_cb(&a, lv_anim_path_overshoot);
|
||||||
lv_anim_start(&a);
|
lv_anim_start(&a);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_anim_t a;
|
lv_anim_t a;
|
||||||
lv_anim_init(&a);
|
lv_anim_init(&a);
|
||||||
lv_anim_set_var(&a, label);
|
lv_anim_set_var(&a, label);
|
||||||
|
|||||||
@@ -36,8 +36,8 @@ static void anim_x_cb(void * var, int32_t v);
|
|||||||
*/
|
*/
|
||||||
void lv_example_anim_3(void)
|
void lv_example_anim_3(void)
|
||||||
{
|
{
|
||||||
static lv_coord_t col_dsc[] = {LV_GRID_FR(1), 200, LV_GRID_FR(1),LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t col_dsc[] = {LV_GRID_FR(1), 200, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
static lv_coord_t row_dsc[] = {30, 10, 10, LV_GRID_FR(1),LV_GRID_TEMPLATE_LAST};
|
static lv_coord_t row_dsc[] = {30, 10, 10, LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
|
|
||||||
/*Create a container with grid*/
|
/*Create a container with grid*/
|
||||||
lv_obj_t * cont = lv_obj_create(lv_scr_act());
|
lv_obj_t * cont = lv_obj_create(lv_scr_act());
|
||||||
@@ -53,7 +53,7 @@ void lv_example_anim_3(void)
|
|||||||
lv_anim_init(&ginfo.a);
|
lv_anim_init(&ginfo.a);
|
||||||
lv_anim_set_var(&ginfo.a, ginfo.anim_obj);
|
lv_anim_set_var(&ginfo.a, ginfo.anim_obj);
|
||||||
int32_t end = lv_obj_get_style_width(cont, LV_PART_MAIN) -
|
int32_t end = lv_obj_get_style_width(cont, LV_PART_MAIN) -
|
||||||
lv_obj_get_style_width(ginfo.anim_obj, LV_PART_MAIN) - 10;
|
lv_obj_get_style_width(ginfo.anim_obj, LV_PART_MAIN) - 10;
|
||||||
lv_anim_set_values(&ginfo.a, 5, end);
|
lv_anim_set_values(&ginfo.a, 5, end);
|
||||||
lv_anim_set_time(&ginfo.a, 2000);
|
lv_anim_set_time(&ginfo.a, 2000);
|
||||||
lv_anim_set_exec_cb(&ginfo.a, anim_x_cb);
|
lv_anim_set_exec_cb(&ginfo.a, anim_x_cb);
|
||||||
@@ -124,14 +124,14 @@ static void page_obj_init(lv_obj_t * par)
|
|||||||
lv_obj_set_align(ginfo.anim_obj, LV_ALIGN_TOP_LEFT);
|
lv_obj_set_align(ginfo.anim_obj, LV_ALIGN_TOP_LEFT);
|
||||||
lv_obj_clear_flag(ginfo.anim_obj, LV_OBJ_FLAG_SCROLLABLE);
|
lv_obj_clear_flag(ginfo.anim_obj, LV_OBJ_FLAG_SCROLLABLE);
|
||||||
lv_obj_set_style_bg_color(ginfo.anim_obj, lv_palette_main(LV_PALETTE_RED), LV_PART_MAIN);
|
lv_obj_set_style_bg_color(ginfo.anim_obj, lv_palette_main(LV_PALETTE_RED), LV_PART_MAIN);
|
||||||
lv_obj_set_grid_cell(ginfo.anim_obj, LV_GRID_ALIGN_START, 0, 1,LV_GRID_ALIGN_START, 0, 1);
|
lv_obj_set_grid_cell(ginfo.anim_obj, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 0, 1);
|
||||||
|
|
||||||
ginfo.p1_label = lv_label_create(par);
|
ginfo.p1_label = lv_label_create(par);
|
||||||
ginfo.p2_label = lv_label_create(par);
|
ginfo.p2_label = lv_label_create(par);
|
||||||
lv_label_set_text(ginfo.p1_label, "p1:0");
|
lv_label_set_text(ginfo.p1_label, "p1:0");
|
||||||
lv_label_set_text(ginfo.p2_label, "p2:0");
|
lv_label_set_text(ginfo.p2_label, "p2:0");
|
||||||
lv_obj_set_grid_cell(ginfo.p1_label, LV_GRID_ALIGN_START, 0, 1,LV_GRID_ALIGN_START, 1, 1);
|
lv_obj_set_grid_cell(ginfo.p1_label, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 1, 1);
|
||||||
lv_obj_set_grid_cell(ginfo.p2_label, LV_GRID_ALIGN_START, 0, 1,LV_GRID_ALIGN_START, 2, 1);
|
lv_obj_set_grid_cell(ginfo.p2_label, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 2, 1);
|
||||||
|
|
||||||
ginfo.p1_slider = lv_slider_create(par);
|
ginfo.p1_slider = lv_slider_create(par);
|
||||||
ginfo.p2_slider = lv_slider_create(par);
|
ginfo.p2_slider = lv_slider_create(par);
|
||||||
@@ -141,15 +141,15 @@ static void page_obj_init(lv_obj_t * par)
|
|||||||
lv_obj_set_style_pad_all(ginfo.p2_slider, 2, LV_PART_KNOB);
|
lv_obj_set_style_pad_all(ginfo.p2_slider, 2, LV_PART_KNOB);
|
||||||
lv_obj_add_event_cb(ginfo.p1_slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL);
|
lv_obj_add_event_cb(ginfo.p1_slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL);
|
||||||
lv_obj_add_event_cb(ginfo.p2_slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL);
|
lv_obj_add_event_cb(ginfo.p2_slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL);
|
||||||
lv_obj_set_grid_cell(ginfo.p1_slider, LV_GRID_ALIGN_STRETCH, 1, 1,LV_GRID_ALIGN_START, 1, 1);
|
lv_obj_set_grid_cell(ginfo.p1_slider, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_START, 1, 1);
|
||||||
lv_obj_set_grid_cell(ginfo.p2_slider, LV_GRID_ALIGN_STRETCH, 1, 1,LV_GRID_ALIGN_START, 2, 1);
|
lv_obj_set_grid_cell(ginfo.p2_slider, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_START, 2, 1);
|
||||||
|
|
||||||
ginfo.run_btn = lv_btn_create(par);
|
ginfo.run_btn = lv_btn_create(par);
|
||||||
lv_obj_add_event_cb(ginfo.run_btn, run_btn_event_handler, LV_EVENT_CLICKED, NULL);
|
lv_obj_add_event_cb(ginfo.run_btn, run_btn_event_handler, LV_EVENT_CLICKED, NULL);
|
||||||
lv_obj_t * btn_label = lv_label_create(ginfo.run_btn);
|
lv_obj_t * btn_label = lv_label_create(ginfo.run_btn);
|
||||||
lv_label_set_text(btn_label, LV_SYMBOL_PLAY);
|
lv_label_set_text(btn_label, LV_SYMBOL_PLAY);
|
||||||
lv_obj_center(btn_label);
|
lv_obj_center(btn_label);
|
||||||
lv_obj_set_grid_cell(ginfo.run_btn, LV_GRID_ALIGN_STRETCH, 2, 1,LV_GRID_ALIGN_STRETCH, 1, 2);
|
lv_obj_set_grid_cell(ginfo.run_btn, LV_GRID_ALIGN_STRETCH, 2, 1, LV_GRID_ALIGN_STRETCH, 1, 2);
|
||||||
|
|
||||||
ginfo.chart = lv_chart_create(par);
|
ginfo.chart = lv_chart_create(par);
|
||||||
lv_obj_set_style_pad_all(ginfo.chart, 0, LV_PART_MAIN);
|
lv_obj_set_style_pad_all(ginfo.chart, 0, LV_PART_MAIN);
|
||||||
@@ -159,7 +159,7 @@ static void page_obj_init(lv_obj_t * par)
|
|||||||
lv_chart_set_range(ginfo.chart, LV_CHART_AXIS_PRIMARY_Y, 0, 1024);
|
lv_chart_set_range(ginfo.chart, LV_CHART_AXIS_PRIMARY_Y, 0, 1024);
|
||||||
lv_chart_set_range(ginfo.chart, LV_CHART_AXIS_PRIMARY_X, 0, 1024);
|
lv_chart_set_range(ginfo.chart, LV_CHART_AXIS_PRIMARY_X, 0, 1024);
|
||||||
lv_chart_set_point_count(ginfo.chart, CHART_POINTS_NUM);
|
lv_chart_set_point_count(ginfo.chart, CHART_POINTS_NUM);
|
||||||
lv_obj_set_grid_cell(ginfo.chart, LV_GRID_ALIGN_STRETCH, 0, 3,LV_GRID_ALIGN_STRETCH, 3, 1);
|
lv_obj_set_grid_cell(ginfo.chart, LV_GRID_ALIGN_STRETCH, 0, 3, LV_GRID_ALIGN_STRETCH, 3, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ static void btn_start_event_handler(lv_event_t * e)
|
|||||||
{
|
{
|
||||||
lv_obj_t * btn = lv_event_get_target(e);
|
lv_obj_t * btn = lv_event_get_target(e);
|
||||||
|
|
||||||
if (!anim_timeline) {
|
if(!anim_timeline) {
|
||||||
anim_timeline_create();
|
anim_timeline_create();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -105,7 +105,7 @@ static void btn_start_event_handler(lv_event_t * e)
|
|||||||
static void btn_del_event_handler(lv_event_t * e)
|
static void btn_del_event_handler(lv_event_t * e)
|
||||||
{
|
{
|
||||||
LV_UNUSED(e);
|
LV_UNUSED(e);
|
||||||
if (anim_timeline) {
|
if(anim_timeline) {
|
||||||
lv_anim_timeline_del(anim_timeline);
|
lv_anim_timeline_del(anim_timeline);
|
||||||
anim_timeline = NULL;
|
anim_timeline = NULL;
|
||||||
}
|
}
|
||||||
@@ -114,7 +114,7 @@ static void btn_del_event_handler(lv_event_t * e)
|
|||||||
static void btn_stop_event_handler(lv_event_t * e)
|
static void btn_stop_event_handler(lv_event_t * e)
|
||||||
{
|
{
|
||||||
LV_UNUSED(e);
|
LV_UNUSED(e);
|
||||||
if (anim_timeline) {
|
if(anim_timeline) {
|
||||||
lv_anim_timeline_stop(anim_timeline);
|
lv_anim_timeline_stop(anim_timeline);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -123,7 +123,7 @@ static void slider_prg_event_handler(lv_event_t * e)
|
|||||||
{
|
{
|
||||||
lv_obj_t * slider = lv_event_get_target(e);
|
lv_obj_t * slider = lv_event_get_target(e);
|
||||||
|
|
||||||
if (!anim_timeline) {
|
if(!anim_timeline) {
|
||||||
anim_timeline_create();
|
anim_timeline_create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,20 +7,20 @@ static void event_cb(lv_event_t * e)
|
|||||||
lv_obj_t * label = lv_event_get_user_data(e);
|
lv_obj_t * label = lv_event_get_user_data(e);
|
||||||
|
|
||||||
switch(code) {
|
switch(code) {
|
||||||
case LV_EVENT_PRESSED:
|
case LV_EVENT_PRESSED:
|
||||||
lv_label_set_text(label, "The last button event:\nLV_EVENT_PRESSED");
|
lv_label_set_text(label, "The last button event:\nLV_EVENT_PRESSED");
|
||||||
break;
|
break;
|
||||||
case LV_EVENT_CLICKED:
|
case LV_EVENT_CLICKED:
|
||||||
lv_label_set_text(label, "The last button event:\nLV_EVENT_CLICKED");
|
lv_label_set_text(label, "The last button event:\nLV_EVENT_CLICKED");
|
||||||
break;
|
break;
|
||||||
case LV_EVENT_LONG_PRESSED:
|
case LV_EVENT_LONG_PRESSED:
|
||||||
lv_label_set_text(label, "The last button event:\nLV_EVENT_LONG_PRESSED");
|
lv_label_set_text(label, "The last button event:\nLV_EVENT_LONG_PRESSED");
|
||||||
break;
|
break;
|
||||||
case LV_EVENT_LONG_PRESSED_REPEAT:
|
case LV_EVENT_LONG_PRESSED_REPEAT:
|
||||||
lv_label_set_text(label, "The last button event:\nLV_EVENT_LONG_PRESSED_REPEAT");
|
lv_label_set_text(label, "The last button event:\nLV_EVENT_LONG_PRESSED_REPEAT");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,15 +7,16 @@ static lv_obj_t * label = NULL;
|
|||||||
|
|
||||||
static void timer_cb(lv_timer_t * timer)
|
static void timer_cb(lv_timer_t * timer)
|
||||||
{
|
{
|
||||||
if (n < 3 || n > 32) {
|
if(n < 3 || n > 32) {
|
||||||
n = 3;
|
n = 3;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
static uint32_t old_tick = 0;
|
static uint32_t old_tick = 0;
|
||||||
uint32_t tick = lv_tick_get();
|
uint32_t tick = lv_tick_get();
|
||||||
if (!old_tick) {
|
if(!old_tick) {
|
||||||
old_tick = tick;
|
old_tick = tick;
|
||||||
}
|
}
|
||||||
if (tick - old_tick > 3000) {
|
if(tick - old_tick > 3000) {
|
||||||
n++;
|
n++;
|
||||||
lv_label_set_text_fmt(label, "%d sides", n);
|
lv_label_set_text_fmt(label, "%d sides", n);
|
||||||
old_tick = tick;
|
old_tick = tick;
|
||||||
@@ -35,10 +36,10 @@ static void event_cb(lv_event_t * e)
|
|||||||
lv_point_t points[32];
|
lv_point_t points[32];
|
||||||
int i, r = 150;
|
int i, r = 150;
|
||||||
uint32_t tick = lv_tick_get();
|
uint32_t tick = lv_tick_get();
|
||||||
for (i = 0; i < n; i++) {
|
for(i = 0; i < n; i++) {
|
||||||
int angle = i * 360 / n + ((tick % 36000) / 100);
|
int angle = i * 360 / n + ((tick % 36000) / 100);
|
||||||
lv_coord_t x = 150 + (r * lv_trigo_cos(angle) >> LV_TRIGO_SHIFT), y =
|
lv_coord_t x = 150 + (r * lv_trigo_cos(angle) >> LV_TRIGO_SHIFT), y =
|
||||||
150 + (r * lv_trigo_sin(angle) >> LV_TRIGO_SHIFT);
|
150 + (r * lv_trigo_sin(angle) >> LV_TRIGO_SHIFT);
|
||||||
points[i].x = x;
|
points[i].x = x;
|
||||||
points[i].y = y;
|
points[i].y = y;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ void lv_example_flex_1(void)
|
|||||||
lv_obj_t * label;
|
lv_obj_t * label;
|
||||||
|
|
||||||
/*Add items to the row*/
|
/*Add items to the row*/
|
||||||
obj= lv_btn_create(cont_row);
|
obj = lv_btn_create(cont_row);
|
||||||
lv_obj_set_size(obj, 100, LV_PCT(100));
|
lv_obj_set_size(obj, 100, LV_PCT(100));
|
||||||
|
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ void lv_example_grid_1(void)
|
|||||||
/*Stretch the cell horizontally and vertically too
|
/*Stretch the cell horizontally and vertically too
|
||||||
*Set span to 1 to make the cell 1 column/row sized*/
|
*Set span to 1 to make the cell 1 column/row sized*/
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
||||||
LV_GRID_ALIGN_STRETCH, row, 1);
|
LV_GRID_ALIGN_STRETCH, row, 1);
|
||||||
|
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text_fmt(label, "c%d, r%d", col, row);
|
lv_label_set_text_fmt(label, "c%d, r%d", col, row);
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ void lv_example_grid_2(void)
|
|||||||
obj = lv_obj_create(cont);
|
obj = lv_obj_create(cont);
|
||||||
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 0, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 0, 1,
|
||||||
LV_GRID_ALIGN_START, 0, 1);
|
LV_GRID_ALIGN_START, 0, 1);
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text(label, "c0, r0");
|
lv_label_set_text(label, "c0, r0");
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ void lv_example_grid_2(void)
|
|||||||
obj = lv_obj_create(cont);
|
obj = lv_obj_create(cont);
|
||||||
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 1, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 1, 1,
|
||||||
LV_GRID_ALIGN_CENTER, 0, 1);
|
LV_GRID_ALIGN_CENTER, 0, 1);
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text(label, "c1, r0");
|
lv_label_set_text(label, "c1, r0");
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ void lv_example_grid_2(void)
|
|||||||
obj = lv_obj_create(cont);
|
obj = lv_obj_create(cont);
|
||||||
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 2, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 2, 1,
|
||||||
LV_GRID_ALIGN_END, 0, 1);
|
LV_GRID_ALIGN_END, 0, 1);
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text(label, "c2, r0");
|
lv_label_set_text(label, "c2, r0");
|
||||||
|
|
||||||
@@ -47,7 +47,7 @@ void lv_example_grid_2(void)
|
|||||||
obj = lv_obj_create(cont);
|
obj = lv_obj_create(cont);
|
||||||
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, 1, 2,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, 1, 2,
|
||||||
LV_GRID_ALIGN_STRETCH, 1, 1);
|
LV_GRID_ALIGN_STRETCH, 1, 1);
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text(label, "c1-2, r1");
|
lv_label_set_text(label, "c1-2, r1");
|
||||||
|
|
||||||
@@ -55,7 +55,7 @@ void lv_example_grid_2(void)
|
|||||||
obj = lv_obj_create(cont);
|
obj = lv_obj_create(cont);
|
||||||
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, 0, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, 0, 1,
|
||||||
LV_GRID_ALIGN_STRETCH, 1, 2);
|
LV_GRID_ALIGN_STRETCH, 1, 2);
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text(label, "c0\nr1-2");
|
lv_label_set_text(label, "c0\nr1-2");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ void lv_example_grid_3(void)
|
|||||||
/*Stretch the cell horizontally and vertically too
|
/*Stretch the cell horizontally and vertically too
|
||||||
*Set span to 1 to make the cell 1 column/row sized*/
|
*Set span to 1 to make the cell 1 column/row sized*/
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
||||||
LV_GRID_ALIGN_STRETCH, row, 1);
|
LV_GRID_ALIGN_STRETCH, row, 1);
|
||||||
|
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ void lv_example_grid_4(void)
|
|||||||
/*Stretch the cell horizontally and vertically too
|
/*Stretch the cell horizontally and vertically too
|
||||||
*Set span to 1 to make the cell 1 column/row sized*/
|
*Set span to 1 to make the cell 1 column/row sized*/
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
||||||
LV_GRID_ALIGN_STRETCH, row, 1);
|
LV_GRID_ALIGN_STRETCH, row, 1);
|
||||||
|
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ void lv_example_grid_5(void)
|
|||||||
|
|
||||||
obj = lv_obj_create(cont);
|
obj = lv_obj_create(cont);
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
||||||
LV_GRID_ALIGN_STRETCH, row, 1);
|
LV_GRID_ALIGN_STRETCH, row, 1);
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
||||||
lv_obj_center(label);
|
lv_obj_center(label);
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ void lv_example_grid_6(void)
|
|||||||
/*Stretch the cell horizontally and vertically too
|
/*Stretch the cell horizontally and vertically too
|
||||||
*Set span to 1 to make the cell 1 column/row sized*/
|
*Set span to 1 to make the cell 1 column/row sized*/
|
||||||
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
|
||||||
LV_GRID_ALIGN_STRETCH, row, 1);
|
LV_GRID_ALIGN_STRETCH, row, 1);
|
||||||
|
|
||||||
label = lv_label_create(obj);
|
label = lv_label_create(obj);
|
||||||
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
lv_label_set_text_fmt(label, "%d,%d", col, row);
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -3,346 +3,346 @@
|
|||||||
|
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LV_ATTRIBUTE_IMG_PNG_DECODER_TEST
|
#ifndef LV_ATTRIBUTE_IMG_PNG_DECODER_TEST
|
||||||
#define LV_ATTRIBUTE_IMG_PNG_DECODER_TEST
|
#define LV_ATTRIBUTE_IMG_PNG_DECODER_TEST
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_PNG_DECODER_TEST uint8_t img_wink_png_map[] = {
|
const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_PNG_DECODER_TEST uint8_t img_wink_png_map[] = {
|
||||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||||
0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32, 0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88,
|
0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x32, 0x08, 0x06, 0x00, 0x00, 0x00, 0x1e, 0x3f, 0x88,
|
||||||
0xb1, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
|
0xb1, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
|
||||||
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
|
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0b, 0x13, 0x00,
|
||||||
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
|
0x00, 0x0b, 0x13, 0x01, 0x00, 0x9a, 0x9c, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4d, 0x45,
|
||||||
0x07, 0xe5, 0x05, 0x07, 0x0c, 0x1b, 0x26, 0xad, 0x4b, 0x20, 0x5b, 0x00, 0x00, 0x00, 0x1d, 0x69,
|
0x07, 0xe5, 0x05, 0x07, 0x0c, 0x1b, 0x26, 0xad, 0x4b, 0x20, 0x5b, 0x00, 0x00, 0x00, 0x1d, 0x69,
|
||||||
0x54, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43,
|
0x54, 0x58, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43,
|
||||||
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x47, 0x49, 0x4d, 0x50,
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x47, 0x49, 0x4d, 0x50,
|
||||||
0x64, 0x2e, 0x65, 0x07, 0x00, 0x00, 0x13, 0x8a, 0x49, 0x44, 0x41, 0x54, 0x68, 0xde, 0xad, 0x9a,
|
0x64, 0x2e, 0x65, 0x07, 0x00, 0x00, 0x13, 0x8a, 0x49, 0x44, 0x41, 0x54, 0x68, 0xde, 0xad, 0x9a,
|
||||||
0x69, 0x94, 0x5d, 0xd5, 0x75, 0xe7, 0x7f, 0xe7, 0xdc, 0x7b, 0xdf, 0x7d, 0x43, 0xd5, 0xab, 0xe9,
|
0x69, 0x94, 0x5d, 0xd5, 0x75, 0xe7, 0x7f, 0xe7, 0xdc, 0x7b, 0xdf, 0x7d, 0x43, 0xd5, 0xab, 0xe9,
|
||||||
0x55, 0x49, 0x05, 0xaa, 0xd2, 0x80, 0x10, 0x12, 0x48, 0xa8, 0x24, 0x04, 0x66, 0x72, 0x6c, 0xec,
|
0x55, 0x49, 0x05, 0xaa, 0xd2, 0x80, 0x10, 0x12, 0x48, 0xa8, 0x24, 0x04, 0x66, 0x72, 0x6c, 0xec,
|
||||||
0xd8, 0xd0, 0x6e, 0x27, 0xc4, 0x6d, 0x4c, 0x08, 0x21, 0xdd, 0xed, 0x24, 0xbd, 0x1c, 0x67, 0x39,
|
0xd8, 0xd0, 0x6e, 0x27, 0xc4, 0x6d, 0x4c, 0x08, 0x21, 0xdd, 0xed, 0x24, 0xbd, 0x1c, 0x67, 0x39,
|
||||||
0xcb, 0x6d, 0x33, 0xc7, 0x6e, 0x9b, 0xc6, 0x18, 0x64, 0x90, 0x43, 0xda, 0xb1, 0x1d, 0x7f, 0x31,
|
0xcb, 0x6d, 0x33, 0xc7, 0x6e, 0x9b, 0xc6, 0x18, 0x64, 0x90, 0x43, 0xda, 0xb1, 0x1d, 0x7f, 0x31,
|
||||||
0x89, 0x93, 0xb8, 0x33, 0x38, 0x84, 0x15, 0x63, 0xe3, 0x38, 0x84, 0x80, 0x99, 0x67, 0x24, 0x10,
|
0x89, 0x93, 0xb8, 0x33, 0x38, 0x84, 0x15, 0x63, 0xe3, 0x38, 0x84, 0x80, 0x99, 0x67, 0x24, 0x10,
|
||||||
0x83, 0x06, 0x84, 0x84, 0x54, 0x52, 0x95, 0x6a, 0x7e, 0xf5, 0xa6, 0x3b, 0x9c, 0xb3, 0xfb, 0xc3,
|
0x83, 0x06, 0x84, 0x84, 0x54, 0x52, 0x95, 0x6a, 0x7e, 0xf5, 0xa6, 0x3b, 0x9c, 0xb3, 0xfb, 0xc3,
|
||||||
0xbd, 0x6f, 0x28, 0xa1, 0xac, 0x0e, 0x8e, 0x6b, 0xad, 0xb3, 0x6e, 0xd5, 0x7b, 0xa7, 0xce, 0xd9,
|
0xbd, 0x6f, 0x28, 0xa1, 0xac, 0x0e, 0x8e, 0x6b, 0xad, 0xb3, 0x6e, 0xd5, 0x7b, 0xa7, 0xce, 0xd9,
|
||||||
0xff, 0xb3, 0xa7, 0xff, 0xde, 0xf7, 0x28, 0x7e, 0x8e, 0x9f, 0x97, 0x6f, 0x18, 0xe2, 0xec, 0x3b,
|
0xff, 0xb3, 0xa7, 0xff, 0xde, 0xf7, 0x28, 0x7e, 0x8e, 0x9f, 0x97, 0x6f, 0x18, 0xe2, 0xec, 0x3b,
|
||||||
0x8f, 0x03, 0xf0, 0xe0, 0xd5, 0x5b, 0x19, 0x1e, 0xdd, 0xa7, 0x4b, 0xab, 0x95, 0x5a, 0x98, 0xee,
|
0x8f, 0x03, 0xf0, 0xe0, 0xd5, 0x5b, 0x19, 0x1e, 0xdd, 0xa7, 0x4b, 0xab, 0x95, 0x5a, 0x98, 0xee,
|
||||||
0xe9, 0x6d, 0xcc, 0x95, 0xcf, 0xcb, 0xf5, 0xc8, 0xe6, 0x6c, 0x97, 0x3e, 0x5d, 0x3b, 0x76, 0xd0,
|
0xe9, 0x6d, 0xcc, 0x95, 0xcf, 0xcb, 0xf5, 0xc8, 0xe6, 0x6c, 0x97, 0x3e, 0x5d, 0x3b, 0x76, 0xd0,
|
||||||
0x51, 0xaa, 0x28, 0x56, 0x10, 0xc3, 0xa2, 0x89, 0xd5, 0x74, 0x58, 0xe3, 0x50, 0xa3, 0xa6, 0x5e,
|
0x51, 0xaa, 0x28, 0x56, 0x10, 0xc3, 0xa2, 0x89, 0xd5, 0x74, 0x58, 0xe3, 0x50, 0xa3, 0xa6, 0x5e,
|
||||||
0x15, 0xed, 0xbf, 0x30, 0x30, 0x5c, 0x38, 0x52, 0x9f, 0x1a, 0x8f, 0xe7, 0xaa, 0x3d, 0xb2, 0xed,
|
0x15, 0xed, 0xbf, 0x30, 0x30, 0x5c, 0x38, 0x52, 0x9f, 0x1a, 0x8f, 0xe7, 0xaa, 0x3d, 0xb2, 0xed,
|
||||||
0xee, 0xe3, 0xd2, 0x5e, 0x7f, 0x19, 0x67, 0xdf, 0x39, 0xf9, 0xae, 0x64, 0x52, 0xef, 0x66, 0xf2,
|
0xee, 0xe3, 0xd2, 0x5e, 0x7f, 0x19, 0x67, 0xdf, 0x39, 0xf9, 0xae, 0x64, 0x52, 0xef, 0x66, 0xf2,
|
||||||
0x4b, 0xd7, 0x0d, 0xb3, 0x65, 0xc7, 0x31, 0x00, 0x7e, 0x70, 0xee, 0x6a, 0xb5, 0xed, 0x13, 0xc7,
|
0x4b, 0xd7, 0x0d, 0xb3, 0x65, 0xc7, 0x31, 0x00, 0x7e, 0x70, 0xee, 0x6a, 0xb5, 0xed, 0x13, 0xc7,
|
||||||
0xfd, 0x58, 0x7a, 0x46, 0x95, 0xa9, 0x7c, 0xa2, 0xab, 0xa4, 0xaf, 0xcc, 0xe4, 0xe3, 0xb3, 0xf3,
|
0xfd, 0x58, 0x7a, 0x46, 0x95, 0xa9, 0x7c, 0xa2, 0xab, 0xa4, 0xaf, 0xcc, 0xe4, 0xe3, 0xb3, 0xf3,
|
||||||
0xbd, 0x1a, 0x37, 0x23, 0x80, 0x80, 0xa8, 0xe4, 0x69, 0x01, 0x63, 0x51, 0x06, 0xc4, 0x28, 0x6c,
|
0xbd, 0x1a, 0x37, 0x23, 0x80, 0x80, 0xa8, 0xe4, 0x69, 0x01, 0x63, 0x51, 0x06, 0xc4, 0x28, 0x6c,
|
||||||
0x03, 0x1a, 0x65, 0xa1, 0x51, 0xd3, 0xc7, 0xeb, 0x55, 0x1e, 0x08, 0x43, 0xef, 0xaf, 0x5d, 0x47,
|
0x03, 0x1a, 0x65, 0xa1, 0x51, 0xd3, 0xc7, 0xeb, 0x55, 0x1e, 0x08, 0x43, 0xef, 0xaf, 0x5d, 0x47,
|
||||||
0xbf, 0x30, 0xb7, 0xa0, 0xcb, 0x5b, 0xef, 0x9e, 0x8a, 0x9a, 0xfb, 0xed, 0xba, 0x6e, 0x19, 0x9b,
|
0xbf, 0x30, 0xb7, 0xa0, 0xcb, 0x5b, 0xef, 0x9e, 0x8a, 0x9a, 0xfb, 0xed, 0xba, 0x6e, 0x19, 0x9b,
|
||||||
0x77, 0x4c, 0xfe, 0xe2, 0x80, 0xec, 0xff, 0xf6, 0xc7, 0x88, 0x8f, 0xfd, 0x88, 0xf5, 0x5f, 0x49,
|
0x77, 0x4c, 0xfe, 0xe2, 0x80, 0xec, 0xff, 0xf6, 0xc7, 0x88, 0x8f, 0xfd, 0x88, 0xf5, 0x5f, 0x49,
|
||||||
0xf6, 0x78, 0xe3, 0xcb, 0x5d, 0x5d, 0x5e, 0x2e, 0x7b, 0x6e, 0xb6, 0x18, 0x7f, 0x26, 0xdf, 0x6b,
|
0xf6, 0x78, 0xe3, 0xcb, 0x5d, 0x5d, 0x5e, 0x2e, 0x7b, 0x6e, 0xb6, 0x18, 0x7f, 0x26, 0xdf, 0x6b,
|
||||||
0xff, 0x4b, 0xd7, 0xa0, 0x42, 0x39, 0x2e, 0x38, 0x59, 0x20, 0x83, 0x68, 0x0f, 0x94, 0x87, 0xd2,
|
0xff, 0x4b, 0xd7, 0xa0, 0x42, 0x39, 0x2e, 0x38, 0x59, 0x20, 0x83, 0x68, 0x0f, 0x94, 0x87, 0xd2,
|
||||||
0x39, 0x40, 0x83, 0x44, 0x88, 0xa9, 0x83, 0x09, 0xc0, 0x84, 0xa8, 0x30, 0x40, 0x05, 0x01, 0x84,
|
0x39, 0x40, 0x83, 0x44, 0x88, 0xa9, 0x83, 0x09, 0xc0, 0x84, 0xa8, 0x30, 0x40, 0x05, 0x01, 0x84,
|
||||||
0x06, 0x22, 0x45, 0xa3, 0x6c, 0xa9, 0x2e, 0xea, 0xb7, 0xea, 0x81, 0xf7, 0x4d, 0x1b, 0xdb, 0xfb,
|
0x06, 0x22, 0x45, 0xa3, 0x6c, 0xa9, 0x2e, 0xea, 0xb7, 0xea, 0x81, 0xf7, 0x4d, 0x1b, 0xdb, 0xfb,
|
||||||
0x0e, 0x8e, 0x17, 0x0f, 0x5f, 0xf2, 0xdd, 0x23, 0x31, 0xc0, 0xab, 0x5f, 0x7b, 0x2f, 0x67, 0xdd,
|
0x0e, 0x8e, 0x17, 0x0f, 0x5f, 0xf2, 0xdd, 0x23, 0x31, 0xc0, 0xab, 0x5f, 0x7b, 0x2f, 0x67, 0xdd,
|
||||||
0xf8, 0xd8, 0x7f, 0x1c, 0xc8, 0xae, 0x1b, 0x47, 0xd8, 0xfc, 0xb5, 0xc3, 0x00, 0xfc, 0xf4, 0xd2,
|
0xf8, 0xd8, 0x7f, 0x1c, 0xc8, 0xae, 0x1b, 0x47, 0xd8, 0xfc, 0xb5, 0xc3, 0x00, 0xfc, 0xf4, 0xd2,
|
||||||
0x62, 0x66, 0xed, 0x07, 0x33, 0x9b, 0xb3, 0xdd, 0xe6, 0xf3, 0xdd, 0x83, 0x72, 0x55, 0xae, 0x17,
|
0x62, 0x66, 0xed, 0x07, 0x33, 0x9b, 0xb3, 0xdd, 0xe6, 0xf3, 0xdd, 0x83, 0x72, 0x55, 0xae, 0x17,
|
||||||
0x54, 0xa6, 0x1b, 0x71, 0xfb, 0x20, 0xbb, 0x12, 0xd5, 0xb3, 0x09, 0x95, 0x3f, 0x1d, 0x72, 0x23,
|
0x54, 0xa6, 0x1b, 0x71, 0xfb, 0x20, 0xbb, 0x12, 0xd5, 0xb3, 0x09, 0x95, 0x3f, 0x1d, 0x72, 0x23,
|
||||||
0xe0, 0xf5, 0x82, 0xd2, 0xed, 0x85, 0x24, 0x86, 0x60, 0x06, 0xea, 0x87, 0x91, 0xea, 0x5e, 0x98,
|
0xe0, 0xf5, 0x82, 0xd2, 0xed, 0x85, 0x24, 0x86, 0x60, 0x06, 0xea, 0x87, 0x91, 0xea, 0x5e, 0x98,
|
||||||
0x7f, 0x05, 0x16, 0x0f, 0x41, 0x75, 0x0e, 0x55, 0xab, 0xa0, 0x02, 0x4b, 0x54, 0x83, 0xc5, 0xb2,
|
0x7f, 0x05, 0x16, 0x0f, 0x41, 0x75, 0x0e, 0x55, 0xab, 0xa0, 0x02, 0x4b, 0x54, 0x83, 0xc5, 0xb2,
|
||||||
0x3a, 0xdc, 0x08, 0xdd, 0xdb, 0xe6, 0xe6, 0xd5, 0x8f, 0x37, 0x7d, 0x7d, 0x61, 0x1c, 0xe0, 0xa5,
|
0x3a, 0xdc, 0x08, 0xdd, 0xdb, 0xe6, 0xe6, 0xd5, 0x8f, 0x37, 0x7d, 0x7d, 0x61, 0x1c, 0xe0, 0xa5,
|
||||||
0xeb, 0x57, 0xb0, 0xe5, 0xae, 0x23, 0x3f, 0x3f, 0x90, 0x5d, 0xd7, 0x95, 0xd8, 0xbc, 0x63, 0x3a,
|
0xeb, 0x57, 0xb0, 0xe5, 0xae, 0x23, 0x3f, 0x3f, 0x90, 0x5d, 0xd7, 0x95, 0xd8, 0xbc, 0x63, 0x3a,
|
||||||
0xb5, 0xdb, 0x81, 0xc1, 0xbe, 0x11, 0xf9, 0xaf, 0x85, 0x12, 0x37, 0x15, 0x06, 0x28, 0x39, 0xd9,
|
0xb5, 0xdb, 0x81, 0xc1, 0xbe, 0x11, 0xf9, 0xaf, 0x85, 0x12, 0x37, 0x15, 0x06, 0x28, 0x39, 0xd9,
|
||||||
0x02, 0xf8, 0xa3, 0xd0, 0x77, 0x1e, 0xaa, 0xff, 0x62, 0xc8, 0xad, 0x04, 0x31, 0xe9, 0xb0, 0x24,
|
0x02, 0xf8, 0xa3, 0xd0, 0x77, 0x1e, 0xaa, 0xff, 0x62, 0xc8, 0xad, 0x04, 0x31, 0xe9, 0xb0, 0x24,
|
||||||
0xf6, 0x74, 0x92, 0xed, 0x54, 0x3a, 0x50, 0x50, 0x3f, 0x02, 0x33, 0xcf, 0x20, 0x53, 0xcf, 0xc3,
|
0xf6, 0x74, 0x92, 0xed, 0x54, 0x3a, 0x50, 0x50, 0x3f, 0x02, 0x33, 0xcf, 0x20, 0x53, 0xcf, 0xc3,
|
||||||
0xec, 0x01, 0x58, 0x9c, 0x46, 0x87, 0x50, 0xaf, 0xc2, 0x62, 0xc5, 0xf9, 0x49, 0xad, 0xae, 0xef,
|
0xec, 0x01, 0x58, 0x9c, 0x46, 0x87, 0x50, 0xaf, 0xc2, 0x62, 0xc5, 0xf9, 0x49, 0xad, 0xae, 0xef,
|
||||||
0x58, 0x73, 0x6b, 0xf9, 0x31, 0x80, 0x9d, 0x37, 0x0c, 0x33, 0x76, 0xe7, 0xb1, 0x77, 0x0f, 0x64,
|
0x58, 0x73, 0x6b, 0xf9, 0x31, 0x80, 0x9d, 0x37, 0x0c, 0x33, 0x76, 0xe7, 0xb1, 0x77, 0x0f, 0x64,
|
||||||
0xd7, 0xf5, 0x7d, 0x6c, 0xbe, 0x6b, 0x0e, 0x80, 0x3d, 0xb7, 0x0e, 0x9c, 0xd5, 0x73, 0x8a, 0xfa,
|
0xd7, 0xf5, 0x7d, 0x6c, 0xbe, 0x6b, 0x0e, 0x80, 0x3d, 0xb7, 0x0e, 0x9c, 0xd5, 0x73, 0x8a, 0xfa,
|
||||||
0x52, 0xf7, 0x32, 0x75, 0xa5, 0xdf, 0x25, 0x90, 0x1d, 0x81, 0xbe, 0x8b, 0x50, 0x43, 0x97, 0x42,
|
0x52, 0xf7, 0x32, 0x75, 0xa5, 0xdf, 0x25, 0x90, 0x1d, 0x81, 0xbe, 0x8b, 0x50, 0x43, 0x97, 0x42,
|
||||||
0x66, 0x28, 0x39, 0x6d, 0x31, 0x27, 0x59, 0x45, 0xda, 0xcf, 0x14, 0xa0, 0x12, 0x83, 0x60, 0xdb,
|
0x66, 0x28, 0x39, 0x6d, 0x31, 0x27, 0x59, 0x45, 0xda, 0xcf, 0x14, 0xa0, 0x12, 0x83, 0x60, 0xdb,
|
||||||
0xf3, 0xb5, 0x87, 0x8a, 0xab, 0xc8, 0xec, 0x0b, 0xc8, 0xb1, 0xa7, 0x60, 0xe2, 0x15, 0x54, 0xb5,
|
0xf3, 0xb5, 0x87, 0x8a, 0xab, 0xc8, 0xec, 0x0b, 0xc8, 0xb1, 0xa7, 0x60, 0xe2, 0x15, 0x54, 0xb5,
|
||||||
0x82, 0xc4, 0x9a, 0x85, 0x05, 0xa6, 0x2a, 0x55, 0xe7, 0xe6, 0xaf, 0xfd, 0xf0, 0xb2, 0xef, 0x7d,
|
0x82, 0xc4, 0x9a, 0x85, 0x05, 0xa6, 0x2a, 0x55, 0xe7, 0xe6, 0xaf, 0xfd, 0xf0, 0xb2, 0xef, 0x7d,
|
||||||
0xfb, 0xc5, 0x1f, 0xc4, 0x3b, 0x3f, 0xd7, 0xcb, 0xd8, 0xdd, 0xf3, 0xff, 0x7e, 0x20, 0x2f, 0xdf,
|
0xfb, 0xc5, 0x1f, 0xc4, 0x3b, 0x3f, 0xd7, 0xcb, 0xd8, 0xdd, 0xf3, 0xff, 0x7e, 0x20, 0x2f, 0xdf,
|
||||||
0x50, 0xe2, 0xec, 0x3b, 0x13, 0x4d, 0xec, 0xbb, 0xbd, 0xff, 0xe2, 0xbe, 0x11, 0xe7, 0xae, 0xc2,
|
0x50, 0xe2, 0xec, 0x3b, 0x13, 0x4d, 0xec, 0xbb, 0xbd, 0xff, 0xe2, 0xbe, 0x11, 0xe7, 0xae, 0xc2,
|
||||||
0xa0, 0x3e, 0xdf, 0xcb, 0x6b, 0xe8, 0xda, 0x8c, 0x5a, 0x76, 0x39, 0x14, 0xcf, 0x4e, 0x65, 0x3c,
|
0xa0, 0x3e, 0xdf, 0xcb, 0x6b, 0xe8, 0xda, 0x8c, 0x5a, 0x76, 0x39, 0x14, 0xcf, 0x4e, 0x65, 0x3c,
|
||||||
0x19, 0x00, 0x8b, 0x12, 0x69, 0x09, 0xac, 0xc4, 0x22, 0x62, 0x81, 0xb6, 0xb6, 0x94, 0x98, 0x44,
|
0x19, 0x00, 0x8b, 0x12, 0x69, 0x09, 0xac, 0xc4, 0x22, 0x62, 0x81, 0xb6, 0xb6, 0x94, 0x98, 0x44,
|
||||||
0x6b, 0x62, 0x12, 0xa0, 0xda, 0x43, 0xa2, 0x05, 0x98, 0x7c, 0x16, 0x79, 0xfb, 0x31, 0x98, 0x3c,
|
0x6b, 0x62, 0x12, 0xa0, 0xda, 0x43, 0xa2, 0x05, 0x98, 0x7c, 0x16, 0x79, 0xfb, 0x31, 0x98, 0x3c,
|
||||||
0x80, 0xb2, 0x0e, 0xd5, 0x2a, 0x71, 0xb9, 0xa2, 0xbf, 0xf2, 0xe1, 0xff, 0x75, 0xda, 0x57, 0x5f,
|
0x80, 0xb2, 0x0e, 0xd5, 0x2a, 0x71, 0xb9, 0xa2, 0xbf, 0xf2, 0xe1, 0xff, 0x75, 0xda, 0x57, 0x5f,
|
||||||
0x63, 0x97, 0xd9, 0x79, 0xfd, 0x72, 0xc6, 0xee, 0x9a, 0xf8, 0xff, 0x03, 0xd9, 0x79, 0xdd, 0x10,
|
0x63, 0x97, 0xd9, 0x79, 0xfd, 0x72, 0xc6, 0xee, 0x9a, 0xf8, 0xff, 0x03, 0xd9, 0x79, 0xdd, 0x10,
|
||||||
0x63, 0x3b, 0x92, 0xd0, 0xba, 0xff, 0x8e, 0xfe, 0x4b, 0xfa, 0x56, 0x39, 0xdf, 0x28, 0x94, 0xdc,
|
0x63, 0x3b, 0x92, 0xd0, 0xba, 0xff, 0x8e, 0xfe, 0x4b, 0xfa, 0x56, 0x39, 0xdf, 0x28, 0x94, 0xdc,
|
||||||
0x8d, 0xae, 0xef, 0x42, 0xdf, 0xc5, 0xa8, 0xe1, 0x2b, 0xc0, 0x1f, 0x6e, 0x0b, 0xd0, 0x71, 0xfa,
|
0x8d, 0xae, 0xef, 0x42, 0xdf, 0xc5, 0xa8, 0xe1, 0x2b, 0xc0, 0x1f, 0x6e, 0x0b, 0xd0, 0x71, 0xfa,
|
||||||
0x0a, 0x0b, 0xa9, 0xd0, 0x4b, 0x4e, 0x5e, 0x92, 0xcf, 0x15, 0x6d, 0xe1, 0x45, 0x2c, 0x8a, 0x14,
|
0x0a, 0x0b, 0xa9, 0xd0, 0x4b, 0x4e, 0x5e, 0x92, 0xcf, 0x15, 0x6d, 0xe1, 0x45, 0x2c, 0x8a, 0x14,
|
||||||
0x60, 0x13, 0x14, 0x02, 0xca, 0x81, 0x85, 0x03, 0x70, 0xe8, 0x11, 0xe4, 0xd0, 0x73, 0x28, 0xeb,
|
0x60, 0x13, 0x14, 0x02, 0xca, 0x81, 0x85, 0x03, 0x70, 0xe8, 0x11, 0xe4, 0xd0, 0x73, 0x28, 0xeb,
|
||||||
0xd0, 0x68, 0x88, 0x99, 0x9d, 0x77, 0x76, 0x8c, 0x7c, 0xa9, 0x72, 0x13, 0xc0, 0xce, 0x9b, 0x4f,
|
0xd0, 0x68, 0x88, 0x99, 0x9d, 0x77, 0x76, 0x8c, 0x7c, 0xa9, 0x72, 0x13, 0xc0, 0xce, 0x9b, 0x4f,
|
||||||
0x63, 0xec, 0x8e, 0x37, 0xff, 0x6d, 0x20, 0xaf, 0x7c, 0x69, 0x3d, 0x9b, 0x6e, 0x7d, 0x23, 0xd1,
|
0x63, 0xec, 0x8e, 0x37, 0xff, 0x6d, 0x20, 0xaf, 0x7c, 0x69, 0x3d, 0x9b, 0x6e, 0x7d, 0x23, 0xd1,
|
||||||
0xc4, 0xf6, 0xd2, 0x7b, 0xfa, 0x47, 0xf5, 0x9f, 0x77, 0x2d, 0xf3, 0xd6, 0x3b, 0x9e, 0x03, 0xfd,
|
0xc4, 0xf6, 0xd2, 0x7b, 0xfa, 0x47, 0xf5, 0x9f, 0x77, 0x2d, 0xf3, 0xd6, 0x3b, 0x9e, 0x03, 0xfd,
|
||||||
0xef, 0x47, 0x9d, 0x72, 0x25, 0x78, 0xfd, 0x20, 0x31, 0xda, 0x71, 0x00, 0x41, 0x4c, 0x94, 0x0a,
|
0xef, 0x47, 0x9d, 0x72, 0x25, 0x78, 0xfd, 0x20, 0x31, 0xda, 0x71, 0x00, 0x41, 0x4c, 0x94, 0x0a,
|
||||||
0xd3, 0x71, 0xe2, 0x1d, 0xc2, 0xa9, 0xa6, 0xbf, 0x88, 0x41, 0x3a, 0xb5, 0xd0, 0xfa, 0xbc, 0x03,
|
0xd3, 0x71, 0xe2, 0x1d, 0xc2, 0xa9, 0xa6, 0xbf, 0x88, 0x41, 0x3a, 0xb5, 0xd0, 0xfa, 0xbc, 0x03,
|
||||||
0x88, 0x4d, 0xd7, 0x50, 0x1a, 0x82, 0x39, 0xe4, 0xd0, 0xa3, 0xb0, 0xff, 0x31, 0xb0, 0x2e, 0x41,
|
0x88, 0x4d, 0xd7, 0x50, 0x1a, 0x82, 0x39, 0xe4, 0xd0, 0xa3, 0xb0, 0xff, 0x31, 0xb0, 0x2e, 0x41,
|
||||||
0x40, 0x70, 0x7c, 0x46, 0x6f, 0x5f, 0xfd, 0xbf, 0x2b, 0xb7, 0xc8, 0x93, 0xb0, 0xff, 0xe0, 0xe7,
|
0x40, 0x70, 0x7c, 0x46, 0x6f, 0x5f, 0xfd, 0xbf, 0x2b, 0xb7, 0xc8, 0x93, 0xb0, 0xff, 0xe0, 0xe7,
|
||||||
0x38, 0xfd, 0xea, 0xbb, 0x4f, 0x0e, 0x44, 0x9e, 0x06, 0x75, 0x3e, 0xec, 0xbf, 0x63, 0x68, 0x4d,
|
0x38, 0xfd, 0xea, 0xbb, 0x4f, 0x0e, 0x44, 0x9e, 0x06, 0x75, 0x3e, 0xec, 0xbf, 0x63, 0x68, 0x4d,
|
||||||
0xf7, 0x72, 0xfe, 0xae, 0x6f, 0xa5, 0x7f, 0x8e, 0x76, 0x25, 0xf1, 0x87, 0x53, 0xaf, 0x49, 0x40,
|
0xf7, 0x72, 0xfe, 0xae, 0x6f, 0xa5, 0x7f, 0x8e, 0x76, 0x25, 0xf1, 0x87, 0x53, 0xaf, 0x49, 0x40,
|
||||||
0xd8, 0x08, 0x9d, 0xcd, 0x30, 0x77, 0xe8, 0x6d, 0x4c, 0x14, 0xd2, 0x37, 0x3c, 0x88, 0x52, 0xd2,
|
0xd8, 0x08, 0x9d, 0xcd, 0x30, 0x77, 0xe8, 0x6d, 0x4c, 0x14, 0xd2, 0x37, 0x3c, 0x88, 0x52, 0xd2,
|
||||||
0x21, 0x98, 0x39, 0x41, 0xf8, 0x26, 0xc0, 0x7f, 0x43, 0x78, 0x39, 0x11, 0x4c, 0xf2, 0x14, 0x80,
|
0x21, 0x98, 0x39, 0x41, 0xf8, 0x26, 0xc0, 0x7f, 0x43, 0x78, 0x39, 0x11, 0x4c, 0xf2, 0x14, 0x80,
|
||||||
0xb8, 0x06, 0x6f, 0xfd, 0x0c, 0xde, 0x7c, 0x0a, 0xf0, 0x68, 0x04, 0xcc, 0x1e, 0x3e, 0xea, 0x5d,
|
0xb8, 0x06, 0x6f, 0xfd, 0x0c, 0xde, 0x7c, 0x0a, 0xf0, 0x68, 0x04, 0xcc, 0x1e, 0x3e, 0xea, 0x5d,
|
||||||
0xbf, 0x61, 0xfb, 0xc2, 0x3d, 0x6f, 0x5c, 0xeb, 0xa9, 0xf5, 0x5f, 0x8f, 0x5a, 0x26, 0xd1, 0x8a,
|
0xbf, 0x61, 0xfb, 0xc2, 0x3d, 0x6f, 0x5c, 0xeb, 0xa9, 0xf5, 0x5f, 0x8f, 0x5a, 0x26, 0xd1, 0x8a,
|
||||||
0x8f, 0xbb, 0x6f, 0x2e, 0xa1, 0xce, 0x87, 0xdd, 0x37, 0xf6, 0xf4, 0xe6, 0x7a, 0xf8, 0x4a, 0xdf,
|
0x8f, 0xbb, 0x6f, 0x2e, 0xa1, 0xce, 0x87, 0xdd, 0x37, 0xf6, 0xf4, 0xe6, 0x7a, 0xf8, 0x4a, 0xdf,
|
||||||
0x68, 0x36, 0x01, 0xd1, 0x75, 0x26, 0x6a, 0xf9, 0xc7, 0x50, 0x6e, 0x2f, 0xd8, 0x06, 0xda, 0x85,
|
0x68, 0x36, 0x01, 0xd1, 0x75, 0x26, 0x6a, 0xf9, 0xc7, 0x50, 0x6e, 0x2f, 0xd8, 0x06, 0xda, 0x85,
|
||||||
0xf1, 0x5d, 0x3b, 0xf9, 0xfe, 0x1f, 0x7e, 0x95, 0x3f, 0xbe, 0xe6, 0xb3, 0x4c, 0xee, 0x7f, 0x13,
|
0xf1, 0x5d, 0x3b, 0xf9, 0xfe, 0x1f, 0x7e, 0x95, 0x3f, 0xbe, 0xe6, 0xb3, 0x4c, 0xee, 0x7f, 0x13,
|
||||||
0x4c, 0x80, 0xb2, 0x01, 0x2a, 0x7d, 0x62, 0x1b, 0x88, 0x69, 0x20, 0x36, 0x00, 0x69, 0x80, 0x0d,
|
0x4c, 0x80, 0xb2, 0x01, 0x2a, 0x7d, 0x62, 0x1b, 0x88, 0x69, 0x20, 0x36, 0x00, 0x69, 0x80, 0x0d,
|
||||||
0xc0, 0x86, 0x1d, 0x23, 0x48, 0x86, 0x49, 0x9f, 0x36, 0x99, 0x23, 0x26, 0x40, 0x6c, 0x88, 0x98,
|
0xc0, 0x86, 0x1d, 0x23, 0x48, 0x86, 0x49, 0x9f, 0x36, 0x99, 0x23, 0x26, 0x40, 0x6c, 0x88, 0x98,
|
||||||
0x10, 0xe2, 0x46, 0x22, 0xd8, 0xc8, 0x36, 0x18, 0x5c, 0x05, 0x62, 0xf1, 0x33, 0xf4, 0x9f, 0xb2,
|
0x10, 0xe2, 0x46, 0x22, 0xd8, 0xc8, 0x36, 0x18, 0x5c, 0x05, 0x62, 0xf1, 0x33, 0xf4, 0x9f, 0xb2,
|
||||||
0x2c, 0xba, 0xe1, 0xa9, 0x4f, 0x97, 0xc6, 0xd6, 0x7f, 0x3d, 0x92, 0x97, 0x3e, 0x37, 0xc0, 0x12,
|
0x2c, 0xba, 0xe1, 0xa9, 0x4f, 0x97, 0xc6, 0xd6, 0x7f, 0x3d, 0x92, 0x97, 0x3e, 0x37, 0xc0, 0x12,
|
||||||
0x20, 0xaf, 0x6f, 0xbf, 0x90, 0x8d, 0x77, 0x4c, 0xf3, 0xd3, 0x4b, 0xbb, 0xbd, 0xc2, 0x90, 0x7f,
|
0x20, 0xaf, 0x6f, 0xbf, 0x90, 0x8d, 0x77, 0x4c, 0xf3, 0xd3, 0x4b, 0xbb, 0xbd, 0xc2, 0x90, 0x7f,
|
||||||
0x79, 0xef, 0x4a, 0xef, 0x6a, 0x27, 0xa3, 0x21, 0xb3, 0x1c, 0x55, 0xfa, 0x00, 0x64, 0x96, 0x23,
|
0x79, 0xef, 0x4a, 0xef, 0x6a, 0x27, 0xa3, 0x21, 0xb3, 0x1c, 0x55, 0xfa, 0x00, 0x64, 0x96, 0x23,
|
||||||
0xa6, 0x86, 0x92, 0x64, 0xd3, 0x87, 0xee, 0xf9, 0x1b, 0x0e, 0xbc, 0xf0, 0x0a, 0xc3, 0x83, 0x73,
|
0xa6, 0x86, 0x92, 0x64, 0xd3, 0x87, 0xee, 0xf9, 0x1b, 0x0e, 0xbc, 0xf0, 0x0a, 0xc3, 0x83, 0x73,
|
||||||
0x44, 0xf3, 0x7b, 0xc0, 0xd4, 0x11, 0xdb, 0x48, 0x47, 0x80, 0x48, 0x08, 0xd2, 0x21, 0x6c, 0x4b,
|
0x44, 0xf3, 0x7b, 0xc0, 0xd4, 0x11, 0xdb, 0x48, 0x47, 0x80, 0x48, 0x08, 0xd2, 0x21, 0x6c, 0x4b,
|
||||||
0xe0, 0xce, 0xbf, 0xc3, 0xb6, 0xf0, 0x26, 0x15, 0xde, 0x86, 0xe9, 0x77, 0x8d, 0xf6, 0x50, 0x0a,
|
0xe0, 0xce, 0xbf, 0xc3, 0xb6, 0xf0, 0x26, 0x15, 0xde, 0x86, 0xe9, 0x77, 0x8d, 0xf6, 0x50, 0x0a,
|
||||||
0xd6, 0x5c, 0x08, 0x19, 0x8d, 0x52, 0x90, 0xf5, 0x39, 0x63, 0xf5, 0x68, 0xfd, 0x36, 0x80, 0x2d,
|
0xd6, 0x5c, 0x08, 0x19, 0x8d, 0x52, 0x90, 0xf5, 0x39, 0x63, 0xf5, 0x68, 0xfd, 0x36, 0x80, 0x2d,
|
||||||
0x77, 0xcf, 0x2c, 0x05, 0xb2, 0xe1, 0xa6, 0x27, 0x01, 0xd8, 0xf0, 0xab, 0xbd, 0xc3, 0x85, 0x41,
|
0x77, 0xcf, 0x2c, 0x05, 0xb2, 0xe1, 0xa6, 0x27, 0x01, 0xd8, 0xf0, 0xab, 0xbd, 0xc3, 0x85, 0x41,
|
||||||
0xbd, 0x23, 0xdb, 0xe3, 0x23, 0x78, 0xd0, 0xbd, 0x11, 0xba, 0xb7, 0x82, 0xa9, 0x82, 0x6d, 0xa0,
|
0xbd, 0x23, 0xdb, 0xe3, 0x23, 0x78, 0xd0, 0xbd, 0x11, 0xba, 0xb7, 0x82, 0xa9, 0x82, 0x6d, 0xa0,
|
||||||
0x1c, 0x61, 0xdf, 0x53, 0xcf, 0x72, 0xf4, 0x8d, 0xfd, 0xfc, 0xca, 0x15, 0x9a, 0x2b, 0x3e, 0xbd,
|
0x1c, 0x61, 0xdf, 0x53, 0xcf, 0x72, 0xf4, 0x8d, 0xfd, 0xfc, 0xca, 0x15, 0x9a, 0x2b, 0x3e, 0xbd,
|
||||||
0x8e, 0xe5, 0xab, 0x4a, 0x40, 0x08, 0x92, 0x0e, 0xdb, 0x00, 0xd3, 0xe8, 0x10, 0xbe, 0x53, 0xc0,
|
0x8e, 0xe5, 0xab, 0x4a, 0x40, 0x08, 0x92, 0x0e, 0xdb, 0x00, 0xd3, 0xe8, 0x10, 0xbe, 0x53, 0xc0,
|
||||||
0xf6, 0x48, 0x34, 0x76, 0xc2, 0x77, 0xa6, 0x91, 0x1e, 0x40, 0x73, 0xad, 0x44, 0xa3, 0x2a, 0x9b,
|
0xf6, 0x48, 0x34, 0x76, 0xc2, 0x77, 0xa6, 0x91, 0x1e, 0x40, 0x73, 0xad, 0x44, 0xa3, 0x2a, 0x9b,
|
||||||
0x85, 0xe5, 0xa7, 0x03, 0x06, 0xc7, 0x81, 0x62, 0xb7, 0x5c, 0xb0, 0xf7, 0x0b, 0xdd, 0xbf, 0xdf,
|
0x85, 0xe5, 0xa7, 0x03, 0x06, 0xc7, 0x81, 0x62, 0xb7, 0x5c, 0xb0, 0xf7, 0x0b, 0xdd, 0xbf, 0xdf,
|
||||||
0xcc, 0x75, 0x00, 0xfa, 0xf5, 0x3b, 0xce, 0x4f, 0xf2, 0xc6, 0xb5, 0x3d, 0x59, 0x1b, 0x36, 0x3e,
|
0xcc, 0x75, 0x00, 0xfa, 0xf5, 0x3b, 0xce, 0x4f, 0xf2, 0xc6, 0xb5, 0x3d, 0x59, 0x1b, 0x36, 0x3e,
|
||||||
0xdd, 0x37, 0x9a, 0x2d, 0x89, 0x08, 0xe4, 0x4e, 0x41, 0xf5, 0x5d, 0x90, 0x2e, 0xdc, 0x40, 0xd9,
|
0xdd, 0x37, 0x9a, 0x2d, 0x89, 0x08, 0xe4, 0x4e, 0x41, 0xf5, 0x5d, 0x90, 0x2e, 0xdc, 0x40, 0xd9,
|
||||||
0x10, 0x1c, 0xc3, 0x6b, 0x8f, 0xbf, 0xc4, 0x59, 0x1b, 0xa6, 0xd9, 0xf4, 0xc1, 0x8b, 0x29, 0x9d,
|
0x10, 0x1c, 0xc3, 0x6b, 0x8f, 0xbf, 0xc4, 0x59, 0x1b, 0xa6, 0xd9, 0xf4, 0xc1, 0x8b, 0x29, 0x9d,
|
||||||
0xf7, 0x07, 0x78, 0x3d, 0x2b, 0x52, 0x61, 0x52, 0x00, 0x9d, 0x26, 0x74, 0x52, 0xd3, 0x09, 0x96,
|
0xf7, 0x07, 0x78, 0x3d, 0x2b, 0x52, 0x61, 0x52, 0x00, 0x9d, 0x26, 0x74, 0x52, 0xd3, 0x09, 0x96,
|
||||||
0x9e, 0xbe, 0x09, 0xda, 0xda, 0x6b, 0x3d, 0x1b, 0x09, 0x00, 0x09, 0x50, 0x12, 0x02, 0x21, 0xaa,
|
0x9e, 0xbe, 0x09, 0xda, 0xda, 0x6b, 0x3d, 0x1b, 0x09, 0x00, 0x09, 0x50, 0x12, 0x02, 0x21, 0xaa,
|
||||||
0x74, 0x2a, 0xe8, 0xc4, 0x25, 0x5c, 0x87, 0xfe, 0xc1, 0x7e, 0x73, 0xcd, 0x7d, 0x57, 0xad, 0x1c,
|
0x74, 0x2a, 0xe8, 0xc4, 0x25, 0x5c, 0x87, 0xfe, 0xc1, 0x7e, 0x73, 0xcd, 0x7d, 0x57, 0xad, 0x1c,
|
||||||
0x68, 0x26, 0x6c, 0x77, 0xc3, 0xcd, 0x4f, 0x03, 0xd0, 0xbf, 0xba, 0xbb, 0x94, 0xef, 0x33, 0x9f,
|
0x68, 0x26, 0x6c, 0x77, 0xc3, 0xcd, 0x4f, 0x03, 0xd0, 0xbf, 0xba, 0xbb, 0x94, 0xef, 0x33, 0x9f,
|
||||||
0xd7, 0x9e, 0x83, 0xe0, 0x43, 0x7e, 0x2d, 0xf8, 0xa7, 0xa0, 0x4c, 0x2d, 0x71, 0x44, 0x25, 0x44,
|
0xd7, 0x9e, 0x83, 0xe0, 0x43, 0x7e, 0x2d, 0xf8, 0xa7, 0xa0, 0x4c, 0x2d, 0x71, 0x44, 0x25, 0x44,
|
||||||
0x0b, 0x55, 0xa4, 0x72, 0x80, 0xb5, 0xdb, 0xce, 0x64, 0x60, 0xe3, 0xaf, 0x22, 0xda, 0x4f, 0x4f,
|
0x0b, 0x55, 0xa4, 0x72, 0x80, 0xb5, 0xdb, 0xce, 0x64, 0x60, 0xe3, 0xaf, 0x22, 0xda, 0x4f, 0x4f,
|
||||||
0x51, 0x3a, 0x9c, 0xd9, 0xb4, 0x9d, 0xb7, 0x95, 0x3f, 0x52, 0x87, 0xb6, 0x16, 0x6b, 0x63, 0xac,
|
0x51, 0x3a, 0x9c, 0xd9, 0xb4, 0x9d, 0xb7, 0x95, 0x3f, 0x52, 0x87, 0xb6, 0x16, 0x6b, 0x63, 0xac,
|
||||||
0x89, 0x40, 0x2c, 0x5a, 0x83, 0xd6, 0xd2, 0xfe, 0x3f, 0x3a, 0x02, 0x45, 0xcb, 0xf1, 0xd3, 0x40,
|
0x89, 0x40, 0x2c, 0x5a, 0x83, 0xd6, 0xd2, 0xfe, 0x3f, 0x3a, 0x02, 0x45, 0xcb, 0xf1, 0xd3, 0x40,
|
||||||
0xe1, 0x79, 0xe0, 0x29, 0x08, 0xc0, 0xd1, 0xe0, 0xfb, 0x9c, 0x35, 0xb6, 0x6e, 0xe6, 0x93, 0xc0,
|
0xe1, 0x79, 0xe0, 0x29, 0x08, 0xc0, 0xd1, 0xe0, 0xfb, 0x9c, 0x35, 0xb6, 0x6e, 0xe6, 0x93, 0xc0,
|
||||||
0x0e, 0x00, 0x07, 0x60, 0xe7, 0xb5, 0x3d, 0xae, 0x93, 0x91, 0x4f, 0x2d, 0xdb, 0x50, 0xb8, 0x14,
|
0x0e, 0x00, 0x07, 0x60, 0xe7, 0xb5, 0x3d, 0xae, 0x93, 0x91, 0x4f, 0x2d, 0xdb, 0x50, 0xb8, 0x14,
|
||||||
0xad, 0xc1, 0x2f, 0xa1, 0x4a, 0xef, 0x47, 0x39, 0x99, 0xc4, 0x61, 0x89, 0xd1, 0x8e, 0xe5, 0xf0,
|
0xad, 0xc1, 0x2f, 0xa1, 0x4a, 0xef, 0x47, 0x39, 0x99, 0xc4, 0x61, 0x89, 0xd1, 0x8e, 0xe5, 0xf0,
|
||||||
0xee, 0x37, 0xc9, 0x98, 0x43, 0xac, 0x7e, 0xcf, 0x2f, 0x93, 0xe9, 0x1e, 0x02, 0x13, 0x82, 0x8d,
|
0xee, 0x37, 0xc9, 0x98, 0x43, 0xac, 0x7e, 0xcf, 0x2f, 0x93, 0xe9, 0x1e, 0x02, 0x13, 0x82, 0x8d,
|
||||||
0x41, 0xa2, 0x64, 0x10, 0x81, 0x8d, 0x11, 0x1b, 0xa7, 0xd9, 0xbe, 0x63, 0xd8, 0x88, 0xe9, 0xa3,
|
0x41, 0xa2, 0x64, 0x10, 0x81, 0x8d, 0x11, 0x1b, 0xa7, 0xd9, 0xbe, 0x63, 0xd8, 0x88, 0xe9, 0xa3,
|
||||||
0xd3, 0x3c, 0xf3, 0xc0, 0x8b, 0x3c, 0x75, 0xff, 0xf3, 0xbc, 0xf1, 0xcc, 0x1e, 0x2a, 0xb3, 0x0b,
|
0xd3, 0x3c, 0xf3, 0xc0, 0x8b, 0x3c, 0x75, 0xff, 0xf3, 0xbc, 0xf1, 0xcc, 0x1e, 0x2a, 0xb3, 0x0b,
|
||||||
0x14, 0xba, 0x1c, 0x72, 0x79, 0x85, 0x52, 0x06, 0x4d, 0x8c, 0x22, 0x42, 0x49, 0x9c, 0xac, 0x23,
|
0x14, 0xba, 0x1c, 0x72, 0x79, 0x85, 0x52, 0x06, 0x4d, 0x8c, 0x22, 0x42, 0x49, 0x9c, 0xac, 0x23,
|
||||||
0x21, 0xd8, 0x28, 0xd9, 0xa7, 0x32, 0x0e, 0x8b, 0x53, 0x60, 0x54, 0x33, 0x7d, 0xf9, 0x5a, 0x8b,
|
0x21, 0xd8, 0x28, 0xd9, 0xa7, 0x32, 0x0e, 0x8b, 0x53, 0x60, 0x54, 0x33, 0x7d, 0xf9, 0x5a, 0x8b,
|
||||||
0xda, 0xdc, 0x7d, 0xf6, 0x7d, 0xf7, 0xbe, 0x7e, 0x2c, 0x74, 0x13, 0x6d, 0x14, 0x7c, 0xbf, 0xcb,
|
0xda, 0xdc, 0x7d, 0xf6, 0x7d, 0xf7, 0xbe, 0x7e, 0x2c, 0x74, 0x13, 0x6d, 0x14, 0x7c, 0xbf, 0xcb,
|
||||||
0xfe, 0x8e, 0xce, 0x38, 0x88, 0x38, 0x90, 0x29, 0x81, 0xbf, 0x0c, 0x69, 0x6a, 0x43, 0x2c, 0x28,
|
0xfe, 0x8e, 0xce, 0x38, 0x88, 0x38, 0x90, 0x29, 0x81, 0xbf, 0x0c, 0x69, 0x6a, 0x43, 0x2c, 0x28,
|
||||||
0x85, 0x69, 0xcc, 0xb3, 0x62, 0xec, 0x42, 0xba, 0x4b, 0x43, 0xd8, 0xb8, 0xb6, 0x24, 0xd9, 0xc9,
|
0x85, 0x69, 0xcc, 0xb3, 0x62, 0xec, 0x42, 0xba, 0x4b, 0x43, 0xd8, 0xb8, 0xb6, 0x24, 0xd9, 0xc9,
|
||||||
0x92, 0x70, 0x6a, 0x96, 0x84, 0x54, 0xad, 0x85, 0xb9, 0xa9, 0x05, 0xfe, 0xf5, 0xff, 0x3e, 0xcc,
|
0x92, 0x70, 0x6a, 0x96, 0x84, 0x54, 0xad, 0x85, 0xb9, 0xa9, 0x05, 0xfe, 0xf5, 0xff, 0x3e, 0xcc,
|
||||||
0xe4, 0xbe, 0x37, 0x39, 0x73, 0x4b, 0x0f, 0x5d, 0x3d, 0x1e, 0x8d, 0xd9, 0x79, 0x9e, 0xbb, 0x7f,
|
0xe4, 0xbe, 0x37, 0x39, 0x73, 0x4b, 0x0f, 0x5d, 0x3d, 0x1e, 0x8d, 0xd9, 0x79, 0x9e, 0xbb, 0x7f,
|
||||||
0x1f, 0xe7, 0x7e, 0x64, 0x1b, 0x83, 0x23, 0x7d, 0x2c, 0xcc, 0x87, 0xcc, 0x97, 0x03, 0x72, 0xbe,
|
0x1f, 0xe7, 0x7e, 0x64, 0x1b, 0x83, 0x23, 0x7d, 0x2c, 0xcc, 0x87, 0xcc, 0x97, 0x03, 0x72, 0xbe,
|
||||||
0xd0, 0xdf, 0x2d, 0x29, 0xa0, 0x06, 0x34, 0x8e, 0x23, 0x0b, 0x87, 0x50, 0x19, 0x07, 0x22, 0x01,
|
0xd0, 0xdf, 0x2d, 0x29, 0xa0, 0x06, 0x34, 0x8e, 0x23, 0x0b, 0x87, 0x50, 0x19, 0x07, 0x22, 0x01,
|
||||||
0x23, 0xb8, 0x2e, 0xf8, 0x19, 0xb5, 0x7e, 0xcb, 0xda, 0xbd, 0x97, 0x02, 0xf7, 0xba, 0xcf, 0x7d,
|
0x23, 0xb8, 0x2e, 0xf8, 0x19, 0xb5, 0x7e, 0xcb, 0xda, 0xbd, 0x97, 0x02, 0xf7, 0xba, 0xcf, 0x7d,
|
||||||
0x66, 0x98, 0xfa, 0x3c, 0xeb, 0xfa, 0x46, 0xdc, 0xd3, 0x11, 0x05, 0x4e, 0x1e, 0x95, 0x5b, 0x09,
|
0x66, 0x98, 0xfa, 0x3c, 0xeb, 0xfa, 0x46, 0xdc, 0xd3, 0x11, 0x05, 0x4e, 0x1e, 0x95, 0x5b, 0x09,
|
||||||
0xa6, 0x9e, 0x2c, 0x92, 0x0a, 0x6a, 0x03, 0xcb, 0xea, 0x4d, 0xab, 0x00, 0xc1, 0x5a, 0x83, 0xc2,
|
0xa6, 0x9e, 0x2c, 0x92, 0x0a, 0x6a, 0x03, 0xcb, 0xea, 0x4d, 0xab, 0x00, 0xc1, 0x5a, 0x83, 0xc2,
|
||||||
0x24, 0x7e, 0x83, 0xc5, 0x88, 0x4e, 0xcc, 0x40, 0xe2, 0x0e, 0xda, 0x61, 0x5b, 0x79, 0x43, 0x8c,
|
0x24, 0x7e, 0x83, 0xc5, 0x88, 0x4e, 0xcc, 0x40, 0xe2, 0x0e, 0xda, 0x61, 0x5b, 0x79, 0x43, 0x8c,
|
||||||
0xc5, 0xcf, 0x84, 0xbc, 0xef, 0x23, 0x25, 0x06, 0x4a, 0x7d, 0xf8, 0xc5, 0x65, 0x90, 0x29, 0x24,
|
0xc5, 0xcf, 0x84, 0xbc, 0xef, 0x23, 0x25, 0x06, 0x4a, 0x7d, 0xf8, 0xc5, 0x65, 0x90, 0x29, 0x24,
|
||||||
0x59, 0x4c, 0x37, 0xa8, 0x4e, 0x2f, 0xf2, 0xf0, 0xcf, 0x8e, 0xf1, 0xd0, 0xb3, 0x65, 0x76, 0xef,
|
0x59, 0x4c, 0x37, 0xa8, 0x4e, 0x2f, 0xf2, 0xf0, 0xcf, 0x8e, 0xf1, 0xd0, 0xb3, 0x65, 0x76, 0xef,
|
||||||
0x5b, 0xe4, 0x03, 0x5b, 0x35, 0x9f, 0xba, 0x3c, 0x87, 0x23, 0xb5, 0x54, 0x0e, 0x9b, 0xd8, 0x8e,
|
0x5b, 0xe4, 0x03, 0x5b, 0x35, 0x9f, 0xba, 0x3c, 0x87, 0x23, 0xb5, 0x54, 0x0e, 0x9b, 0xd8, 0x8e,
|
||||||
0x23, 0xe0, 0x28, 0x50, 0x92, 0x90, 0x00, 0xcd, 0x48, 0x5f, 0x2f, 0x17, 0x00, 0xf7, 0xba, 0x5d,
|
0x23, 0xe0, 0x28, 0x50, 0x92, 0x90, 0x00, 0xcd, 0x48, 0x5f, 0x2f, 0x17, 0x00, 0xf7, 0xba, 0x5d,
|
||||||
0xa5, 0x50, 0x3b, 0x9e, 0xfe, 0xb5, 0x7c, 0xa9, 0x88, 0xa0, 0x40, 0xfb, 0xe0, 0x2f, 0x03, 0x53,
|
0xa5, 0x50, 0x3b, 0x9e, 0xfe, 0xb5, 0x7c, 0xa9, 0x88, 0xa0, 0x40, 0xfb, 0xe0, 0x2f, 0x03, 0x53,
|
||||||
0x4b, 0xcd, 0x66, 0xa9, 0x50, 0x00, 0x3a, 0x98, 0x62, 0x71, 0x62, 0x9c, 0xc9, 0x63, 0x53, 0x64,
|
0x4b, 0xcd, 0x66, 0xa9, 0x50, 0x00, 0x3a, 0x98, 0x62, 0x71, 0x62, 0x9c, 0xc9, 0x63, 0x53, 0x64,
|
||||||
0x33, 0x2e, 0x2b, 0x46, 0x06, 0x90, 0xae, 0x21, 0xac, 0x93, 0x49, 0xe7, 0x37, 0x35, 0x12, 0x03,
|
0x33, 0x2e, 0x2b, 0x46, 0x06, 0x90, 0xae, 0x21, 0xac, 0x93, 0x49, 0xe7, 0x37, 0x35, 0x12, 0x03,
|
||||||
0x31, 0xd8, 0x90, 0x7c, 0x3e, 0xa4, 0x70, 0xc6, 0xa9, 0x88, 0x69, 0x60, 0xa2, 0x2a, 0x54, 0x66,
|
0x31, 0xd8, 0x90, 0x7c, 0x3e, 0xa4, 0x70, 0xc6, 0xa9, 0x88, 0x69, 0x60, 0xa2, 0x2a, 0x54, 0x66,
|
||||||
0x70, 0x1c, 0xc3, 0xf4, 0x74, 0x9d, 0xef, 0xde, 0x37, 0xc5, 0x4f, 0x9e, 0xb1, 0x6c, 0x5c, 0x57,
|
0x70, 0x1c, 0xc3, 0xf4, 0x74, 0x9d, 0xef, 0xde, 0x37, 0xc5, 0x4f, 0x9e, 0xb1, 0x6c, 0x5c, 0x57,
|
||||||
0xe4, 0xca, 0x8b, 0x84, 0x4d, 0x2b, 0x0d, 0xd1, 0x62, 0x15, 0xa7, 0x4b, 0x81, 0xf2, 0x40, 0x27,
|
0xe4, 0xca, 0x8b, 0x84, 0x4d, 0x2b, 0x0d, 0xd1, 0x62, 0x15, 0xa7, 0x4b, 0x81, 0xf2, 0x40, 0x27,
|
||||||
0x72, 0x88, 0x23, 0x28, 0x27, 0x2d, 0x71, 0x0c, 0xb8, 0x8e, 0xe0, 0x67, 0xec, 0xfa, 0x7f, 0xf8,
|
0x72, 0x88, 0x23, 0x28, 0x27, 0x2d, 0x71, 0x0c, 0xb8, 0x8e, 0xe0, 0x67, 0xec, 0xfa, 0x7f, 0xf8,
|
||||||
0xf5, 0x95, 0xfd, 0x6e, 0x71, 0x59, 0x84, 0x72, 0xf3, 0x97, 0xb4, 0xa8, 0xb5, 0xe3, 0x83, 0x53,
|
0xf5, 0x95, 0xfd, 0x6e, 0x71, 0x59, 0x84, 0x72, 0xf3, 0x97, 0xb4, 0xa8, 0xb5, 0xe3, 0x83, 0x53,
|
||||||
0x48, 0x9d, 0xd8, 0x74, 0x38, 0xad, 0xa0, 0x94, 0xa0, 0x17, 0x0f, 0xf2, 0xc4, 0x03, 0x0f, 0xf3,
|
0x48, 0x9d, 0xd8, 0x74, 0x38, 0xad, 0xa0, 0x94, 0xa0, 0x17, 0x0f, 0xf2, 0xc4, 0x03, 0x0f, 0xf3,
|
||||||
0x8f, 0x3f, 0x3b, 0xc2, 0xa4, 0x9c, 0x42, 0x57, 0x06, 0xce, 0xec, 0x1e, 0xe7, 0xaa, 0xcb, 0x37,
|
0x8f, 0x3f, 0x3b, 0xc2, 0xa4, 0x9c, 0x42, 0x57, 0x06, 0xce, 0xec, 0x1e, 0xe7, 0xaa, 0xcb, 0x37,
|
||||||
0xd0, 0xbf, 0xe1, 0x5c, 0x6c, 0x26, 0x07, 0x12, 0x27, 0x66, 0x21, 0x21, 0x22, 0x21, 0x22, 0x8d,
|
0xd0, 0xbf, 0xe1, 0x5c, 0x6c, 0x26, 0x07, 0x12, 0x27, 0x66, 0x21, 0x21, 0x22, 0x21, 0x22, 0x8d,
|
||||||
0xc4, 0xf4, 0x62, 0x83, 0x12, 0x83, 0x02, 0x94, 0xeb, 0x51, 0xad, 0x5a, 0xbe, 0xf5, 0xf7, 0x65,
|
0xc4, 0xf4, 0x62, 0x83, 0x12, 0x83, 0x02, 0x94, 0xeb, 0x51, 0xad, 0x5a, 0xbe, 0xf5, 0xf7, 0x65,
|
||||||
0x0e, 0xcd, 0xaf, 0xe1, 0x1b, 0xb7, 0x6d, 0x61, 0x53, 0xdf, 0x01, 0xe2, 0x50, 0x13, 0xeb, 0x6e,
|
0x0e, 0xcd, 0xaf, 0xe1, 0x1b, 0xb7, 0x6d, 0x61, 0x53, 0xdf, 0x01, 0xe2, 0x50, 0x13, 0xeb, 0x6e,
|
||||||
0xa2, 0xb9, 0x37, 0x80, 0xe3, 0x49, 0x1e, 0x91, 0x94, 0xfa, 0x6b, 0x95, 0x24, 0x0c, 0xa5, 0x40,
|
0xa2, 0xb9, 0x37, 0x80, 0xe3, 0x49, 0x1e, 0x91, 0x94, 0xfa, 0x6b, 0x95, 0x24, 0x0c, 0xa5, 0x40,
|
||||||
0x04, 0xc7, 0x01, 0xd7, 0x91, 0x15, 0x6b, 0x86, 0x67, 0xce, 0x70, 0x73, 0xa7, 0x9e, 0xa7, 0x4d,
|
0x04, 0xc7, 0x01, 0xd7, 0x91, 0x15, 0x6b, 0x86, 0x67, 0xce, 0x70, 0x73, 0xa7, 0x9e, 0xa7, 0x4d,
|
||||||
0xf9, 0xd5, 0x73, 0x40, 0x27, 0x84, 0xcd, 0xc9, 0x27, 0x9a, 0x30, 0x01, 0x82, 0x49, 0xf9, 0x8f,
|
0xf9, 0xd5, 0x73, 0x40, 0x27, 0x84, 0xcd, 0xc9, 0x27, 0x9a, 0x30, 0x01, 0x82, 0x49, 0xf9, 0x8f,
|
||||||
0x05, 0xa5, 0xd1, 0xf5, 0xc3, 0xfc, 0xe3, 0xf7, 0x7f, 0xc8, 0x9f, 0x3c, 0xd6, 0x83, 0xb7, 0xf5,
|
0x05, 0xa5, 0xd1, 0xf5, 0xc3, 0xfc, 0xe3, 0xf7, 0x7f, 0xc8, 0x9f, 0x3c, 0xd6, 0x83, 0xb7, 0xf5,
|
||||||
0xcb, 0xac, 0x1e, 0x7b, 0x0f, 0x91, 0x11, 0x1e, 0xdc, 0xf3, 0x1c, 0x6f, 0xfd, 0xcd, 0xb7, 0xf8,
|
0xcb, 0xac, 0x1e, 0x7b, 0x0f, 0x91, 0x11, 0x1e, 0xdc, 0xf3, 0x1c, 0x6f, 0xfd, 0xcd, 0xb7, 0xf8,
|
||||||
0xd2, 0x55, 0x4f, 0xd2, 0xb5, 0xe9, 0xa2, 0x94, 0xb6, 0x47, 0x69, 0x24, 0x22, 0x39, 0xd5, 0x44,
|
0xd2, 0x55, 0x4f, 0xd2, 0xb5, 0xe9, 0xa2, 0x94, 0xb6, 0x47, 0x69, 0x24, 0x22, 0x39, 0xd5, 0x44,
|
||||||
0x7c, 0x04, 0x41, 0xa1, 0x51, 0x1e, 0xfc, 0xdd, 0x3f, 0xcf, 0x12, 0x66, 0xcf, 0x66, 0xfb, 0x6d,
|
0x7c, 0x04, 0x41, 0xa1, 0x51, 0x1e, 0xfc, 0xdd, 0x3f, 0xcf, 0x12, 0x66, 0xcf, 0x66, 0xfb, 0x6d,
|
||||||
0x57, 0xd2, 0xb7, 0xf8, 0x02, 0x8b, 0x0b, 0x45, 0x0a, 0xcb, 0x47, 0xc8, 0xd6, 0xde, 0xc6, 0xb7,
|
0x57, 0xd2, 0xb7, 0xf8, 0x02, 0x8b, 0x0b, 0x45, 0x0a, 0xcb, 0x47, 0xc8, 0xd6, 0xde, 0xc6, 0xb7,
|
||||||
0x71, 0x12, 0xb4, 0x44, 0xb5, 0xfe, 0x17, 0x9d, 0x9a, 0x97, 0x6e, 0x93, 0x2b, 0xa5, 0xd5, 0xf2,
|
0x71, 0x12, 0xb4, 0x44, 0xb5, 0xfe, 0x17, 0x9d, 0x9a, 0x97, 0x6e, 0x93, 0x2b, 0xa5, 0xd5, 0xf2,
|
||||||
0xde, 0x5e, 0xbd, 0xca, 0x9d, 0x7c, 0x65, 0x7c, 0xf8, 0x94, 0xf5, 0x3a, 0x9f, 0x14, 0x3d, 0x1a,
|
0xde, 0x5e, 0xbd, 0xca, 0x9d, 0x7c, 0x65, 0x7c, 0xf8, 0x94, 0xf5, 0x3a, 0x9f, 0x14, 0x3d, 0x1a,
|
||||||
0xb4, 0x9f, 0x94, 0xa5, 0x36, 0x5c, 0xc2, 0x4a, 0x1d, 0x15, 0xf0, 0xec, 0xbf, 0x3e, 0xc3, 0x77,
|
0xb4, 0x9f, 0x94, 0xa5, 0x36, 0x5c, 0xc2, 0x4a, 0x1d, 0x15, 0xf0, 0xec, 0xbf, 0x3e, 0xc3, 0x77,
|
||||||
0x9f, 0x1d, 0xe0, 0xcc, 0xdf, 0xbc, 0x9d, 0xf7, 0xff, 0xda, 0xc7, 0xc9, 0xf9, 0xc9, 0xb7, 0xb5,
|
0x9f, 0x1d, 0xe0, 0xcc, 0xdf, 0xbc, 0x9d, 0xf7, 0xff, 0xda, 0xc7, 0xc9, 0xf9, 0xc9, 0xb7, 0xb5,
|
||||||
0xf0, 0xc3, 0x3c, 0xfe, 0xc0, 0x39, 0x7c, 0xe3, 0xfe, 0x4f, 0xf2, 0xc5, 0x55, 0x47, 0xb1, 0xc5,
|
0xf0, 0xc3, 0x3c, 0xfe, 0xc0, 0x39, 0x7c, 0xe3, 0xfe, 0x4f, 0xf2, 0xc5, 0x55, 0x47, 0xb1, 0xc5,
|
||||||
0x15, 0x2d, 0x66, 0xac, 0x50, 0x88, 0x48, 0x5a, 0x2d, 0x5a, 0x40, 0xa3, 0x5d, 0x87, 0x57, 0x5e,
|
0x15, 0x2d, 0x66, 0xac, 0x50, 0x88, 0x48, 0x5a, 0x2d, 0x5a, 0x40, 0xa3, 0x5d, 0x87, 0x57, 0x5e,
|
||||||
0x9d, 0x67, 0x31, 0x1a, 0xe4, 0xb7, 0x7f, 0xf3, 0x7d, 0x0c, 0x66, 0xea, 0x94, 0xe7, 0x0f, 0x53,
|
0x9d, 0x67, 0x31, 0x1a, 0xe4, 0xb7, 0x7f, 0xf3, 0x7d, 0x0c, 0x66, 0xea, 0x94, 0xe7, 0x0f, 0x53,
|
||||||
0x28, 0xe6, 0x61, 0xef, 0x3f, 0x63, 0xe7, 0xf6, 0x42, 0xb7, 0x86, 0xbe, 0xde, 0xb4, 0x10, 0x63,
|
0x28, 0xe6, 0x61, 0xef, 0x3f, 0x63, 0xe7, 0xf6, 0x42, 0xb7, 0x86, 0xbe, 0xde, 0xb4, 0x10, 0x63,
|
||||||
0xe9, 0xd0, 0x4b, 0x88, 0xef, 0x40, 0xc6, 0x63, 0xb9, 0x8e, 0xca, 0xf3, 0x6b, 0xfd, 0x6e, 0xb7,
|
0xe9, 0xd0, 0x4b, 0x88, 0xef, 0x40, 0xc6, 0x63, 0xb9, 0x8e, 0xca, 0xf3, 0x6b, 0xfd, 0x6e, 0xb7,
|
||||||
0xb5, 0x2d, 0xa2, 0x96, 0x64, 0x60, 0x6c, 0x80, 0x22, 0x22, 0x9e, 0x3a, 0xc4, 0xf7, 0x1f, 0x9a,
|
0xb5, 0x2d, 0xa2, 0x96, 0x64, 0x60, 0x6c, 0x80, 0x22, 0x22, 0x9e, 0x3a, 0xc4, 0xf7, 0x1f, 0x9a,
|
||||||
0x61, 0xe5, 0xa5, 0x9f, 0xe3, 0xe3, 0x9f, 0xf8, 0x38, 0xa7, 0x75, 0xc1, 0x4a, 0x0f, 0x46, 0x5d,
|
0x61, 0xe5, 0xa5, 0x9f, 0xe3, 0xe3, 0x9f, 0xf8, 0x38, 0xa7, 0x75, 0xc1, 0x4a, 0x0f, 0x46, 0x5d,
|
||||||
0x58, 0xdb, 0x0d, 0x57, 0xfc, 0xc6, 0x65, 0x54, 0x2f, 0xde, 0xce, 0xae, 0xa7, 0x5f, 0x45, 0x3b,
|
0x58, 0xdb, 0x0d, 0x57, 0xfc, 0xc6, 0x65, 0x54, 0x2f, 0xde, 0xce, 0xae, 0xa7, 0x5f, 0x45, 0x3b,
|
||||||
0x5e, 0xa2, 0x5d, 0x9c, 0x04, 0x8a, 0xd2, 0x9c, 0x28, 0xcd, 0xc1, 0x63, 0x96, 0xcd, 0x1b, 0x86,
|
0x5e, 0xa2, 0x5d, 0x9c, 0x04, 0x8a, 0xd2, 0x9c, 0x28, 0xcd, 0xc1, 0x63, 0x96, 0xcd, 0x1b, 0x86,
|
||||||
0x38, 0xed, 0xd4, 0x90, 0xf2, 0xde, 0x07, 0xf1, 0x33, 0x35, 0xd4, 0x5b, 0x8f, 0x63, 0x8f, 0xec,
|
0x38, 0xed, 0xd4, 0x90, 0xf2, 0xde, 0x07, 0xf1, 0x33, 0x35, 0xd4, 0x5b, 0x8f, 0x63, 0x8f, 0xec,
|
||||||
0x85, 0x48, 0x43, 0xa1, 0xa7, 0x5d, 0x49, 0xb6, 0x34, 0xd2, 0x04, 0xd5, 0xe6, 0xba, 0x4a, 0xe1,
|
0x85, 0x48, 0x43, 0xa1, 0xa7, 0x5d, 0x49, 0xb6, 0x34, 0xd2, 0x04, 0xd5, 0xe6, 0xba, 0x4a, 0xe1,
|
||||||
0x3a, 0x8e, 0xed, 0x75, 0x91, 0x60, 0xb9, 0x9b, 0xcd, 0x75, 0x14, 0x73, 0x61, 0x9b, 0x5a, 0xd0,
|
0x3a, 0x8e, 0xed, 0x75, 0x91, 0x60, 0xb9, 0x9b, 0xcd, 0x75, 0x14, 0x73, 0x61, 0x9b, 0x5a, 0xd0,
|
||||||
0x0c, 0x9f, 0xf0, 0xe8, 0xd3, 0xfb, 0x31, 0xcb, 0xdf, 0xcb, 0x07, 0x2e, 0xfb, 0x28, 0x6b, 0x7a,
|
0x0c, 0x9f, 0xf0, 0xe8, 0xd3, 0xfb, 0x31, 0xcb, 0xdf, 0xcb, 0x07, 0x2e, 0xfb, 0x28, 0x6b, 0x7a,
|
||||||
0xa0, 0xa8, 0xc0, 0xd3, 0x90, 0x77, 0xe0, 0xde, 0x07, 0xc7, 0x79, 0xee, 0x65, 0x4d, 0x39, 0x7a,
|
0xa0, 0xa8, 0xc0, 0xd3, 0x90, 0x77, 0xe0, 0xde, 0x07, 0xc7, 0x79, 0xee, 0x65, 0x4d, 0x39, 0x7a,
|
||||||
0x2f, 0x7f, 0xff, 0x7a, 0x89, 0xcd, 0x1f, 0xaa, 0x83, 0xca, 0xa4, 0x94, 0x5c, 0x2d, 0x31, 0x0f,
|
0x2f, 0x7f, 0xff, 0x7a, 0x89, 0xcd, 0x1f, 0xaa, 0x83, 0xca, 0xa4, 0x94, 0x5c, 0x2d, 0x31, 0x0f,
|
||||||
0xc7, 0xd1, 0x1c, 0x3c, 0x5c, 0x61, 0x59, 0xaf, 0xe2, 0x8c, 0xd5, 0x75, 0xe2, 0xe3, 0xbb, 0x50,
|
0xc7, 0xd1, 0x1c, 0x3c, 0x5c, 0x61, 0x59, 0xaf, 0xe2, 0x8c, 0xd5, 0x75, 0xe2, 0xe3, 0xbb, 0x50,
|
||||||
0xf6, 0x18, 0xba, 0x72, 0x14, 0xe2, 0xe3, 0xe8, 0x5e, 0x17, 0xfa, 0xbb, 0xc1, 0xd7, 0x69, 0x80,
|
0xf6, 0x18, 0xba, 0x72, 0x14, 0xe2, 0xe3, 0xe8, 0x5e, 0x17, 0xfa, 0xbb, 0xc1, 0xd7, 0x69, 0x80,
|
||||||
0x69, 0x96, 0xc8, 0x27, 0xf0, 0xf5, 0xe6, 0x53, 0x04, 0xa5, 0x9c, 0x6e, 0xd7, 0x71, 0x29, 0x2a,
|
0x69, 0x96, 0xc8, 0x27, 0xf0, 0xf5, 0xe6, 0x53, 0x04, 0xa5, 0x9c, 0x6e, 0xd7, 0x71, 0x29, 0x2a,
|
||||||
0xad, 0x12, 0x1c, 0x22, 0x49, 0xb4, 0x6a, 0x51, 0x03, 0x0b, 0xca, 0x42, 0x5c, 0x63, 0xe7, 0xbe,
|
0xad, 0x12, 0x1c, 0x22, 0x49, 0xb4, 0x6a, 0x51, 0x03, 0x0b, 0xca, 0x42, 0x5c, 0x63, 0xe7, 0xbe,
|
||||||
0x32, 0x83, 0xeb, 0x2f, 0x61, 0xeb, 0xfa, 0x15, 0x94, 0xdc, 0x64, 0x1f, 0x0d, 0xfc, 0xd5, 0xdf,
|
0x32, 0x83, 0xeb, 0x2f, 0x61, 0xeb, 0xfa, 0x15, 0x94, 0xdc, 0x64, 0x1f, 0x0d, 0xfc, 0xd5, 0xdf,
|
||||||
0x1e, 0xe0, 0xc1, 0xfd, 0xfd, 0xbc, 0xbd, 0xff, 0x11, 0xf2, 0xf9, 0x5e, 0xe6, 0xb8, 0x1a, 0x6a,
|
0x1e, 0xe0, 0xc1, 0xfd, 0xfd, 0xbc, 0xbd, 0xff, 0x11, 0xf2, 0xf9, 0x5e, 0xe6, 0xb8, 0x1a, 0x6a,
|
||||||
0x8f, 0x40, 0xd7, 0x8a, 0x14, 0xc0, 0xd2, 0xea, 0x47, 0x04, 0xb2, 0xae, 0x61, 0xb4, 0x77, 0x81,
|
0x8f, 0x40, 0xd7, 0x8a, 0x14, 0xc0, 0xd2, 0xea, 0x47, 0x04, 0xb2, 0xae, 0x61, 0xb4, 0x77, 0x81,
|
||||||
0xa2, 0xaa, 0x53, 0x3e, 0x78, 0x98, 0x4c, 0x21, 0xc6, 0xf1, 0x23, 0x18, 0xea, 0x05, 0xd7, 0x87,
|
0xa2, 0xaa, 0x53, 0x3e, 0x78, 0x98, 0x4c, 0x21, 0xc6, 0xf1, 0x23, 0x18, 0xea, 0x05, 0xd7, 0x87,
|
||||||
0xdc, 0x08, 0x2a, 0xbf, 0x0a, 0x2a, 0x7b, 0x90, 0xda, 0xc1, 0xd4, 0xe7, 0x4e, 0x5e, 0x49, 0x2b,
|
0xdc, 0x08, 0x2a, 0xbf, 0x0a, 0x2a, 0x7b, 0x90, 0xda, 0xc1, 0xd4, 0xe7, 0x4e, 0x5e, 0x49, 0x2b,
|
||||||
0x25, 0xe0, 0x78, 0x59, 0xad, 0xb2, 0x5e, 0xbe, 0xb3, 0x44, 0x45, 0xea, 0x28, 0x5b, 0x69, 0x73,
|
0x25, 0xe0, 0x78, 0x59, 0xad, 0xb2, 0x5e, 0xbe, 0xb3, 0x44, 0x45, 0xea, 0x28, 0x5b, 0x69, 0x73,
|
||||||
0x2c, 0x13, 0x40, 0x65, 0x96, 0xd8, 0x1f, 0xa6, 0x67, 0xf9, 0x5a, 0xfa, 0x7c, 0xc8, 0xa4, 0x7e,
|
0x2c, 0x13, 0x40, 0x65, 0x96, 0xd8, 0x1f, 0xa6, 0x67, 0xf9, 0x5a, 0xfa, 0x7c, 0xc8, 0xa4, 0x7e,
|
||||||
0x77, 0x64, 0x7c, 0x91, 0xe9, 0x28, 0xc7, 0x1f, 0x7d, 0xb6, 0x97, 0xb3, 0x7a, 0x9e, 0xe0, 0xa1,
|
0x77, 0x64, 0x7c, 0x91, 0xe9, 0x28, 0xc7, 0x1f, 0x7d, 0xb6, 0x97, 0xb3, 0x7a, 0x9e, 0xe0, 0xa1,
|
||||||
0x3f, 0xbb, 0x9c, 0x89, 0x60, 0x82, 0xf2, 0x54, 0x39, 0xd5, 0xbe, 0x24, 0x92, 0x77, 0x6c, 0x6c,
|
0x3f, 0xbb, 0x9c, 0x89, 0x60, 0x82, 0xf2, 0x54, 0x39, 0xd5, 0xbe, 0x24, 0x92, 0x77, 0x6c, 0x6c,
|
||||||
0xad, 0xa5, 0x34, 0x90, 0xa7, 0xb4, 0x62, 0x05, 0xe2, 0x17, 0xc9, 0x14, 0x5d, 0x9c, 0x5c, 0x16,
|
0xad, 0xa5, 0x34, 0x90, 0xa7, 0xb4, 0x62, 0x05, 0xe2, 0x17, 0xc9, 0x14, 0x5d, 0x9c, 0x5c, 0x16,
|
||||||
0xb2, 0x03, 0x90, 0x2d, 0xa2, 0xfc, 0x6e, 0xb4, 0x6b, 0x51, 0x32, 0x0f, 0x85, 0xd1, 0xa5, 0x55,
|
0xb2, 0x03, 0x90, 0x2d, 0xa2, 0xfc, 0x6e, 0xb4, 0x6b, 0x51, 0x32, 0x0f, 0x85, 0xd1, 0xa5, 0x55,
|
||||||
0xa8, 0x9c, 0xa4, 0xbe, 0x15, 0x50, 0x26, 0xa8, 0x6b, 0xa9, 0xd5, 0x17, 0x97, 0xcc, 0x30, 0x21,
|
0xa8, 0x9c, 0xa4, 0xbe, 0x15, 0x50, 0x26, 0xa8, 0x6b, 0xa9, 0xd5, 0x17, 0x97, 0xcc, 0x30, 0x21,
|
||||||
0x04, 0x53, 0x60, 0x42, 0xc4, 0x34, 0x40, 0x42, 0x2a, 0x73, 0x65, 0xdc, 0xc2, 0x20, 0x7d, 0xa5,
|
0x04, 0x53, 0x60, 0x42, 0xc4, 0x34, 0x40, 0x42, 0x2a, 0x73, 0x65, 0xdc, 0xc2, 0x20, 0x7d, 0xa5,
|
||||||
0xa1, 0x56, 0xf4, 0x03, 0x78, 0xf8, 0xf1, 0x69, 0x3e, 0xf8, 0x4b, 0x03, 0x0c, 0x74, 0xc1, 0x15,
|
0xa1, 0x56, 0xf4, 0x03, 0x78, 0xf8, 0xf1, 0x69, 0x3e, 0xf8, 0x4b, 0x03, 0x0c, 0x74, 0xc1, 0x15,
|
||||||
0x1f, 0xfb, 0x28, 0x71, 0x58, 0xe5, 0xe0, 0xce, 0x7f, 0x61, 0x7e, 0xa1, 0xd1, 0x2e, 0x6b, 0x91,
|
0x1f, 0xfb, 0x28, 0x71, 0x58, 0xe5, 0xe0, 0xce, 0x7f, 0x61, 0x7e, 0xa1, 0xd1, 0x2e, 0x6b, 0x91,
|
||||||
0x8e, 0x67, 0xb2, 0x4f, 0xc2, 0xb1, 0x34, 0xa2, 0x32, 0x64, 0x8a, 0x79, 0x9c, 0x4c, 0x06, 0x14,
|
0x8e, 0x67, 0xb2, 0x4f, 0xc2, 0xb1, 0x34, 0xa2, 0x32, 0x64, 0x8a, 0x79, 0x9c, 0x4c, 0x06, 0x14,
|
||||||
0x58, 0xa3, 0x98, 0xde, 0x3b, 0xc3, 0x9b, 0x0f, 0xed, 0xe6, 0xc8, 0xa3, 0x4f, 0x20, 0x33, 0x2f,
|
0x58, 0xa3, 0x98, 0xde, 0x3b, 0xc3, 0x9b, 0x0f, 0xed, 0xe6, 0xc8, 0xa3, 0x4f, 0x20, 0x33, 0x2f,
|
||||||
0xbe, 0xb3, 0x1a, 0x97, 0x25, 0x4b, 0x21, 0x4a, 0x63, 0x85, 0xba, 0x6b, 0x6c, 0xa6, 0x62, 0x8d,
|
0xbe, 0xb3, 0x1a, 0x97, 0x25, 0x4b, 0x21, 0x4a, 0x63, 0x85, 0xba, 0x6b, 0x6c, 0xa6, 0x62, 0x8d,
|
||||||
0x45, 0xb9, 0xa9, 0xfa, 0x24, 0x46, 0xa2, 0x69, 0x5a, 0x31, 0x4e, 0x2c, 0x36, 0xac, 0xe0, 0xe7,
|
0x45, 0xb9, 0xa9, 0xfa, 0x24, 0x46, 0xa2, 0x69, 0x5a, 0x31, 0x4e, 0x2c, 0x36, 0xac, 0xe0, 0xe7,
|
||||||
0x4e, 0xc5, 0xc9, 0x16, 0x08, 0x0c, 0xe4, 0x74, 0xe2, 0x77, 0x95, 0xc8, 0x72, 0x60, 0x41, 0x71,
|
0x4e, 0xc5, 0xc9, 0x16, 0x08, 0x0c, 0xe4, 0x74, 0xe2, 0x77, 0x95, 0xc8, 0x72, 0x60, 0x41, 0x71,
|
||||||
0x26, 0x70, 0xdf, 0x7d, 0xf7, 0x21, 0x22, 0xe8, 0x8c, 0x8f, 0xb4, 0xba, 0x26, 0x69, 0xb5, 0x27,
|
0x26, 0x70, 0xdf, 0x7d, 0xf7, 0x21, 0x22, 0xe8, 0x8c, 0x8f, 0xb4, 0xba, 0x26, 0x69, 0xb5, 0x27,
|
||||||
0x36, 0xd5, 0x4c, 0x93, 0x40, 0x4a, 0x12, 0xc9, 0x9a, 0x12, 0x29, 0x01, 0x2b, 0x68, 0xad, 0x28,
|
0x36, 0xd5, 0x4c, 0x93, 0x40, 0x4a, 0x12, 0xc9, 0x9a, 0x12, 0x29, 0x01, 0x2b, 0x68, 0xad, 0x28,
|
||||||
0x0e, 0x67, 0x71, 0x7d, 0x8b, 0x76, 0x84, 0xc6, 0xdc, 0x3c, 0xd9, 0x1e, 0x67, 0x29, 0x02, 0x51,
|
0x0e, 0x67, 0x71, 0x7d, 0x8b, 0x76, 0x84, 0xc6, 0xdc, 0x3c, 0xd9, 0x1e, 0x67, 0x29, 0x02, 0x51,
|
||||||
0x4b, 0xb4, 0x2c, 0x02, 0x46, 0x54, 0x59, 0xa3, 0x33, 0x6f, 0x47, 0x35, 0xb3, 0x74, 0xb2, 0x69,
|
0x4b, 0xb4, 0x2c, 0x02, 0x46, 0x54, 0x59, 0xa3, 0x33, 0x6f, 0x47, 0x35, 0xb3, 0x74, 0xb2, 0x69,
|
||||||
0x40, 0x78, 0x14, 0xe2, 0x29, 0xc4, 0x2e, 0xd0, 0x95, 0x37, 0xe4, 0x3c, 0x4b, 0xb9, 0x11, 0x33,
|
0x40, 0x78, 0x14, 0xe2, 0x29, 0xc4, 0x2e, 0xd0, 0x95, 0x37, 0xe4, 0x3c, 0x4b, 0xb9, 0x11, 0x33,
|
||||||
0x1b, 0x42, 0x35, 0x9d, 0x3e, 0x54, 0xd0, 0x3c, 0xb0, 0xc7, 0x63, 0xeb, 0x65, 0xff, 0x8d, 0x3f,
|
0x1b, 0x42, 0x35, 0x9d, 0x3e, 0x54, 0xd0, 0x3c, 0xb0, 0xc7, 0x63, 0xeb, 0x65, 0xff, 0x8d, 0x3f,
|
||||||
0xf9, 0xe6, 0x9f, 0xa2, 0xbd, 0x2c, 0x6b, 0xce, 0xb9, 0x84, 0xbe, 0x81, 0x7c, 0x42, 0x1c, 0xe9,
|
0xf9, 0xe6, 0x9f, 0xa2, 0xbd, 0x2c, 0x6b, 0xce, 0xb9, 0x84, 0xbe, 0x81, 0x7c, 0x42, 0x1c, 0xe9,
|
||||||
0xa8, 0xd3, 0x5b, 0xd9, 0xbe, 0x03, 0x80, 0x2c, 0x7d, 0x2a, 0x47, 0x98, 0x3f, 0x52, 0xa5, 0x7b,
|
0xa8, 0xd3, 0x5b, 0xd9, 0xbe, 0x03, 0x80, 0x2c, 0x7d, 0x2a, 0x47, 0x98, 0x3f, 0x52, 0xa5, 0x7b,
|
||||||
0xc8, 0xa7, 0xd0, 0xe7, 0xe2, 0x75, 0x79, 0x29, 0xb3, 0x4e, 0x0f, 0xd9, 0xb4, 0xe2, 0x4f, 0xe7,
|
0xc8, 0xa7, 0xd0, 0xe7, 0xe2, 0x75, 0x79, 0x29, 0xb3, 0x4e, 0x0f, 0xd9, 0xb4, 0xe2, 0x4f, 0xe7,
|
||||||
0xcf, 0x7c, 0x1c, 0xe9, 0x29, 0x37, 0x53, 0x1a, 0xde, 0x17, 0x2e, 0x8e, 0xe3, 0x17, 0x7d, 0xa4,
|
0xcf, 0x7c, 0x1c, 0xe9, 0x29, 0x37, 0x53, 0x1a, 0xde, 0x17, 0x2e, 0x8e, 0xe3, 0x17, 0x7d, 0xa4,
|
||||||
0x89, 0x56, 0x35, 0x37, 0x88, 0x11, 0xd1, 0x38, 0x85, 0x2c, 0x03, 0xde, 0x14, 0xe5, 0xfa, 0x34,
|
0x89, 0x56, 0x35, 0x37, 0x88, 0x11, 0xd1, 0x38, 0x85, 0x2c, 0x03, 0xde, 0x14, 0xe5, 0xfa, 0x34,
|
||||||
0x13, 0x01, 0xc4, 0x31, 0x04, 0x59, 0x18, 0xbb, 0x60, 0x88, 0x1f, 0x7f, 0x6b, 0x9c, 0x75, 0x1f,
|
0x13, 0x01, 0xc4, 0x31, 0x04, 0x59, 0x18, 0xbb, 0x60, 0x88, 0x1f, 0x7f, 0x6b, 0x9c, 0x75, 0x1f,
|
||||||
0xb9, 0x0b, 0xaf, 0x6f, 0x03, 0xc5, 0x91, 0xb3, 0xd8, 0x96, 0x7f, 0x91, 0xe2, 0xf0, 0x00, 0x56,
|
0xb9, 0x0b, 0xaf, 0x6f, 0x03, 0xc5, 0x91, 0xb3, 0xd8, 0x96, 0x7f, 0x91, 0xe2, 0xf0, 0x00, 0x56,
|
||||||
0xc2, 0xa5, 0xf5, 0x7a, 0x53, 0x1b, 0x9d, 0x0d, 0x0a, 0xda, 0xc0, 0x94, 0x08, 0xb5, 0xb9, 0x00,
|
0xc2, 0xa5, 0xf5, 0x7a, 0x53, 0x1b, 0x9d, 0x0d, 0x0a, 0xda, 0xc0, 0x94, 0x08, 0xb5, 0xb9, 0x00,
|
||||||
0xbf, 0xe0, 0x24, 0xa6, 0xeb, 0x24, 0xb4, 0x6a, 0x09, 0xd8, 0x4e, 0x2b, 0x6d, 0x6b, 0x64, 0xaa,
|
0xbf, 0xe0, 0x24, 0xa6, 0xeb, 0x24, 0xb4, 0x6a, 0x09, 0xd8, 0x4e, 0x2b, 0x6d, 0x6b, 0x64, 0xaa,
|
||||||
0x5a, 0xb3, 0xe3, 0xfa, 0x8c, 0xb1, 0x17, 0xa6, 0xc3, 0x9a, 0x4c, 0xb4, 0x66, 0x34, 0x4f, 0x2d,
|
0x5a, 0xb3, 0xe3, 0xfa, 0x8c, 0xb1, 0x17, 0xa6, 0xc3, 0x9a, 0x4c, 0xb4, 0x66, 0x34, 0x4f, 0x2d,
|
||||||
0x1d, 0x36, 0x88, 0x88, 0xa2, 0x2c, 0xeb, 0xbb, 0x67, 0x58, 0x19, 0xbf, 0xc4, 0xc2, 0xf4, 0x24,
|
0x1d, 0x36, 0x88, 0x88, 0xa2, 0x2c, 0xeb, 0xbb, 0x67, 0x58, 0x19, 0xbf, 0xc4, 0xc2, 0xf4, 0x24,
|
||||||
0x93, 0xb3, 0xd3, 0xec, 0x9b, 0x8d, 0xa8, 0x14, 0x0b, 0x6c, 0xdd, 0xa6, 0xc9, 0x1e, 0xb1, 0x6c,
|
0x93, 0xb3, 0xd3, 0xec, 0x9b, 0x8d, 0xa8, 0x14, 0x0b, 0x6c, 0xdd, 0xa6, 0xc9, 0x1e, 0xb1, 0x6c,
|
||||||
0x39, 0xf7, 0x26, 0xfa, 0x2a, 0xa3, 0x7c, 0xb8, 0xf7, 0x27, 0x88, 0xe3, 0x22, 0x4d, 0x9e, 0xd5,
|
0x39, 0xf7, 0x26, 0xfa, 0x2a, 0xa3, 0x7c, 0xb8, 0xf7, 0x27, 0x88, 0xe3, 0x22, 0x4d, 0x9e, 0xd5,
|
||||||
0xe4, 0x5e, 0x36, 0x46, 0x59, 0x83, 0xb2, 0x29, 0x53, 0xee, 0x04, 0x63, 0x0d, 0x41, 0x25, 0xa0,
|
0xe4, 0x5e, 0x36, 0x46, 0x59, 0x83, 0xb2, 0x29, 0x53, 0xee, 0x04, 0x63, 0x0d, 0x41, 0x25, 0xa0,
|
||||||
0x3a, 0x55, 0xa7, 0x6b, 0x28, 0x93, 0x36, 0x33, 0x3a, 0xb5, 0x65, 0x9b, 0x36, 0x94, 0x6a, 0x44,
|
0x3a, 0x55, 0xa7, 0x6b, 0x28, 0x93, 0x36, 0x33, 0x3a, 0xb5, 0x65, 0x9b, 0x36, 0x94, 0x6a, 0x44,
|
||||||
0x5a, 0x66, 0x25, 0x22, 0xc7, 0x8e, 0x1f, 0x57, 0x6f, 0x39, 0x9f, 0x1c, 0x2b, 0x69, 0x6b, 0x38,
|
0x5a, 0x66, 0x25, 0x22, 0xc7, 0x8e, 0x1f, 0x57, 0x6f, 0x39, 0x9f, 0x1c, 0x2b, 0x69, 0x6b, 0x38,
|
||||||
0xb7, 0x7b, 0x38, 0x73, 0x16, 0xa2, 0xdb, 0x6d, 0x4d, 0xad, 0x31, 0xa1, 0xa1, 0x3e, 0x5d, 0x27,
|
0xb7, 0x7b, 0x38, 0x73, 0x16, 0xa2, 0xdb, 0x6d, 0x4d, 0xad, 0x31, 0xa1, 0xa1, 0x3e, 0x5d, 0x27,
|
||||||
0x8a, 0x72, 0x0c, 0xac, 0x58, 0xc3, 0x5a, 0xbd, 0x97, 0xc1, 0xa3, 0x0f, 0xe0, 0x4c, 0xbe, 0x40,
|
0x8a, 0x72, 0x0c, 0xac, 0x58, 0xc3, 0x5a, 0xbd, 0x97, 0xc1, 0xa3, 0x0f, 0xe0, 0x4c, 0xbe, 0x40,
|
||||||
0x50, 0x99, 0x60, 0xb6, 0x6a, 0xe9, 0x1a, 0x1d, 0x24, 0xbf, 0x26, 0x4b, 0xed, 0xd8, 0xd3, 0x9c,
|
0x50, 0x99, 0x60, 0xb6, 0x6a, 0xe9, 0x1a, 0x1d, 0x24, 0xbf, 0x26, 0x4b, 0xed, 0xd8, 0xd3, 0x9c,
|
||||||
0x2b, 0xb7, 0xf3, 0x89, 0xff, 0xec, 0x63, 0x95, 0xea, 0x28, 0xb2, 0x4c, 0xda, 0x59, 0x31, 0xed,
|
0x2b, 0xb7, 0xf3, 0x89, 0xff, 0xec, 0x63, 0x95, 0xea, 0x28, 0xb2, 0x4c, 0xda, 0x59, 0x31, 0xed,
|
||||||
0x96, 0x50, 0xab, 0x49, 0x17, 0x23, 0x51, 0x9d, 0x60, 0xbe, 0x4e, 0x65, 0xaa, 0x46, 0xff, 0x68,
|
0x96, 0x50, 0xab, 0x49, 0x17, 0x23, 0x51, 0x9d, 0x60, 0xbe, 0x4e, 0x65, 0xaa, 0x46, 0xff, 0x68,
|
||||||
0x1e, 0xc7, 0x11, 0xc4, 0x9a, 0x25, 0xcd, 0x3c, 0xac, 0x05, 0x2b, 0xa8, 0x40, 0x20, 0x48, 0xca,
|
0x1e, 0xc7, 0x11, 0xc4, 0x9a, 0x25, 0xcd, 0x3c, 0xac, 0x05, 0x2b, 0xa8, 0x40, 0x20, 0x48, 0xca,
|
||||||
0x1e, 0x48, 0x2c, 0xa3, 0x11, 0xe8, 0xc7, 0x36, 0xdc, 0x59, 0xfe, 0xae, 0x5b, 0x9e, 0x10, 0xf1,
|
0x1e, 0x48, 0x2c, 0xa3, 0x11, 0xe8, 0xc7, 0x36, 0xdc, 0x59, 0xfe, 0xae, 0x5b, 0x9e, 0x10, 0xf1,
|
||||||
0xbb, 0xd5, 0x0f, 0xa3, 0x5a, 0x7c, 0xa5, 0x9b, 0xd5, 0x09, 0x95, 0x68, 0xd6, 0x12, 0x56, 0xf0,
|
0xbb, 0xd5, 0x0f, 0xa3, 0x5a, 0x7c, 0xa5, 0x9b, 0xd5, 0x09, 0x95, 0x68, 0xd6, 0x12, 0x56, 0xf0,
|
||||||
0xf3, 0x21, 0xbe, 0x3f, 0x89, 0xcc, 0x1e, 0x46, 0x2a, 0x01, 0x03, 0x51, 0xcc, 0xa0, 0xa7, 0x31,
|
0xf3, 0x21, 0xbe, 0x3f, 0x89, 0xcc, 0x1e, 0x46, 0x2a, 0x01, 0x03, 0x51, 0xcc, 0xa0, 0xa7, 0x31,
|
||||||
0x95, 0x7b, 0x98, 0x9e, 0x18, 0xe1, 0x70, 0xe9, 0x6a, 0x82, 0xc6, 0x0a, 0x4e, 0x73, 0x7f, 0xc4,
|
0x95, 0x7b, 0x98, 0x9e, 0x18, 0xe1, 0x70, 0xe9, 0x6a, 0x82, 0xc6, 0x0a, 0x4e, 0x73, 0x7f, 0xc4,
|
||||||
0x2f, 0xff, 0xa7, 0x59, 0xac, 0xdb, 0x9f, 0x16, 0x53, 0xd2, 0xd1, 0x98, 0x6b, 0x6a, 0xa1, 0xdd,
|
0x2f, 0xff, 0xa7, 0x59, 0xac, 0xdb, 0x9f, 0x16, 0x53, 0xd2, 0xd1, 0x98, 0x6b, 0x6a, 0xa1, 0xdd,
|
||||||
0xd7, 0x52, 0xa6, 0x46, 0xb4, 0x38, 0x4f, 0xa3, 0x96, 0x25, 0x0a, 0x72, 0xf4, 0xae, 0xf0, 0x71,
|
0xd7, 0x52, 0xa6, 0x46, 0xb4, 0x38, 0x4f, 0xa3, 0x96, 0x25, 0x0a, 0x72, 0xf4, 0xae, 0xf0, 0x71,
|
||||||
0xdc, 0x08, 0x31, 0x1d, 0x16, 0xd1, 0xaa, 0x6f, 0x04, 0x8c, 0x4d, 0x8a, 0x2a, 0x63, 0x9b, 0x14,
|
0xdc, 0x08, 0x31, 0x1d, 0x16, 0xd1, 0xaa, 0x6f, 0x04, 0x8c, 0x4d, 0x8a, 0x2a, 0x63, 0x9b, 0x14,
|
||||||
0x1e, 0x63, 0x55, 0x50, 0x6b, 0xb0, 0x1b, 0x94, 0xb8, 0x47, 0x5e, 0x1d, 0x90, 0xd3, 0x2e, 0xaa,
|
0x1e, 0x63, 0x55, 0x50, 0x6b, 0xb0, 0x1b, 0x94, 0xb8, 0x47, 0x5e, 0x1d, 0x90, 0xd3, 0x2e, 0xaa,
|
||||||
0x3e, 0x54, 0x9d, 0x0a, 0x83, 0xde, 0x51, 0xd7, 0x4f, 0x9c, 0x53, 0x81, 0xb5, 0x38, 0x9e, 0xc5,
|
0x3e, 0x54, 0x9d, 0x0a, 0x83, 0xde, 0x51, 0xd7, 0x4f, 0x9c, 0x53, 0x81, 0xb5, 0x38, 0x9e, 0xc5,
|
||||||
0x09, 0xe7, 0xb1, 0x13, 0x0b, 0xb0, 0x00, 0x36, 0x48, 0x42, 0xa1, 0xf8, 0x02, 0x7d, 0x9a, 0xc1,
|
0x09, 0xe7, 0xb1, 0x13, 0x0b, 0xb0, 0x00, 0x36, 0x48, 0x42, 0xa1, 0xf8, 0x02, 0x7d, 0x9a, 0xc1,
|
||||||
0xae, 0xc3, 0x2c, 0x2b, 0x3d, 0xc7, 0xba, 0x89, 0x47, 0x29, 0x8c, 0x81, 0xf5, 0x73, 0x48, 0x1c,
|
0xae, 0xc3, 0x2c, 0x2b, 0x3d, 0xc7, 0xba, 0x89, 0x47, 0x29, 0x8c, 0x81, 0xf5, 0x73, 0x48, 0x1c,
|
||||||
0xa0, 0xb4, 0x4a, 0xc9, 0x66, 0x02, 0x46, 0x68, 0x97, 0xb3, 0xca, 0x54, 0x30, 0x95, 0x59, 0x1a,
|
0xa0, 0xb4, 0x4a, 0xc9, 0x66, 0x02, 0x46, 0x68, 0x97, 0xb3, 0xca, 0x54, 0x30, 0x95, 0x59, 0x1a,
|
||||||
0x0b, 0x31, 0xb1, 0x1e, 0x41, 0xe7, 0x87, 0x28, 0x16, 0xe7, 0x70, 0x64, 0x3e, 0x05, 0x61, 0xdb,
|
0x0b, 0x31, 0xb1, 0x1e, 0x41, 0xe7, 0x87, 0x28, 0x16, 0xe7, 0x70, 0x64, 0x3e, 0x05, 0x61, 0xdb,
|
||||||
0x1e, 0x9d, 0x96, 0xc7, 0x88, 0x45, 0xc5, 0xa9, 0x26, 0x4c, 0x3b, 0xb1, 0x5a, 0x2b, 0xfb, 0x67,
|
0x1e, 0x9d, 0x96, 0xc7, 0x88, 0x45, 0xc5, 0xa9, 0x26, 0x4c, 0x3b, 0xb1, 0x5a, 0x2b, 0xfb, 0x67,
|
||||||
0x66, 0xbd, 0x47, 0x01, 0xdc, 0x8f, 0xfc, 0x78, 0x2f, 0x07, 0x3f, 0x50, 0x9c, 0xae, 0x4e, 0x67,
|
0x66, 0xbd, 0x47, 0x01, 0xdc, 0x8f, 0xfc, 0x78, 0x2f, 0x07, 0x3f, 0x50, 0x9c, 0xae, 0x4e, 0x67,
|
||||||
0x7e, 0xd0, 0xb3, 0xc2, 0x5c, 0x93, 0x78, 0x5a, 0x47, 0x93, 0xd9, 0x2b, 0x40, 0xc1, 0x49, 0xa8,
|
0x7e, 0xd0, 0xb3, 0xc2, 0x5c, 0x93, 0x78, 0x5a, 0x47, 0x93, 0xd9, 0x2b, 0x40, 0xc1, 0x49, 0xa8,
|
||||||
0x79, 0x2c, 0x28, 0xcf, 0x85, 0x42, 0x06, 0x0a, 0x3e, 0xd2, 0xb5, 0x06, 0x72, 0xc3, 0x28, 0x7f,
|
0x79, 0x2c, 0x28, 0xcf, 0x85, 0x42, 0x06, 0x0a, 0x3e, 0xd2, 0xb5, 0x06, 0x72, 0xc3, 0x28, 0x7f,
|
||||||
0x9a, 0x6a, 0xbd, 0x8c, 0xaa, 0x96, 0xc9, 0x14, 0x32, 0x78, 0x05, 0xbf, 0x1d, 0x5a, 0x34, 0x28,
|
0x9a, 0x6a, 0xbd, 0x8c, 0xaa, 0x96, 0xc9, 0x14, 0x32, 0x78, 0x05, 0xbf, 0x1d, 0x5a, 0x34, 0x28,
|
||||||
0x53, 0x87, 0x70, 0x81, 0xb8, 0x3c, 0x4f, 0x6d, 0xc1, 0x26, 0xaf, 0x20, 0x8a, 0xa3, 0x64, 0xf3,
|
0x53, 0x87, 0x70, 0x81, 0xb8, 0x3c, 0x4f, 0x6d, 0xc1, 0x26, 0xaf, 0x20, 0x8a, 0xa3, 0x64, 0xf3,
|
||||||
0x19, 0xdc, 0xe8, 0x28, 0x04, 0x8b, 0xe0, 0x06, 0xed, 0x28, 0xd7, 0xa1, 0xcd, 0x96, 0x6f, 0x44,
|
0x19, 0xdc, 0xe8, 0x28, 0x04, 0x8b, 0xe0, 0x06, 0xed, 0x28, 0xd7, 0xa1, 0xcd, 0x96, 0x6f, 0x44,
|
||||||
0x0a, 0x62, 0x69, 0x2d, 0x1b, 0xc7, 0xd0, 0x68, 0xa8, 0xdd, 0x63, 0x77, 0xcf, 0x3d, 0x05, 0x0a,
|
0x0a, 0x62, 0x69, 0x2d, 0x1b, 0xc7, 0xd0, 0x68, 0xa8, 0xdd, 0x63, 0x77, 0xcf, 0x3d, 0x05, 0x0a,
|
||||||
0x17, 0xe0, 0xc0, 0x53, 0x9e, 0x19, 0xdd, 0xa6, 0xbe, 0x59, 0x9d, 0x0e, 0xaf, 0x29, 0x0c, 0xa6,
|
0x17, 0xe0, 0xc0, 0x53, 0x9e, 0x19, 0xdd, 0xa6, 0xbe, 0x59, 0x9d, 0x0e, 0xaf, 0x29, 0x0c, 0xa6,
|
||||||
0xdc, 0x48, 0x00, 0xe5, 0x42, 0xa6, 0x0b, 0xbc, 0x2e, 0x28, 0x0a, 0x0a, 0x05, 0xda, 0x05, 0x2f,
|
0xdc, 0x48, 0x00, 0xe5, 0x42, 0xa6, 0x0b, 0xbc, 0x2e, 0x28, 0x0a, 0x0a, 0x05, 0xda, 0x05, 0x2f,
|
||||||
0x03, 0x8e, 0x87, 0xf2, 0x8b, 0x94, 0x0f, 0xee, 0xa7, 0x36, 0x35, 0x89, 0x58, 0x8b, 0x97, 0xf7,
|
0x03, 0x8e, 0x87, 0xf2, 0x8b, 0x94, 0x0f, 0xee, 0xa7, 0x36, 0x35, 0x89, 0x58, 0x8b, 0x97, 0xf7,
|
||||||
0x71, 0x32, 0xe0, 0xc6, 0x0a, 0x31, 0x01, 0x71, 0xb5, 0x4a, 0xb0, 0xb0, 0x88, 0x09, 0x2c, 0xb8,
|
0x71, 0x32, 0xe0, 0xc6, 0x0a, 0x31, 0x01, 0x71, 0xb5, 0x4a, 0xb0, 0xb0, 0x88, 0x09, 0x2c, 0xb8,
|
||||||
0x3d, 0x38, 0xb9, 0x33, 0xf0, 0x96, 0xf5, 0xa3, 0x5c, 0x0f, 0x4f, 0x37, 0x50, 0x8d, 0x23, 0x48,
|
0x3d, 0x38, 0xb9, 0x33, 0xf0, 0x96, 0xf5, 0xa3, 0x5c, 0x0f, 0x4f, 0x37, 0x50, 0x8d, 0x23, 0x48,
|
||||||
0x5c, 0x41, 0x7b, 0x89, 0xe1, 0x4b, 0xb3, 0x9f, 0x2c, 0x69, 0xe3, 0xa1, 0xa9, 0x8d, 0x28, 0xe9,
|
0x5c, 0x41, 0x7b, 0x89, 0xe1, 0x4b, 0xb3, 0x9f, 0x2c, 0x69, 0xe3, 0xa1, 0xa9, 0x8d, 0x28, 0xe9,
|
||||||
0x38, 0x11, 0xb7, 0xc3, 0x95, 0xb1, 0xea, 0xf8, 0xf4, 0x9c, 0x73, 0x3f, 0x28, 0x9e, 0xff, 0x5d,
|
0x38, 0x11, 0xb7, 0xc3, 0x95, 0xb1, 0xea, 0xf8, 0xf4, 0x9c, 0x73, 0x3f, 0x28, 0x9e, 0xff, 0x5d,
|
||||||
0x70, 0xdf, 0xf8, 0x0c, 0xac, 0xff, 0xe6, 0x8c, 0xec, 0x1d, 0x5b, 0xb6, 0xbb, 0x7c, 0x34, 0xbe,
|
0x70, 0xdf, 0xf8, 0x0c, 0xac, 0xff, 0xe6, 0x8c, 0xec, 0x1d, 0x5b, 0xb6, 0xbb, 0x7c, 0x34, 0xbe,
|
||||||
0xaf, 0x50, 0x72, 0x3f, 0x96, 0xe8, 0x2e, 0x0d, 0x73, 0xda, 0x49, 0x98, 0xac, 0xe7, 0x26, 0x86,
|
0xaf, 0x50, 0x72, 0x3f, 0x96, 0xe8, 0x2e, 0x0d, 0x73, 0xda, 0x49, 0x98, 0xac, 0xe7, 0x26, 0x86,
|
||||||
0xa9, 0x9c, 0x94, 0x6b, 0x18, 0xd4, 0xe2, 0xeb, 0xd4, 0x26, 0x6b, 0xf4, 0xac, 0x1c, 0x48, 0x6a,
|
0xa9, 0x9c, 0x94, 0x6b, 0x18, 0xd4, 0xe2, 0xeb, 0xd4, 0x26, 0x6b, 0xf4, 0xac, 0x1c, 0x48, 0x6a,
|
||||||
0x0d, 0x2b, 0x44, 0x95, 0x06, 0xc1, 0x6c, 0x05, 0xc1, 0x26, 0x85, 0x4f, 0xbe, 0x17, 0xaf, 0xcb,
|
0x0d, 0x2b, 0x44, 0x95, 0x06, 0xc1, 0x6c, 0x05, 0xc1, 0x26, 0x85, 0x4f, 0xbe, 0x17, 0xaf, 0xcb,
|
||||||
0x07, 0xeb, 0xa2, 0x1c, 0xc1, 0x55, 0x0b, 0x10, 0xd4, 0x92, 0x5e, 0x99, 0x13, 0xa1, 0x33, 0x51,
|
0x07, 0xeb, 0xa2, 0x1c, 0xc1, 0x55, 0x0b, 0x10, 0xd4, 0x92, 0x5e, 0x99, 0x13, 0xa1, 0x33, 0x51,
|
||||||
0x1a, 0xe6, 0x53, 0x1f, 0xb2, 0xcd, 0xca, 0x32, 0x15, 0x20, 0x16, 0x08, 0x15, 0x84, 0xd2, 0x2a,
|
0x1a, 0xe6, 0x53, 0x1f, 0xb2, 0xcd, 0xca, 0x32, 0x15, 0x20, 0x16, 0x08, 0x15, 0x84, 0xd2, 0x2a,
|
||||||
0x6f, 0x8c, 0x81, 0x6a, 0x4d, 0x5e, 0xdc, 0x7e, 0xcf, 0x39, 0x7f, 0x0b, 0x0f, 0x53, 0x7a, 0xdf,
|
0x6f, 0x8c, 0x81, 0x6a, 0x4d, 0x5e, 0xdc, 0x7e, 0xcf, 0x39, 0x7f, 0x0b, 0x0f, 0x53, 0x7a, 0xdf,
|
||||||
0xef, 0xa1, 0xe3, 0xd2, 0x46, 0x00, 0xfe, 0xfa, 0x8b, 0x23, 0x55, 0x13, 0x39, 0x77, 0x94, 0xc7,
|
0xef, 0xa1, 0xe3, 0xd2, 0x46, 0x00, 0xfe, 0xfa, 0x8b, 0x23, 0x55, 0x13, 0x39, 0x77, 0x94, 0xc7,
|
||||||
0x43, 0x51, 0xca, 0x24, 0x91, 0x43, 0x4c, 0x5a, 0x8b, 0x27, 0xe1, 0x33, 0x29, 0xb8, 0xa2, 0xf4,
|
0x43, 0x51, 0xca, 0x24, 0x91, 0x43, 0x4c, 0x5a, 0x8b, 0x27, 0xe1, 0x33, 0x29, 0xb8, 0xa2, 0xf4,
|
||||||
0xf7, 0x08, 0xab, 0x5c, 0x7a, 0x57, 0x14, 0xc9, 0xe4, 0x34, 0x99, 0xbc, 0xc6, 0x2f, 0x38, 0xe4,
|
0xf7, 0x08, 0xab, 0x5c, 0x7a, 0x57, 0x14, 0xc9, 0xe4, 0x34, 0x99, 0xbc, 0xc6, 0x2f, 0x38, 0xe4,
|
||||||
0x7a, 0x5d, 0xf2, 0x25, 0x9f, 0xc2, 0x60, 0x8e, 0x7c, 0x29, 0x87, 0x5f, 0xf0, 0xf0, 0x5c, 0xc1,
|
0x7a, 0x5d, 0xf2, 0x25, 0x9f, 0xc2, 0x60, 0x8e, 0x7c, 0x29, 0x87, 0x5f, 0xf0, 0xf0, 0x5c, 0xc1,
|
||||||
0xf3, 0x02, 0x5c, 0x35, 0x8f, 0x8a, 0x27, 0x51, 0x7a, 0x1e, 0x9d, 0x09, 0x50, 0x6e, 0xd8, 0x06,
|
0xf3, 0x02, 0x5c, 0x35, 0x8f, 0x8a, 0x27, 0x51, 0x7a, 0x1e, 0x9d, 0x09, 0x50, 0x6e, 0xd8, 0x06,
|
||||||
0x61, 0x6d, 0x1b, 0x44, 0xd3, 0x37, 0x8c, 0x41, 0x85, 0xef, 0xd4, 0x46, 0x1c, 0xcb, 0xc4, 0xe4,
|
0x61, 0x6d, 0x1b, 0x44, 0xd3, 0x37, 0x8c, 0x41, 0x85, 0xef, 0xd4, 0x46, 0x1c, 0xcb, 0xc4, 0xe4,
|
||||||
0x94, 0xfb, 0xad, 0xef, 0x1d, 0x7f, 0x38, 0xde, 0xf7, 0xfb, 0xb0, 0xea, 0xb7, 0xbe, 0x83, 0xde,
|
0x94, 0xfb, 0xad, 0xef, 0x1d, 0x7f, 0x38, 0xde, 0xf7, 0xfb, 0xb0, 0xea, 0xb7, 0xbe, 0x83, 0xde,
|
||||||
0x78, 0xcb, 0x6e, 0x0e, 0xff, 0x0f, 0xf8, 0x32, 0xcf, 0x33, 0x7b, 0x48, 0x76, 0x57, 0xa7, 0xed,
|
0x78, 0xcb, 0x6e, 0x0e, 0xff, 0x0f, 0xf8, 0x32, 0xcf, 0x33, 0x7b, 0x48, 0x76, 0x57, 0xa7, 0xed,
|
||||||
0x2d, 0x61, 0x25, 0x4a, 0x5e, 0x0b, 0x48, 0xda, 0x50, 0xb0, 0x71, 0xaa, 0x6a, 0xb3, 0xa4, 0xbd,
|
0x2d, 0x61, 0x25, 0x4a, 0x5e, 0x0b, 0x48, 0xda, 0x50, 0xb0, 0x71, 0xaa, 0x6a, 0xb3, 0xa4, 0xbd,
|
||||||
0x03, 0xe0, 0xe5, 0x55, 0x0b, 0x18, 0x12, 0xe1, 0xb8, 0x09, 0x81, 0x75, 0x3d, 0xd0, 0xda, 0xa2,
|
0x03, 0xe0, 0xe5, 0x55, 0x0b, 0x18, 0x12, 0xe1, 0xb8, 0x09, 0x81, 0x75, 0x3d, 0xd0, 0xda, 0xa2,
|
||||||
0x74, 0x84, 0xce, 0x04, 0xe9, 0x08, 0x51, 0x5e, 0x84, 0x72, 0x62, 0x50, 0x69, 0xeb, 0xa8, 0xf3,
|
0x74, 0x84, 0xce, 0x04, 0xe9, 0x08, 0x51, 0x5e, 0x84, 0x72, 0x62, 0x50, 0x69, 0xeb, 0xa8, 0xf3,
|
||||||
0xb0, 0x3a, 0x41, 0xd8, 0x14, 0x44, 0xa0, 0x20, 0xb0, 0x2d, 0xdf, 0x30, 0x86, 0x78, 0x66, 0xce,
|
0xb0, 0x3a, 0x41, 0xd8, 0x14, 0x44, 0xa0, 0x20, 0xb0, 0x2d, 0xdf, 0x30, 0x86, 0x78, 0x66, 0xce,
|
||||||
0xfd, 0xf1, 0xa6, 0x1d, 0xe5, 0x1f, 0x01, 0x34, 0x4a, 0x1b, 0xda, 0x2d, 0xd3, 0x85, 0xb5, 0xbf,
|
0xfd, 0xf1, 0xa6, 0x1d, 0xe5, 0x1f, 0x01, 0x34, 0x4a, 0x1b, 0xda, 0x2d, 0xd3, 0x85, 0xb5, 0xbf,
|
||||||
0x04, 0xc0, 0xd6, 0x3f, 0x3e, 0x5e, 0xaf, 0xcd, 0x98, 0x3f, 0x9f, 0x3f, 0x12, 0x3f, 0x91, 0x24,
|
0x04, 0xc0, 0xd6, 0x3f, 0x3e, 0x5e, 0xaf, 0xcd, 0x98, 0x3f, 0x9f, 0x3f, 0x12, 0x3f, 0x91, 0x24,
|
||||||
0xb3, 0xb8, 0x0d, 0xa6, 0xd9, 0xbb, 0x6a, 0x6a, 0x47, 0xe2, 0x0e, 0x60, 0x51, 0x5b, 0x63, 0x36,
|
0xb3, 0xb8, 0x0d, 0xa6, 0xd9, 0xbb, 0x6a, 0x6a, 0x47, 0xe2, 0x0e, 0x60, 0x51, 0x5b, 0x63, 0x36,
|
||||||
0x4c, 0xb5, 0x16, 0xb6, 0xe7, 0x49, 0x94, 0x24, 0x47, 0x96, 0x1e, 0x8c, 0xb4, 0xd6, 0x32, 0x4b,
|
0x4c, 0xb5, 0x16, 0xb6, 0xe7, 0x49, 0x94, 0x24, 0x47, 0x96, 0x1e, 0x8c, 0xb4, 0xd6, 0x32, 0x4b,
|
||||||
0x5a, 0x4b, 0x88, 0x4d, 0x4c, 0xa9, 0xa1, 0x20, 0x68, 0x9b, 0x94, 0xb5, 0x50, 0x5e, 0xe4, 0xb5,
|
0x5a, 0x4b, 0x88, 0x4d, 0x4c, 0xa9, 0xa1, 0x20, 0x68, 0x9b, 0x94, 0xb5, 0x50, 0x5e, 0xe4, 0xb5,
|
||||||
0xd7, 0x0f, 0x9e, 0x72, 0x2d, 0xc0, 0xae, 0xdf, 0x83, 0x4d, 0xb7, 0xbe, 0xde, 0x06, 0xb2, 0xf1,
|
0xd7, 0x0f, 0x9e, 0x72, 0x2d, 0xc0, 0xae, 0xdf, 0x83, 0x4d, 0xb7, 0xbe, 0xde, 0x06, 0xb2, 0xf1,
|
||||||
0xc6, 0x47, 0xd9, 0x7d, 0x73, 0xd2, 0x43, 0x3d, 0xe3, 0x96, 0xb9, 0xb7, 0x83, 0xb2, 0xbd, 0x6e,
|
0xc6, 0x47, 0xd9, 0x7d, 0x73, 0xd2, 0x43, 0x3d, 0xe3, 0x96, 0xb9, 0xb7, 0x83, 0xb2, 0xbd, 0x6e,
|
||||||
0xfe, 0xed, 0x70, 0x4e, 0xa9, 0x64, 0x23, 0x31, 0xa6, 0xad, 0x11, 0x1b, 0x2d, 0x05, 0x61, 0x3b,
|
0xfe, 0xed, 0x70, 0x4e, 0xa9, 0x64, 0x23, 0x31, 0xa6, 0xad, 0x11, 0x1b, 0x2d, 0x05, 0x61, 0x3b,
|
||||||
0xcc, 0xae, 0x25, 0x64, 0xe7, 0xf7, 0x71, 0x87, 0x69, 0x46, 0x2d, 0x8d, 0x4a, 0x6b, 0x4e, 0xc7,
|
0xcc, 0xae, 0x25, 0x64, 0xe7, 0xf7, 0x71, 0x87, 0x69, 0x46, 0x2d, 0x8d, 0x4a, 0x6b, 0x4e, 0xc7,
|
||||||
0xb0, 0x36, 0x99, 0x17, 0x5a, 0x54, 0xa0, 0xa0, 0x21, 0x09, 0xa0, 0x34, 0xad, 0xd4, 0xeb, 0x32,
|
0xb0, 0x36, 0x99, 0x17, 0x5a, 0x54, 0xa0, 0xa0, 0x21, 0x09, 0xa0, 0x34, 0xad, 0xd4, 0xeb, 0x32,
|
||||||
0xf9, 0xd6, 0x78, 0xee, 0x77, 0x2e, 0xfd, 0xb3, 0x3d, 0x0b, 0x00, 0xa5, 0x8f, 0xde, 0xc6, 0x3b,
|
0xf9, 0xd6, 0x78, 0xee, 0x77, 0x2e, 0xfd, 0xb3, 0x3d, 0x0b, 0x00, 0xa5, 0x8f, 0xde, 0xc6, 0x3b,
|
||||||
0x5e, 0x2b, 0x6c, 0xbc, 0x63, 0x9a, 0x97, 0x6f, 0x5e, 0x05, 0xc0, 0xaa, 0x6b, 0x7f, 0xfd, 0x99,
|
0x5e, 0x2b, 0x6c, 0xbc, 0x63, 0x9a, 0x97, 0x6f, 0x5e, 0x05, 0xc0, 0xaa, 0x6b, 0x7f, 0xfd, 0x99,
|
||||||
0xea, 0xb4, 0x7c, 0xaa, 0x32, 0x11, 0xc6, 0x09, 0x1d, 0x6f, 0x6e, 0xfc, 0xef, 0x18, 0x9d, 0xfe,
|
0xea, 0xb4, 0x7c, 0xaa, 0x32, 0x11, 0xc6, 0x09, 0x1d, 0x6f, 0x6e, 0xfc, 0xef, 0x18, 0x9d, 0xfe,
|
||||||
0xf4, 0x8e, 0xef, 0x92, 0x43, 0x69, 0x1f, 0x4c, 0xdc, 0x36, 0xa9, 0xe6, 0x41, 0x45, 0x92, 0x80,
|
0xf4, 0x8e, 0xef, 0x92, 0x43, 0x69, 0x1f, 0x4c, 0xdc, 0x36, 0xa9, 0xe6, 0x41, 0x45, 0x92, 0x80,
|
||||||
0xa8, 0xb7, 0x41, 0x00, 0x04, 0x81, 0xcc, 0x1f, 0x3a, 0x9a, 0xfb, 0x83, 0xf3, 0xbe, 0x31, 0xf3,
|
0xa8, 0xb7, 0x41, 0x00, 0x04, 0x81, 0xcc, 0x1f, 0x3a, 0x9a, 0xfb, 0x83, 0xf3, 0xbe, 0x31, 0xf3,
|
||||||
0xfc, 0xee, 0x1b, 0xfa, 0x00, 0x38, 0xf5, 0xa3, 0x5f, 0x6c, 0x01, 0x71, 0x3a, 0x69, 0xe4, 0x9f,
|
0xfc, 0xee, 0x1b, 0xfa, 0x00, 0x38, 0xf5, 0xa3, 0x5f, 0x6c, 0x01, 0x71, 0x3a, 0x69, 0xe4, 0x9f,
|
||||||
0x3e, 0x3e, 0xcf, 0xce, 0xeb, 0x96, 0xf1, 0x9d, 0x27, 0x1f, 0x61, 0xe0, 0xa7, 0xa5, 0xbd, 0x1b,
|
0x3e, 0x3e, 0xcf, 0xce, 0xeb, 0x96, 0xf1, 0x9d, 0x27, 0x1f, 0x61, 0xe0, 0xa7, 0xa5, 0xbd, 0x1b,
|
||||||
0x2e, 0x0e, 0xa7, 0x9d, 0x8c, 0xf9, 0x90, 0x97, 0x4d, 0xe7, 0x75, 0x30, 0x57, 0xd5, 0x34, 0x01,
|
0x2e, 0x0e, 0xa7, 0x9d, 0x8c, 0xf9, 0x90, 0x97, 0x4d, 0xe7, 0x75, 0x30, 0x57, 0xd5, 0x34, 0x01,
|
||||||
0x75, 0x32, 0x32, 0xd8, 0xd9, 0x69, 0x34, 0xed, 0x17, 0x3e, 0x9d, 0x1d, 0x48, 0x89, 0x97, 0x6a,
|
0x75, 0x32, 0x32, 0xd8, 0xd9, 0x69, 0x34, 0xed, 0x17, 0x3e, 0x9d, 0x1d, 0x48, 0x89, 0x97, 0x6a,
|
||||||
0x42, 0x6c, 0x02, 0xa2, 0xde, 0x01, 0x22, 0x4d, 0x23, 0x41, 0x28, 0x73, 0x87, 0x8e, 0xe4, 0x6e,
|
0x42, 0x6c, 0x02, 0xa2, 0xde, 0x01, 0x22, 0x4d, 0x23, 0x41, 0x28, 0x73, 0x87, 0x8e, 0xe4, 0x6e,
|
||||||
0xd8, 0xb4, 0x63, 0xf6, 0xaf, 0xf6, 0xfc, 0x61, 0x2f, 0x67, 0x6e, 0x7f, 0xe7, 0x0b, 0x51, 0xe7,
|
0xd8, 0xb4, 0x63, 0xf6, 0xaf, 0xf6, 0xfc, 0x61, 0x2f, 0x67, 0x6e, 0x7f, 0xe7, 0x0b, 0x51, 0xe7,
|
||||||
0xc4, 0x0f, 0xbe, 0xf3, 0x64, 0x95, 0x97, 0x6f, 0x2c, 0x71, 0xe5, 0x13, 0x13, 0x36, 0xff, 0x4f,
|
0xc4, 0x0f, 0xbe, 0xf3, 0x64, 0x95, 0x97, 0x6f, 0x2c, 0x71, 0xe5, 0x13, 0x13, 0x36, 0xff, 0x4f,
|
||||||
0x63, 0x2f, 0x6d, 0xbc, 0x60, 0x7a, 0xde, 0xf5, 0xcc, 0x45, 0x9e, 0x8f, 0x9f, 0x74, 0xc3, 0xe5,
|
0x63, 0x2f, 0x6d, 0xbc, 0x60, 0x7a, 0xde, 0xf5, 0xcc, 0x45, 0x9e, 0x8f, 0x9f, 0x74, 0xc3, 0xe5,
|
||||||
0x24, 0x54, 0xdc, 0x2e, 0xb5, 0xef, 0xce, 0x46, 0xf4, 0x12, 0xa6, 0x7b, 0x42, 0xa3, 0xbb, 0x09,
|
0x24, 0x54, 0xdc, 0x2e, 0xb5, 0xef, 0xce, 0x46, 0xf4, 0x12, 0xa6, 0x7b, 0x42, 0xa3, 0xbb, 0x09,
|
||||||
0xc0, 0x58, 0x08, 0x40, 0x35, 0x7d, 0x22, 0x90, 0x16, 0xc5, 0x6a, 0x34, 0xd4, 0xd1, 0x83, 0xe3,
|
0xc0, 0x58, 0x08, 0x40, 0x35, 0x7d, 0x22, 0x90, 0x16, 0xc5, 0x6a, 0x34, 0xd4, 0xd1, 0x83, 0xe3,
|
||||||
0xd9, 0xff, 0xb9, 0xf1, 0xae, 0xd9, 0xbf, 0xd8, 0xf7, 0x85, 0x5e, 0xb5, 0xee, 0xf6, 0xf9, 0x77,
|
0xd9, 0xff, 0xb9, 0xf1, 0xae, 0xd9, 0xbf, 0xd8, 0xf7, 0x85, 0x5e, 0xb5, 0xee, 0xf6, 0xf9, 0x77,
|
||||||
0xf7, 0x7a, 0x7a, 0xf7, 0x17, 0x96, 0xb3, 0xf1, 0xab, 0xc9, 0xdb, 0xd3, 0xb7, 0xee, 0xec, 0xfd,
|
0xf7, 0x7a, 0x7a, 0xf7, 0x17, 0x96, 0xb3, 0xf1, 0xab, 0xc9, 0xdb, 0xd3, 0xb7, 0xee, 0xec, 0xfd,
|
||||||
0xef, 0x7d, 0x23, 0xdc, 0x92, 0xeb, 0x57, 0x2b, 0xb5, 0xab, 0xd3, 0x74, 0xad, 0xda, 0x04, 0xf3,
|
0xef, 0x7d, 0x23, 0xdc, 0x92, 0xeb, 0x57, 0x2b, 0xb5, 0xab, 0xd3, 0x74, 0xad, 0xda, 0x04, 0xf3,
|
||||||
0xc4, 0x06, 0x41, 0x93, 0x72, 0x73, 0x32, 0xc0, 0xd2, 0xe4, 0x17, 0x69, 0x88, 0x15, 0x54, 0x90,
|
0xc4, 0x06, 0x41, 0x93, 0x72, 0x73, 0x32, 0xc0, 0xd2, 0xe4, 0x17, 0x69, 0x88, 0x15, 0x54, 0x90,
|
||||||
0x46, 0xa7, 0x50, 0x92, 0xde, 0xae, 0x4d, 0x32, 0x77, 0xb5, 0xaa, 0x5e, 0x3c, 0x38, 0x9e, 0xfd,
|
0x46, 0xa7, 0x50, 0x92, 0xde, 0xae, 0x4d, 0x32, 0x77, 0xb5, 0xaa, 0x5e, 0x3c, 0x38, 0x9e, 0xfd,
|
||||||
0xec, 0x39, 0xff, 0x67, 0xe6, 0xf1, 0xbd, 0x5f, 0xe8, 0x65, 0xdd, 0x57, 0xe7, 0x7f, 0xce, 0x0b,
|
0xec, 0x39, 0xff, 0x67, 0xe6, 0xf1, 0xbd, 0x5f, 0xe8, 0x65, 0xdd, 0x57, 0xe7, 0x7f, 0xce, 0x0b,
|
||||||
0x03, 0xd7, 0x0f, 0xb0, 0xf9, 0xae, 0xe4, 0xad, 0xd0, 0x6b, 0x5f, 0xec, 0x79, 0xff, 0xe0, 0x69,
|
0x03, 0xd7, 0x0f, 0xb0, 0xf9, 0xae, 0xe4, 0xad, 0xd0, 0x6b, 0x5f, 0xec, 0x79, 0xff, 0xe0, 0x69,
|
||||||
0x72, 0x73, 0xbe, 0x5f, 0x5d, 0xe2, 0xe5, 0x94, 0xa7, 0x1d, 0xdd, 0x6e, 0x21, 0x35, 0x8b, 0xe7,
|
0x72, 0x73, 0xbe, 0x5f, 0x5d, 0xe2, 0xe5, 0x94, 0xa7, 0x1d, 0xdd, 0x6e, 0x21, 0x35, 0x8b, 0xe7,
|
||||||
0x13, 0x8b, 0x69, 0x78, 0x27, 0x1d, 0xb7, 0x92, 0x0e, 0x20, 0x14, 0x54, 0xa8, 0x92, 0x3c, 0x11,
|
0x13, 0x8b, 0x69, 0x78, 0x27, 0x1d, 0xb7, 0x92, 0x0e, 0x20, 0x14, 0x54, 0xa8, 0x92, 0x3c, 0x11,
|
||||||
0x25, 0x77, 0x55, 0x4c, 0x0c, 0x51, 0xa4, 0xa6, 0xe6, 0xcb, 0x3c, 0xf0, 0xda, 0x81, 0xbe, 0x9b,
|
0x25, 0x77, 0x55, 0x4c, 0x0c, 0x51, 0xa4, 0xa6, 0xe6, 0xcb, 0x3c, 0xf0, 0xda, 0x81, 0xbe, 0x9b,
|
||||||
0x3e, 0x74, 0xcf, 0x91, 0x89, 0xd7, 0x6f, 0xea, 0x63, 0xc3, 0xf6, 0xb9, 0xff, 0xe0, 0x15, 0x8e,
|
0x3e, 0x74, 0xcf, 0x91, 0x89, 0xd7, 0x6f, 0xea, 0x63, 0xc3, 0xf6, 0xb9, 0xff, 0xe0, 0x15, 0x8e,
|
||||||
0xeb, 0x86, 0xd9, 0x9c, 0x5e, 0xa4, 0x79, 0xe4, 0xaa, 0xfe, 0xe1, 0xb5, 0x17, 0xc6, 0xbf, 0xdb,
|
0xeb, 0x86, 0xd9, 0x9c, 0x5e, 0xa4, 0x79, 0xe4, 0xaa, 0xfe, 0xe1, 0xb5, 0x17, 0xc6, 0xbf, 0xdb,
|
||||||
0x55, 0x52, 0x57, 0x78, 0x79, 0x39, 0x3b, 0x93, 0x07, 0xa5, 0x75, 0xfb, 0xf0, 0x4f, 0xd6, 0xe6,
|
0x55, 0x52, 0x57, 0x78, 0x79, 0x39, 0x3b, 0x93, 0x07, 0xa5, 0x75, 0xfb, 0xf0, 0x4f, 0xd6, 0xe6,
|
||||||
0x68, 0x6a, 0x47, 0x52, 0x00, 0x46, 0x52, 0x02, 0x98, 0x68, 0x40, 0x45, 0x80, 0x11, 0x6c, 0x24,
|
0x68, 0x6a, 0x47, 0x52, 0x00, 0x46, 0x52, 0x02, 0x98, 0x68, 0x40, 0x45, 0x80, 0x11, 0x6c, 0x24,
|
||||||
0x04, 0x91, 0x0e, 0xc3, 0x90, 0xc7, 0xa6, 0x67, 0xf5, 0xf7, 0xd6, 0xdd, 0xbe, 0xf8, 0x97, 0xc9,
|
0x04, 0x91, 0x0e, 0xc3, 0x90, 0xc7, 0xa6, 0x67, 0xf5, 0xf7, 0xd6, 0xdd, 0xbe, 0xf8, 0x97, 0xc9,
|
||||||
0xfe, 0x83, 0x6c, 0xde, 0x31, 0xf5, 0x8b, 0xb9, 0x54, 0xf3, 0xc6, 0x9d, 0xef, 0x43, 0x55, 0x1e,
|
0xfe, 0x83, 0x6c, 0xde, 0x31, 0xf5, 0x8b, 0xb9, 0x54, 0xf3, 0xc6, 0x9d, 0xef, 0x43, 0x55, 0x1e,
|
||||||
0xe5, 0x8c, 0x5b, 0x13, 0x69, 0x77, 0xdf, 0xd4, 0x77, 0xce, 0xc0, 0xca, 0xf8, 0x57, 0xb2, 0xdd,
|
0xe5, 0x8c, 0x5b, 0x13, 0x69, 0x77, 0xdf, 0xd4, 0x77, 0xce, 0xc0, 0xca, 0xf8, 0x57, 0xb2, 0xdd,
|
||||||
0xea, 0x43, 0x8e, 0x6b, 0x2f, 0xf4, 0x0b, 0xe0, 0x64, 0xd4, 0xd2, 0x66, 0x87, 0x95, 0x56, 0xa1,
|
0xea, 0x43, 0x8e, 0x6b, 0x2f, 0xf4, 0x0b, 0xe0, 0x64, 0xd4, 0xd2, 0x66, 0x87, 0x95, 0x56, 0xa1,
|
||||||
0x89, 0x11, 0xc4, 0x2a, 0x54, 0x2c, 0x10, 0x2b, 0x94, 0x91, 0x94, 0xc9, 0x0a, 0x51, 0x43, 0x08,
|
0x89, 0x11, 0xc4, 0x2a, 0x54, 0x2c, 0x10, 0x2b, 0x94, 0x91, 0x94, 0xc9, 0x0a, 0x51, 0x43, 0x08,
|
||||||
0x23, 0xbd, 0x18, 0xc7, 0x3c, 0x5a, 0xa9, 0xe9, 0x7f, 0x3a, 0x74, 0x34, 0x7f, 0xef, 0x7b, 0xbf,
|
0x23, 0xbd, 0x18, 0xc7, 0x3c, 0x5a, 0xa9, 0xe9, 0x7f, 0x3a, 0x74, 0x34, 0x7f, 0xef, 0x7b, 0xbf,
|
||||||
0x33, 0x79, 0xec, 0xdd, 0x5e, 0xbd, 0x7a, 0x57, 0xd7, 0x9c, 0x76, 0x5d, 0xb7, 0x9c, 0xcd, 0x3b,
|
0x33, 0x79, 0xec, 0xdd, 0x5e, 0xbd, 0x7a, 0x57, 0xd7, 0x9c, 0x76, 0x5d, 0xb7, 0x9c, 0xcd, 0x3b,
|
||||||
0xda, 0xb7, 0x0e, 0x5e, 0xbe, 0xbe, 0xef, 0xac, 0x81, 0xd1, 0x68, 0x8b, 0x9b, 0xd1, 0xe7, 0xbb,
|
0xda, 0xb7, 0x0e, 0x5e, 0xbe, 0xbe, 0xef, 0xac, 0x81, 0xd1, 0x68, 0x8b, 0x9b, 0xd1, 0xe7, 0xbb,
|
||||||
0xae, 0xdd, 0xe6, 0x38, 0x6c, 0xd0, 0xda, 0x16, 0xbd, 0x0c, 0xb8, 0xae, 0x4a, 0x62, 0xbb, 0x55,
|
0xae, 0xdd, 0xe6, 0x38, 0x6c, 0xd0, 0xda, 0x16, 0xbd, 0x0c, 0xb8, 0xae, 0x4a, 0x62, 0xbb, 0x55,
|
||||||
0xad, 0xca, 0x4e, 0x62, 0x88, 0x03, 0x21, 0x0a, 0x04, 0x13, 0xeb, 0xb2, 0x31, 0x6a, 0xa7, 0xb1,
|
0xad, 0xca, 0x4e, 0x62, 0x88, 0x03, 0x21, 0x0a, 0x04, 0x13, 0xeb, 0xb2, 0x31, 0x6a, 0xa7, 0xb1,
|
||||||
0x3c, 0xd5, 0x08, 0xd4, 0xb3, 0xe3, 0x13, 0x99, 0x67, 0x2e, 0xf8, 0xf6, 0xcc, 0xf8, 0xc9, 0xee,
|
0x3c, 0xd5, 0x08, 0xd4, 0xb3, 0xe3, 0x13, 0x99, 0x67, 0x2e, 0xf8, 0xf6, 0xcc, 0xf8, 0xc9, 0xee,
|
||||||
0xc1, 0xfc, 0xc2, 0x81, 0xb4, 0x6e, 0x47, 0x5c, 0x3b, 0xc4, 0xd8, 0xd7, 0x8f, 0xb7, 0xfe, 0xfe,
|
0xc1, 0xfc, 0xc2, 0x81, 0xb4, 0x6e, 0x47, 0x5c, 0x3b, 0xc4, 0xd8, 0xd7, 0x8f, 0xb7, 0xfe, 0xfe,
|
||||||
0xe1, 0x65, 0x23, 0xc5, 0xd3, 0xb7, 0x2c, 0x9c, 0x5a, 0xec, 0xb7, 0x43, 0x4e, 0xd6, 0x5d, 0xae,
|
0xe1, 0x65, 0x23, 0xc5, 0xd3, 0xb7, 0x2c, 0x9c, 0x5a, 0xec, 0xb7, 0x43, 0x4e, 0xd6, 0x5d, 0xae,
|
||||||
0x2c, 0x23, 0x62, 0xed, 0x90, 0x42, 0x7a, 0x94, 0x98, 0x0c, 0xa2, 0xb5, 0x18, 0x09, 0xb0, 0x7a,
|
0x2c, 0x23, 0x62, 0xed, 0x90, 0x42, 0x7a, 0x94, 0x98, 0x0c, 0xa2, 0xb5, 0x18, 0x09, 0xb0, 0x7a,
|
||||||
0x11, 0xd4, 0x04, 0xc2, 0xdb, 0x51, 0x64, 0x8e, 0xcd, 0x96, 0x9d, 0x89, 0xe7, 0xf7, 0xac, 0x3c,
|
0x11, 0xd4, 0x04, 0xc2, 0xdb, 0x51, 0x64, 0x8e, 0xcd, 0x96, 0x9d, 0x89, 0xe7, 0xf7, 0xac, 0x3c,
|
||||||
0xf4, 0xdb, 0xf7, 0xbf, 0x12, 0xb4, 0xd6, 0xfe, 0x7c, 0x3f, 0x63, 0x7f, 0x34, 0xfb, 0xae, 0x65,
|
0xf4, 0xdb, 0xf7, 0xbf, 0x12, 0xb4, 0xd6, 0xfe, 0x7c, 0x3f, 0x63, 0x7f, 0x34, 0xfb, 0xae, 0x65,
|
||||||
0xfa, 0x7f, 0x4c, 0xe8, 0x21, 0x04, 0x29, 0xb0, 0x36, 0x16, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
|
0xfa, 0x7f, 0x4c, 0xe8, 0x21, 0x04, 0x29, 0xb0, 0x36, 0x16, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
|
||||||
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||||
};
|
};
|
||||||
|
|
||||||
const lv_img_dsc_t img_wink_png = {
|
const lv_img_dsc_t img_wink_png = {
|
||||||
.header.always_zero = 0,
|
.header.always_zero = 0,
|
||||||
.header.w = 50,
|
.header.w = 50,
|
||||||
.header.h = 50,
|
.header.h = 50,
|
||||||
.data_size = 5158,
|
.data_size = 5158,
|
||||||
.header.cf = LV_IMG_CF_RAW_ALPHA,
|
.header.cf = LV_IMG_CF_RAW_ALPHA,
|
||||||
.data = img_wink_png_map,
|
.data = img_wink_png_map,
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /*LV_USE_PNG && LV_BUILD_EXAMPLES*/
|
#endif /*LV_USE_PNG && LV_BUILD_EXAMPLES*/
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ void lv_example_rlottie_2(void)
|
|||||||
{
|
{
|
||||||
/*The rlottie library uses STDIO file API, so there is no driver letter for LVGL*/
|
/*The rlottie library uses STDIO file API, so there is no driver letter for LVGL*/
|
||||||
lv_obj_t * lottie = lv_rlottie_create_from_file(lv_scr_act(), 100, 100,
|
lv_obj_t * lottie = lv_rlottie_create_from_file(lv_scr_act(), 100, 100,
|
||||||
"lvgl/examples/libs/rlottie/lv_example_rlottie_approve.json");
|
"lvgl/examples/libs/rlottie/lv_example_rlottie_approve.json");
|
||||||
lv_obj_center(lottie);
|
lv_obj_center(lottie);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,15 +16,15 @@
|
|||||||
#if LV_BUILD_EXAMPLES && LV_USE_RLOTTIE
|
#if LV_BUILD_EXAMPLES && LV_USE_RLOTTIE
|
||||||
|
|
||||||
const uint8_t lv_example_rlottie_approve[] = {
|
const uint8_t lv_example_rlottie_approve[] = {
|
||||||
0x7b, 0x22, 0x76, 0x22, 0x3a, 0x22, 0x34, 0x2e, 0x38, 0x2e, 0x30, 0x22, 0x2c, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x67, 0x22, 0x3a, 0x22, 0x4c, 0x6f, 0x74, 0x74, 0x69, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x41, 0x45, 0x20, 0x31, 0x2e, 0x30, 0x2e, 0x30, 0x22, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x22, 0x22, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x22, 0x22, 0x2c, 0x22, 0x64, 0x22, 0x3a, 0x22, 0x22, 0x2c, 0x22, 0x74, 0x63, 0x22, 0x3a, 0x22, 0x22, 0x7d, 0x2c, 0x22, 0x66, 0x72, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x37, 0x32, 0x30, 0x2c, 0x22, 0x68, 0x22, 0x3a, 0x37, 0x32, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x2c, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x22, 0x3a, 0x5b, 0x5d, 0x2c, 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x34, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x39, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x68, 0x22, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x76, 0x22, 0x3a, 0x5b, 0x5b, 0x2d, 0x31, 0x32, 0x33, 0x2c, 0x2d, 0x36, 0x36, 0x5d, 0x2c, 0x5b, 0x36, 0x2c, 0x34, 0x35, 0x5d, 0x2c, 0x5b, 0x33, 0x32, 0x31, 0x2c, 0x2d, 0x32, 0x36, 0x34, 0x5d, 0x5d, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x39, 0x38, 0x30, 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x38, 0x36, 0x2c, 0x30, 0x2e, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x30, 0x34, 0x2c, 0x30, 0x2e, 0x33, 0x31, 0x33, 0x37, 0x32, 0x35,
|
0x7b, 0x22, 0x76, 0x22, 0x3a, 0x22, 0x34, 0x2e, 0x38, 0x2e, 0x30, 0x22, 0x2c, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x67, 0x22, 0x3a, 0x22, 0x4c, 0x6f, 0x74, 0x74, 0x69, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x20, 0x41, 0x45, 0x20, 0x31, 0x2e, 0x30, 0x2e, 0x30, 0x22, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x22, 0x22, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x22, 0x22, 0x2c, 0x22, 0x64, 0x22, 0x3a, 0x22, 0x22, 0x2c, 0x22, 0x74, 0x63, 0x22, 0x3a, 0x22, 0x22, 0x7d, 0x2c, 0x22, 0x66, 0x72, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x37, 0x32, 0x30, 0x2c, 0x22, 0x68, 0x22, 0x3a, 0x37, 0x32, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x2c, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x22, 0x3a, 0x5b, 0x5d, 0x2c, 0x22, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x34, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x39, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x68, 0x22, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x76, 0x22, 0x3a, 0x5b, 0x5b, 0x2d, 0x31, 0x32, 0x33, 0x2c, 0x2d, 0x36, 0x36, 0x5d, 0x2c, 0x5b, 0x36, 0x2c, 0x34, 0x35, 0x5d, 0x2c, 0x5b, 0x33, 0x32, 0x31, 0x2c, 0x2d, 0x32, 0x36, 0x34, 0x5d, 0x5d, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x39, 0x38, 0x30, 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x38, 0x36, 0x2c, 0x30, 0x2e, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x30, 0x34, 0x2c, 0x30, 0x2e, 0x33, 0x31, 0x33, 0x37, 0x32, 0x35,
|
||||||
0x34, 0x39, 0x30, 0x31, 0x39, 0x36, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x35, 0x32, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x36, 0x38, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x35, 0x31, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x35, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x39, 0x32, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65,
|
0x34, 0x39, 0x30, 0x31, 0x39, 0x36, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x35, 0x32, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x36, 0x38, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x35, 0x31, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x35, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x39, 0x32, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65,
|
||||||
0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x2c, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x33, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x39, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x68, 0x22, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x76, 0x22, 0x3a, 0x5b, 0x5b, 0x2d, 0x31, 0x32, 0x33, 0x2c, 0x2d, 0x36, 0x36, 0x5d, 0x2c, 0x5b, 0x36, 0x2c, 0x34, 0x35, 0x5d, 0x2c, 0x5b, 0x33, 0x32, 0x31, 0x2c, 0x2d, 0x32, 0x36, 0x34, 0x5d, 0x5d, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x31, 0x39, 0x36, 0x30, 0x37, 0x38, 0x34, 0x33, 0x31, 0x33, 0x37, 0x2c, 0x30, 0x2e, 0x35, 0x35, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x2c, 0x30, 0x2e, 0x32, 0x33, 0x35, 0x32, 0x39, 0x34, 0x31, 0x31, 0x37, 0x36, 0x34, 0x37, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x34, 0x38, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22,
|
0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x2c, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x33, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x39, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x68, 0x22, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x5b, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x5d, 0x2c, 0x22, 0x76, 0x22, 0x3a, 0x5b, 0x5b, 0x2d, 0x31, 0x32, 0x33, 0x2c, 0x2d, 0x36, 0x36, 0x5d, 0x2c, 0x5b, 0x36, 0x2c, 0x34, 0x35, 0x5d, 0x2c, 0x5b, 0x33, 0x32, 0x31, 0x2c, 0x2d, 0x32, 0x36, 0x34, 0x5d, 0x5d, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x31, 0x39, 0x36, 0x30, 0x37, 0x38, 0x34, 0x33, 0x31, 0x33, 0x37, 0x2c, 0x30, 0x2e, 0x35, 0x35, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x2c, 0x30, 0x2e, 0x32, 0x33, 0x35, 0x32, 0x39, 0x34, 0x31, 0x31, 0x37, 0x36, 0x34, 0x37, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x34, 0x38, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22,
|
||||||
0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x36, 0x38, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x35, 0x31, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x2c, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65,
|
0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x36, 0x38, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x35, 0x31, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x2c, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65,
|
||||||
0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x32, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x38, 0x37, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x36, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x64, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x65, 0x6c, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x35, 0x32, 0x30, 0x2c, 0x35, 0x32, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x39, 0x38, 0x30, 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x38, 0x36, 0x2c, 0x30, 0x2e, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x30, 0x34, 0x2c, 0x30, 0x2e, 0x33, 0x31, 0x33, 0x37, 0x32, 0x35, 0x34, 0x39, 0x30, 0x31, 0x39, 0x36, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x35, 0x32, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6c, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c,
|
0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x32, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x38, 0x37, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x36, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x64, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x65, 0x6c, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x35, 0x32, 0x30, 0x2c, 0x35, 0x32, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x39, 0x38, 0x30, 0x33, 0x39, 0x32, 0x31, 0x35, 0x36, 0x38, 0x36, 0x2c, 0x30, 0x2e, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x30, 0x34, 0x2c, 0x30, 0x2e, 0x33, 0x31, 0x33, 0x37, 0x32, 0x35, 0x34, 0x39, 0x30, 0x31, 0x39, 0x36, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x35, 0x32, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6c, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c,
|
||||||
0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x33, 0x37, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x33, 0x34, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x35, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x38, 0x30, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x2c, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x38, 0x37, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x36, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d,
|
0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x33, 0x37, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x33, 0x34, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x35, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x38, 0x30, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x31, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x2c, 0x7b, 0x22, 0x64, 0x64, 0x64, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x6e, 0x64, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x4c, 0x61, 0x79, 0x65, 0x72, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x73, 0x72, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x31, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x38, 0x37, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x30, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x33, 0x33, 0x36, 0x2c, 0x33, 0x36, 0x36, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d,
|
||||||
0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x64, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x65, 0x6c, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x35, 0x32, 0x30, 0x2c, 0x35, 0x32, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x31, 0x39, 0x36, 0x30, 0x37, 0x38, 0x34, 0x33, 0x31, 0x33, 0x37, 0x2c, 0x30, 0x2e, 0x35, 0x35, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x2c, 0x30, 0x2e, 0x32, 0x33, 0x35, 0x32, 0x39, 0x34, 0x31, 0x31, 0x37, 0x36, 0x34, 0x37, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x34, 0x38, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6c, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45,
|
0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x7d, 0x2c, 0x22, 0x61, 0x6f, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x68, 0x61, 0x70, 0x65, 0x73, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x67, 0x72, 0x22, 0x2c, 0x22, 0x69, 0x74, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x64, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x65, 0x6c, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x35, 0x32, 0x30, 0x2c, 0x35, 0x32, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x50, 0x61, 0x74, 0x68, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x53, 0x68, 0x61, 0x70, 0x65, 0x20, 0x2d, 0x20, 0x45, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x73, 0x74, 0x22, 0x2c, 0x22, 0x63, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x31, 0x39, 0x36, 0x30, 0x37, 0x38, 0x34, 0x33, 0x31, 0x33, 0x37, 0x2c, 0x30, 0x2e, 0x35, 0x35, 0x36, 0x38, 0x36, 0x32, 0x37, 0x34, 0x35, 0x30, 0x39, 0x38, 0x2c, 0x30, 0x2e, 0x32, 0x33, 0x35, 0x32, 0x39, 0x34, 0x31, 0x31, 0x37, 0x36, 0x34, 0x37, 0x2c, 0x31, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x77, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x34, 0x38, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6c, 0x63, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6c, 0x6a, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6c, 0x22, 0x3a, 0x34, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x20, 0x2d, 0x20, 0x53, 0x74, 0x72, 0x6f, 0x6b, 0x65, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x72, 0x22, 0x2c, 0x22, 0x70, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x30, 0x2c, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x31, 0x30, 0x30, 0x2c, 0x31, 0x30, 0x30, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x72, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x36, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x31, 0x30, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x37, 0x7d, 0x2c, 0x22, 0x73, 0x6b, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x34, 0x7d, 0x2c, 0x22, 0x73, 0x61, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x35, 0x7d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x7d, 0x5d, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x45,
|
||||||
0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x36, 0x38, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x35, 0x31, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x38, 0x34, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x5d, 0x2c, 0x22, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x73, 0x22, 0x3a, 0x5b, 0x5d, 0x7d,
|
0x6c, 0x6c, 0x69, 0x70, 0x73, 0x65, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6e, 0x70, 0x22, 0x3a, 0x33, 0x2c, 0x22, 0x63, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x79, 0x22, 0x3a, 0x22, 0x74, 0x6d, 0x22, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x31, 0x7d, 0x2c, 0x22, 0x65, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x5b, 0x7b, 0x22, 0x69, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x33, 0x36, 0x38, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x31, 0x5d, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x78, 0x22, 0x3a, 0x5b, 0x30, 0x2e, 0x32, 0x35, 0x31, 0x5d, 0x2c, 0x22, 0x79, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x22, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x30, 0x5d, 0x7d, 0x2c, 0x7b, 0x22, 0x74, 0x22, 0x3a, 0x34, 0x30, 0x2c, 0x22, 0x73, 0x22, 0x3a, 0x5b, 0x38, 0x34, 0x5d, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x7d, 0x2c, 0x22, 0x6f, 0x22, 0x3a, 0x7b, 0x22, 0x61, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6b, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x33, 0x7d, 0x2c, 0x22, 0x6d, 0x22, 0x3a, 0x31, 0x2c, 0x22, 0x69, 0x78, 0x22, 0x3a, 0x32, 0x2c, 0x22, 0x6e, 0x6d, 0x22, 0x3a, 0x22, 0x54, 0x72, 0x69, 0x6d, 0x20, 0x50, 0x61, 0x74, 0x68, 0x73, 0x20, 0x31, 0x22, 0x2c, 0x22, 0x6d, 0x6e, 0x22, 0x3a, 0x22, 0x41, 0x44, 0x42, 0x45, 0x20, 0x56, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x20, 0x2d, 0x20, 0x54, 0x72, 0x69, 0x6d, 0x22, 0x2c, 0x22, 0x68, 0x64, 0x22, 0x3a, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x7d, 0x5d, 0x2c, 0x22, 0x69, 0x70, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x6f, 0x70, 0x22, 0x3a, 0x36, 0x30, 0x2c, 0x22, 0x73, 0x74, 0x22, 0x3a, 0x30, 0x2c, 0x22, 0x62, 0x6d, 0x22, 0x3a, 0x30, 0x7d, 0x5d, 0x2c, 0x22, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x73, 0x22, 0x3a, 0x5b, 0x5d, 0x7d,
|
||||||
0x00 /*Close the string*/
|
0x00 /*Close the string*/
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
*/
|
*/
|
||||||
void lv_example_sjpg_1(void)
|
void lv_example_sjpg_1(void)
|
||||||
{
|
{
|
||||||
lv_obj_t * wp;
|
lv_obj_t * wp;
|
||||||
|
|
||||||
wp = lv_img_create(lv_scr_act());
|
wp = lv_img_create(lv_scr_act());
|
||||||
/* Assuming a File system is attached to letter 'A'
|
/* Assuming a File system is attached to letter 'A'
|
||||||
* E.g. set LV_USE_FS_STDIO 'A' in lv_conf.h */
|
* E.g. set LV_USE_FS_STDIO 'A' in lv_conf.h */
|
||||||
lv_img_set_src(wp, "A:lvgl/examples/libs/sjpg/small_image.sjpg");
|
lv_img_set_src(wp, "A:lvgl/examples/libs/sjpg/small_image.sjpg");
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -6,39 +6,41 @@
|
|||||||
|
|
||||||
#if LV_USE_FRAGMENT && LV_BUILD_EXAMPLES
|
#if LV_USE_FRAGMENT && LV_BUILD_EXAMPLES
|
||||||
|
|
||||||
static void sample_fragment_ctor(lv_fragment_t *self, void *args);
|
static void sample_fragment_ctor(lv_fragment_t * self, void * args);
|
||||||
|
|
||||||
static lv_obj_t *sample_fragment_create_obj(lv_fragment_t *self, lv_obj_t *parent);
|
static lv_obj_t * sample_fragment_create_obj(lv_fragment_t * self, lv_obj_t * parent);
|
||||||
|
|
||||||
static lv_obj_t * root = NULL;
|
static lv_obj_t * root = NULL;
|
||||||
|
|
||||||
struct sample_fragment_t {
|
struct sample_fragment_t {
|
||||||
lv_fragment_t base;
|
lv_fragment_t base;
|
||||||
const char *name;
|
const char * name;
|
||||||
};
|
};
|
||||||
|
|
||||||
static const lv_fragment_class_t sample_cls = {
|
static const lv_fragment_class_t sample_cls = {
|
||||||
.constructor_cb = sample_fragment_ctor,
|
.constructor_cb = sample_fragment_ctor,
|
||||||
.create_obj_cb = sample_fragment_create_obj,
|
.create_obj_cb = sample_fragment_create_obj,
|
||||||
.instance_size = sizeof(struct sample_fragment_t)
|
.instance_size = sizeof(struct sample_fragment_t)
|
||||||
};
|
};
|
||||||
|
|
||||||
void lv_example_fragment_1(void)
|
void lv_example_fragment_1(void)
|
||||||
{
|
{
|
||||||
root = lv_obj_create(lv_scr_act());
|
root = lv_obj_create(lv_scr_act());
|
||||||
lv_obj_set_size(root, LV_PCT(100), LV_PCT(100));
|
lv_obj_set_size(root, LV_PCT(100), LV_PCT(100));
|
||||||
lv_fragment_manager_t *manager = lv_fragment_manager_create(NULL);
|
lv_fragment_manager_t * manager = lv_fragment_manager_create(NULL);
|
||||||
lv_fragment_t *fragment = lv_fragment_create(&sample_cls, "Fragment");
|
lv_fragment_t * fragment = lv_fragment_create(&sample_cls, "Fragment");
|
||||||
lv_fragment_manager_replace(manager, fragment, &root);
|
lv_fragment_manager_replace(manager, fragment, &root);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void sample_fragment_ctor(lv_fragment_t *self, void *args) {
|
static void sample_fragment_ctor(lv_fragment_t * self, void * args)
|
||||||
|
{
|
||||||
((struct sample_fragment_t *) self)->name = args;
|
((struct sample_fragment_t *) self)->name = args;
|
||||||
}
|
}
|
||||||
|
|
||||||
static lv_obj_t *sample_fragment_create_obj(lv_fragment_t *self, lv_obj_t *parent) {
|
static lv_obj_t * sample_fragment_create_obj(lv_fragment_t * self, lv_obj_t * parent)
|
||||||
lv_obj_t *label = lv_label_create(parent);
|
{
|
||||||
|
lv_obj_t * label = lv_label_create(parent);
|
||||||
lv_obj_set_style_bg_opa(label, LV_OPA_COVER, 0);;
|
lv_obj_set_style_bg_opa(label, LV_OPA_COVER, 0);;
|
||||||
lv_label_set_text_fmt(label, "Hello, %s!", ((struct sample_fragment_t *) self)->name);
|
lv_label_set_text_fmt(label, "Hello, %s!", ((struct sample_fragment_t *) self)->name);
|
||||||
return label;
|
return label;
|
||||||
|
|||||||
@@ -6,34 +6,34 @@
|
|||||||
|
|
||||||
#if LV_USE_FRAGMENT && LV_USE_WIN && LV_BUILD_EXAMPLES
|
#if LV_USE_FRAGMENT && LV_USE_WIN && LV_BUILD_EXAMPLES
|
||||||
|
|
||||||
static void sample_fragment_ctor(lv_fragment_t *self, void *args);
|
static void sample_fragment_ctor(lv_fragment_t * self, void * args);
|
||||||
|
|
||||||
static lv_obj_t *sample_fragment_create_obj(lv_fragment_t *self, lv_obj_t *parent);
|
static lv_obj_t * sample_fragment_create_obj(lv_fragment_t * self, lv_obj_t * parent);
|
||||||
|
|
||||||
static void sample_push_click(lv_event_t *e);
|
static void sample_push_click(lv_event_t * e);
|
||||||
|
|
||||||
static void sample_pop_click(lv_event_t *e);
|
static void sample_pop_click(lv_event_t * e);
|
||||||
|
|
||||||
static void sample_fragment_inc_click(lv_event_t *e);
|
static void sample_fragment_inc_click(lv_event_t * e);
|
||||||
|
|
||||||
typedef struct sample_fragment_t {
|
typedef struct sample_fragment_t {
|
||||||
lv_fragment_t base;
|
lv_fragment_t base;
|
||||||
lv_obj_t *label;
|
lv_obj_t * label;
|
||||||
int depth;
|
int depth;
|
||||||
int counter;
|
int counter;
|
||||||
} sample_fragment_t;
|
} sample_fragment_t;
|
||||||
|
|
||||||
static const lv_fragment_class_t sample_cls = {
|
static const lv_fragment_class_t sample_cls = {
|
||||||
.constructor_cb = sample_fragment_ctor,
|
.constructor_cb = sample_fragment_ctor,
|
||||||
.create_obj_cb = sample_fragment_create_obj,
|
.create_obj_cb = sample_fragment_create_obj,
|
||||||
.instance_size = sizeof(sample_fragment_t)
|
.instance_size = sizeof(sample_fragment_t)
|
||||||
};
|
};
|
||||||
|
|
||||||
static lv_obj_t *container = NULL;
|
static lv_obj_t * container = NULL;
|
||||||
|
|
||||||
void lv_example_fragment_2(void)
|
void lv_example_fragment_2(void)
|
||||||
{
|
{
|
||||||
lv_obj_t *root = lv_obj_create(lv_scr_act());
|
lv_obj_t * root = lv_obj_create(lv_scr_act());
|
||||||
lv_obj_set_size(root, LV_PCT(100), LV_PCT(100));
|
lv_obj_set_size(root, LV_PCT(100), LV_PCT(100));
|
||||||
lv_obj_set_layout(root, LV_LAYOUT_GRID);
|
lv_obj_set_layout(root, LV_LAYOUT_GRID);
|
||||||
static const lv_coord_t col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
static const lv_coord_t col_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST};
|
||||||
@@ -43,67 +43,72 @@ void lv_example_fragment_2(void)
|
|||||||
lv_obj_remove_style_all(container);
|
lv_obj_remove_style_all(container);
|
||||||
lv_obj_set_grid_cell(container, LV_GRID_ALIGN_STRETCH, 0, 2, LV_GRID_ALIGN_STRETCH, 0, 1);
|
lv_obj_set_grid_cell(container, LV_GRID_ALIGN_STRETCH, 0, 2, LV_GRID_ALIGN_STRETCH, 0, 1);
|
||||||
|
|
||||||
lv_obj_t *push_btn = lv_btn_create(root);
|
lv_obj_t * push_btn = lv_btn_create(root);
|
||||||
lv_obj_t *push_label = lv_label_create(push_btn);
|
lv_obj_t * push_label = lv_label_create(push_btn);
|
||||||
lv_label_set_text(push_label, "Push");
|
lv_label_set_text(push_label, "Push");
|
||||||
|
|
||||||
lv_obj_t *pop_btn = lv_btn_create(root);
|
lv_obj_t * pop_btn = lv_btn_create(root);
|
||||||
lv_obj_t *pop_label = lv_label_create(pop_btn);
|
lv_obj_t * pop_label = lv_label_create(pop_btn);
|
||||||
lv_label_set_text(pop_label, "Pop");
|
lv_label_set_text(pop_label, "Pop");
|
||||||
lv_obj_set_grid_cell(push_btn, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
lv_obj_set_grid_cell(push_btn, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
||||||
lv_obj_set_grid_cell(pop_btn, LV_GRID_ALIGN_END, 1, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
lv_obj_set_grid_cell(pop_btn, LV_GRID_ALIGN_END, 1, 1, LV_GRID_ALIGN_CENTER, 1, 1);
|
||||||
|
|
||||||
lv_fragment_manager_t *manager = lv_fragment_manager_create(NULL);
|
lv_fragment_manager_t * manager = lv_fragment_manager_create(NULL);
|
||||||
int depth = 0;
|
int depth = 0;
|
||||||
lv_fragment_t *fragment = lv_fragment_create(&sample_cls, &depth);
|
lv_fragment_t * fragment = lv_fragment_create(&sample_cls, &depth);
|
||||||
lv_fragment_manager_push(manager, fragment, &container);
|
lv_fragment_manager_push(manager, fragment, &container);
|
||||||
lv_obj_add_event_cb(push_btn, sample_push_click, LV_EVENT_CLICKED, manager);
|
lv_obj_add_event_cb(push_btn, sample_push_click, LV_EVENT_CLICKED, manager);
|
||||||
lv_obj_add_event_cb(pop_btn, sample_pop_click, LV_EVENT_CLICKED, manager);
|
lv_obj_add_event_cb(pop_btn, sample_pop_click, LV_EVENT_CLICKED, manager);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void sample_fragment_ctor(lv_fragment_t *self, void *args) {
|
static void sample_fragment_ctor(lv_fragment_t * self, void * args)
|
||||||
|
{
|
||||||
LV_UNUSED(args);
|
LV_UNUSED(args);
|
||||||
((sample_fragment_t *) self)->depth = *((int *) args);
|
((sample_fragment_t *) self)->depth = *((int *) args);
|
||||||
((sample_fragment_t *) self)->counter = 0;
|
((sample_fragment_t *) self)->counter = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static lv_obj_t *sample_fragment_create_obj(lv_fragment_t *self, lv_obj_t *parent) {
|
static lv_obj_t * sample_fragment_create_obj(lv_fragment_t * self, lv_obj_t * parent)
|
||||||
sample_fragment_t *fragment = (sample_fragment_t *) self;
|
{
|
||||||
lv_obj_t *content = lv_obj_create(parent);
|
sample_fragment_t * fragment = (sample_fragment_t *) self;
|
||||||
|
lv_obj_t * content = lv_obj_create(parent);
|
||||||
lv_obj_remove_style_all(content);
|
lv_obj_remove_style_all(content);
|
||||||
lv_obj_set_style_bg_opa(content, LV_OPA_50, 0);
|
lv_obj_set_style_bg_opa(content, LV_OPA_50, 0);
|
||||||
lv_obj_set_style_bg_color(content, lv_palette_main(LV_PALETTE_YELLOW), 0);
|
lv_obj_set_style_bg_color(content, lv_palette_main(LV_PALETTE_YELLOW), 0);
|
||||||
lv_obj_set_size(content, LV_PCT(100), LV_PCT(100));
|
lv_obj_set_size(content, LV_PCT(100), LV_PCT(100));
|
||||||
lv_obj_set_flex_flow(content, LV_FLEX_FLOW_COLUMN);
|
lv_obj_set_flex_flow(content, LV_FLEX_FLOW_COLUMN);
|
||||||
lv_obj_t *depth = lv_label_create(content);
|
lv_obj_t * depth = lv_label_create(content);
|
||||||
lv_label_set_text_fmt(depth, "Depth: %d", fragment->depth);
|
lv_label_set_text_fmt(depth, "Depth: %d", fragment->depth);
|
||||||
lv_obj_t *label = lv_label_create(content);
|
lv_obj_t * label = lv_label_create(content);
|
||||||
fragment->label = label;
|
fragment->label = label;
|
||||||
lv_label_set_text_fmt(label, "The button has been pressed %d times", fragment->counter);
|
lv_label_set_text_fmt(label, "The button has been pressed %d times", fragment->counter);
|
||||||
|
|
||||||
lv_obj_t *inc_btn = lv_btn_create(content);
|
lv_obj_t * inc_btn = lv_btn_create(content);
|
||||||
lv_obj_t *inc_label = lv_label_create(inc_btn);
|
lv_obj_t * inc_label = lv_label_create(inc_btn);
|
||||||
lv_label_set_text(inc_label, "+1");
|
lv_label_set_text(inc_label, "+1");
|
||||||
lv_obj_add_event_cb(inc_btn, sample_fragment_inc_click, LV_EVENT_CLICKED, fragment);
|
lv_obj_add_event_cb(inc_btn, sample_fragment_inc_click, LV_EVENT_CLICKED, fragment);
|
||||||
|
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sample_push_click(lv_event_t *e) {
|
static void sample_push_click(lv_event_t * e)
|
||||||
lv_fragment_manager_t *manager = (lv_fragment_manager_t *) lv_event_get_user_data(e);
|
{
|
||||||
|
lv_fragment_manager_t * manager = (lv_fragment_manager_t *) lv_event_get_user_data(e);
|
||||||
size_t stack_size = lv_fragment_manager_get_stack_size(manager);
|
size_t stack_size = lv_fragment_manager_get_stack_size(manager);
|
||||||
lv_fragment_t *fragment = lv_fragment_create(&sample_cls, &stack_size);
|
lv_fragment_t * fragment = lv_fragment_create(&sample_cls, &stack_size);
|
||||||
lv_fragment_manager_push(manager, fragment, &container);
|
lv_fragment_manager_push(manager, fragment, &container);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sample_pop_click(lv_event_t *e) {
|
static void sample_pop_click(lv_event_t * e)
|
||||||
lv_fragment_manager_t *manager = (lv_fragment_manager_t *) lv_event_get_user_data(e);
|
{
|
||||||
|
lv_fragment_manager_t * manager = (lv_fragment_manager_t *) lv_event_get_user_data(e);
|
||||||
lv_fragment_manager_pop(manager);
|
lv_fragment_manager_pop(manager);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sample_fragment_inc_click(lv_event_t *e) {
|
static void sample_fragment_inc_click(lv_event_t * e)
|
||||||
sample_fragment_t *fragment = (sample_fragment_t *) lv_event_get_user_data(e);
|
{
|
||||||
|
sample_fragment_t * fragment = (sample_fragment_t *) lv_event_get_user_data(e);
|
||||||
fragment->counter++;
|
fragment->counter++;
|
||||||
lv_label_set_text_fmt(fragment->label, "The button has been pressed %d times", fragment->counter);
|
lv_label_set_text_fmt(fragment->label, "The button has been pressed %d times", fragment->counter);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,16 +55,16 @@ void lv_example_gridnav_3(void)
|
|||||||
lv_obj_set_style_bg_color(cont_sub1, lv_palette_lighten(LV_PALETTE_RED, 5), LV_STATE_FOCUSED);
|
lv_obj_set_style_bg_color(cont_sub1, lv_palette_lighten(LV_PALETTE_RED, 5), LV_STATE_FOCUSED);
|
||||||
lv_obj_set_width(label, lv_pct(100));
|
lv_obj_set_width(label, lv_pct(100));
|
||||||
lv_label_set_text(label,
|
lv_label_set_text(label,
|
||||||
"I'm a very long text which is makes my container scrollable. "
|
"I'm a very long text which is makes my container scrollable. "
|
||||||
"As LV_GRIDNAV_FLAG_SCROLL_FIRST is enabled arrow will scroll me first "
|
"As LV_GRIDNAV_FLAG_SCROLL_FIRST is enabled arrow will scroll me first "
|
||||||
"and a new objects will be focused only when an edge is reached with the scrolling.\n\n"
|
"and a new objects will be focused only when an edge is reached with the scrolling.\n\n"
|
||||||
"This is only some placeholder text to be sure the parent will be scrollable. \n\n"
|
"This is only some placeholder text to be sure the parent will be scrollable. \n\n"
|
||||||
"Hello world!\n"
|
"Hello world!\n"
|
||||||
"Hello world!\n"
|
"Hello world!\n"
|
||||||
"Hello world!\n"
|
"Hello world!\n"
|
||||||
"Hello world!\n"
|
"Hello world!\n"
|
||||||
"Hello world!\n"
|
"Hello world!\n"
|
||||||
"Hello world!");
|
"Hello world!");
|
||||||
|
|
||||||
/*Create a third container that can be focused with ENTER and contains an other grid nav*/
|
/*Create a third container that can be focused with ENTER and contains an other grid nav*/
|
||||||
lv_obj_t * cont_sub2 = lv_obj_create(cont_main);
|
lv_obj_t * cont_sub2 = lv_obj_create(cont_main);
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
#include "../../lv_examples.h"
|
#include "../../lv_examples.h"
|
||||||
#if LV_USE_SNAPSHOT && LV_BUILD_EXAMPLES
|
#if LV_USE_SNAPSHOT && LV_BUILD_EXAMPLES
|
||||||
|
|
||||||
static void event_cb(lv_event_t* e)
|
static void event_cb(lv_event_t * e)
|
||||||
{
|
{
|
||||||
lv_obj_t * snapshot_obj = lv_event_get_user_data(e);
|
lv_obj_t * snapshot_obj = lv_event_get_user_data(e);
|
||||||
lv_obj_t * img = lv_event_get_target(e);
|
lv_obj_t * img = lv_event_get_target(e);
|
||||||
|
|
||||||
if(snapshot_obj) {
|
if(snapshot_obj) {
|
||||||
lv_img_dsc_t* snapshot = (void*)lv_img_get_src(snapshot_obj);
|
lv_img_dsc_t * snapshot = (void *)lv_img_get_src(snapshot_obj);
|
||||||
if(snapshot){
|
if(snapshot) {
|
||||||
lv_snapshot_free(snapshot);
|
lv_snapshot_free(snapshot);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*Copy this file as "lv_port_disp.c" and set this value to "1" to enable content*/
|
/*Copy this file as "lv_port_disp.c" and set this value to "1" to enable content*/
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
@@ -88,7 +88,8 @@ void lv_port_disp_init(void)
|
|||||||
static lv_disp_draw_buf_t draw_buf_dsc_3;
|
static lv_disp_draw_buf_t draw_buf_dsc_3;
|
||||||
static lv_color_t buf_3_1[MY_DISP_HOR_RES * MY_DISP_VER_RES]; /*A screen sized buffer*/
|
static lv_color_t buf_3_1[MY_DISP_HOR_RES * MY_DISP_VER_RES]; /*A screen sized buffer*/
|
||||||
static lv_color_t buf_3_2[MY_DISP_HOR_RES * MY_DISP_VER_RES]; /*Another screen sized buffer*/
|
static lv_color_t buf_3_2[MY_DISP_HOR_RES * MY_DISP_VER_RES]; /*Another screen sized buffer*/
|
||||||
lv_disp_draw_buf_init(&draw_buf_dsc_3, buf_3_1, buf_3_2, MY_DISP_VER_RES * LV_VER_RES_MAX); /*Initialize the display buffer*/
|
lv_disp_draw_buf_init(&draw_buf_dsc_3, buf_3_1, buf_3_2,
|
||||||
|
MY_DISP_VER_RES * LV_VER_RES_MAX); /*Initialize the display buffer*/
|
||||||
|
|
||||||
/*-----------------------------------
|
/*-----------------------------------
|
||||||
* Register the display in LVGL
|
* Register the display in LVGL
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*Copy this file as "lv_port_disp.h" and set this value to "1" to enable content*/
|
/*Copy this file as "lv_port_disp.h" and set this value to "1" to enable content*/
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
#ifndef LV_PORT_DISP_TEMPL_H
|
#ifndef LV_PORT_DISP_TEMPL_H
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*Copy this file as "lv_port_fs.c" and set this value to "1" to enable content*/
|
/*Copy this file as "lv_port_fs.c" and set this value to "1" to enable content*/
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
@@ -33,7 +33,7 @@ static lv_fs_res_t fs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos, lv_fs
|
|||||||
static lv_fs_res_t fs_size(lv_fs_drv_t * drv, void * file_p, uint32_t * size_p);
|
static lv_fs_res_t fs_size(lv_fs_drv_t * drv, void * file_p, uint32_t * size_p);
|
||||||
static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
|
static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
|
||||||
|
|
||||||
static void * fs_dir_open(lv_fs_drv_t * drv, const char *path);
|
static void * fs_dir_open(lv_fs_drv_t * drv, const char * path);
|
||||||
static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * rddir_p, char * fn);
|
static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * rddir_p, char * fn);
|
||||||
static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * rddir_p);
|
static lv_fs_res_t fs_dir_close(lv_fs_drv_t * drv, void * rddir_p);
|
||||||
|
|
||||||
@@ -109,18 +109,15 @@ static void * fs_open(lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode)
|
|||||||
|
|
||||||
void * f = NULL;
|
void * f = NULL;
|
||||||
|
|
||||||
if(mode == LV_FS_MODE_WR)
|
if(mode == LV_FS_MODE_WR) {
|
||||||
{
|
|
||||||
/*Open a file for write*/
|
/*Open a file for write*/
|
||||||
f = ... /*Add your code here*/
|
f = ... /*Add your code here*/
|
||||||
}
|
}
|
||||||
else if(mode == LV_FS_MODE_RD)
|
else if(mode == LV_FS_MODE_RD) {
|
||||||
{
|
|
||||||
/*Open a file for read*/
|
/*Open a file for read*/
|
||||||
f = ... /*Add your code here*/
|
f = ... /*Add your code here*/
|
||||||
}
|
}
|
||||||
else if(mode == (LV_FS_MODE_WR | LV_FS_MODE_RD))
|
else if(mode == (LV_FS_MODE_WR | LV_FS_MODE_RD)) {
|
||||||
{
|
|
||||||
/*Open a file for read and write*/
|
/*Open a file for read and write*/
|
||||||
f = ... /*Add your code here*/
|
f = ... /*Add your code here*/
|
||||||
}
|
}
|
||||||
@@ -217,12 +214,12 @@ static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p)
|
|||||||
* @param path path to a directory
|
* @param path path to a directory
|
||||||
* @return pointer to the directory read descriptor or NULL on error
|
* @return pointer to the directory read descriptor or NULL on error
|
||||||
*/
|
*/
|
||||||
static void * fs_dir_open(lv_fs_drv_t * drv, const char *path)
|
static void * fs_dir_open(lv_fs_drv_t * drv, const char * path)
|
||||||
{
|
{
|
||||||
void * dir = NULL;
|
void * dir = NULL;
|
||||||
/*Add your code here*/
|
/*Add your code here*/
|
||||||
dir = ... /*Add your code here*/
|
dir = ... /*Add your code here*/
|
||||||
return dir;
|
return dir;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -233,7 +230,7 @@ static void * fs_dir_open(lv_fs_drv_t * drv, const char *path)
|
|||||||
* @param fn pointer to a buffer to store the filename
|
* @param fn pointer to a buffer to store the filename
|
||||||
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
|
* @return LV_FS_RES_OK: no error or any error from @lv_fs_res_t enum
|
||||||
*/
|
*/
|
||||||
static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * rddir_p, char *fn)
|
static lv_fs_res_t fs_dir_read(lv_fs_drv_t * drv, void * rddir_p, char * fn)
|
||||||
{
|
{
|
||||||
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
|
lv_fs_res_t res = LV_FS_RES_NOT_IMP;
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*Copy this file as "lv_port_fs.h" and set this value to "1" to enable content*/
|
/*Copy this file as "lv_port_fs.h" and set this value to "1" to enable content*/
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
#ifndef LV_PORT_FS_TEMPL_H
|
#ifndef LV_PORT_FS_TEMPL_H
|
||||||
@@ -29,7 +29,7 @@ extern "C" {
|
|||||||
/**********************
|
/**********************
|
||||||
* GLOBAL PROTOTYPES
|
* GLOBAL PROTOTYPES
|
||||||
**********************/
|
**********************/
|
||||||
void lv_port_fs_init(void);
|
void lv_port_fs_init(void);
|
||||||
|
|
||||||
/**********************
|
/**********************
|
||||||
* MACROS
|
* MACROS
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*Copy this file as "lv_port_indev.c" and set this value to "1" to enable content*/
|
/*Copy this file as "lv_port_indev.c" and set this value to "1" to enable content*/
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
@@ -165,8 +165,8 @@ void lv_port_indev_init(void)
|
|||||||
|
|
||||||
/*Assign buttons to points on the screen*/
|
/*Assign buttons to points on the screen*/
|
||||||
static const lv_point_t btn_points[2] = {
|
static const lv_point_t btn_points[2] = {
|
||||||
{10, 10}, /*Button 0 -> x:10; y:10*/
|
{10, 10}, /*Button 0 -> x:10; y:10*/
|
||||||
{40, 100}, /*Button 1 -> x:40; y:100*/
|
{40, 100}, /*Button 1 -> x:40; y:100*/
|
||||||
};
|
};
|
||||||
lv_indev_set_button_points(indev_button, btn_points);
|
lv_indev_set_button_points(indev_button, btn_points);
|
||||||
}
|
}
|
||||||
@@ -195,7 +195,8 @@ static void touchpad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
|
|||||||
if(touchpad_is_pressed()) {
|
if(touchpad_is_pressed()) {
|
||||||
touchpad_get_xy(&last_x, &last_y);
|
touchpad_get_xy(&last_x, &last_y);
|
||||||
data->state = LV_INDEV_STATE_PR;
|
data->state = LV_INDEV_STATE_PR;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
data->state = LV_INDEV_STATE_REL;
|
data->state = LV_INDEV_STATE_REL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -240,7 +241,8 @@ static void mouse_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
|
|||||||
/*Get whether the mouse button is pressed or released*/
|
/*Get whether the mouse button is pressed or released*/
|
||||||
if(mouse_is_pressed()) {
|
if(mouse_is_pressed()) {
|
||||||
data->state = LV_INDEV_STATE_PR;
|
data->state = LV_INDEV_STATE_PR;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
data->state = LV_INDEV_STATE_REL;
|
data->state = LV_INDEV_STATE_REL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -287,25 +289,26 @@ static void keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
|
|||||||
|
|
||||||
/*Translate the keys to LVGL control characters according to your key definitions*/
|
/*Translate the keys to LVGL control characters according to your key definitions*/
|
||||||
switch(act_key) {
|
switch(act_key) {
|
||||||
case 1:
|
case 1:
|
||||||
act_key = LV_KEY_NEXT;
|
act_key = LV_KEY_NEXT;
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
act_key = LV_KEY_PREV;
|
act_key = LV_KEY_PREV;
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
act_key = LV_KEY_LEFT;
|
act_key = LV_KEY_LEFT;
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
act_key = LV_KEY_RIGHT;
|
act_key = LV_KEY_RIGHT;
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
act_key = LV_KEY_ENTER;
|
act_key = LV_KEY_ENTER;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
last_key = act_key;
|
last_key = act_key;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
data->state = LV_INDEV_STATE_REL;
|
data->state = LV_INDEV_STATE_REL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -369,7 +372,8 @@ static void button_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data)
|
|||||||
if(btn_act >= 0) {
|
if(btn_act >= 0) {
|
||||||
data->state = LV_INDEV_STATE_PR;
|
data->state = LV_INDEV_STATE_PR;
|
||||||
last_btn = btn_act;
|
last_btn = btn_act;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
data->state = LV_INDEV_STATE_REL;
|
data->state = LV_INDEV_STATE_REL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
|
/*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
#ifndef LV_PORT_INDEV_TEMPL_H
|
#ifndef LV_PORT_INDEV_TEMPL_H
|
||||||
|
|||||||
@@ -34,7 +34,8 @@ void lv_example_scroll_2(void)
|
|||||||
if(i == 3) {
|
if(i == 3) {
|
||||||
lv_label_set_text_fmt(label, "Panel %"LV_PRIu32"\nno snap", i);
|
lv_label_set_text_fmt(label, "Panel %"LV_PRIu32"\nno snap", i);
|
||||||
lv_obj_clear_flag(btn, LV_OBJ_FLAG_SNAPPABLE);
|
lv_obj_clear_flag(btn, LV_OBJ_FLAG_SNAPPABLE);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
lv_label_set_text_fmt(label, "Panel %"LV_PRIu32, i);
|
lv_label_set_text_fmt(label, "Panel %"LV_PRIu32, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,20 +13,20 @@ void lv_example_scroll_4(void)
|
|||||||
|
|
||||||
lv_obj_t * label = lv_label_create(obj);
|
lv_obj_t * label = lv_label_create(obj);
|
||||||
lv_label_set_text(label,
|
lv_label_set_text(label,
|
||||||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n"
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n"
|
||||||
"Etiam dictum, tortor vestibulum lacinia laoreet, mi neque consectetur neque, vel mattis odio dolor egestas ligula. \n"
|
"Etiam dictum, tortor vestibulum lacinia laoreet, mi neque consectetur neque, vel mattis odio dolor egestas ligula. \n"
|
||||||
"Sed vestibulum sapien nulla, id convallis ex porttitor nec. \n"
|
"Sed vestibulum sapien nulla, id convallis ex porttitor nec. \n"
|
||||||
"Duis et massa eu libero accumsan faucibus a in arcu. \n"
|
"Duis et massa eu libero accumsan faucibus a in arcu. \n"
|
||||||
"Ut pulvinar odio lorem, vel tempus turpis condimentum quis. Nam consectetur condimentum sem in auctor. \n"
|
"Ut pulvinar odio lorem, vel tempus turpis condimentum quis. Nam consectetur condimentum sem in auctor. \n"
|
||||||
"Sed nisl augue, venenatis in blandit et, gravida ac tortor. \n"
|
"Sed nisl augue, venenatis in blandit et, gravida ac tortor. \n"
|
||||||
"Etiam dapibus elementum suscipit. \n"
|
"Etiam dapibus elementum suscipit. \n"
|
||||||
"Proin mollis sollicitudin convallis. \n"
|
"Proin mollis sollicitudin convallis. \n"
|
||||||
"Integer dapibus tempus arcu nec viverra. \n"
|
"Integer dapibus tempus arcu nec viverra. \n"
|
||||||
"Donec molestie nulla enim, eu interdum velit placerat quis. \n"
|
"Donec molestie nulla enim, eu interdum velit placerat quis. \n"
|
||||||
"Donec id efficitur risus, at molestie turpis. \n"
|
"Donec id efficitur risus, at molestie turpis. \n"
|
||||||
"Suspendisse vestibulum consectetur nunc ut commodo. \n"
|
"Suspendisse vestibulum consectetur nunc ut commodo. \n"
|
||||||
"Fusce molestie rhoncus nisi sit amet tincidunt. \n"
|
"Fusce molestie rhoncus nisi sit amet tincidunt. \n"
|
||||||
"Suspendisse a nunc ut magna ornare volutpat.");
|
"Suspendisse a nunc ut magna ornare volutpat.");
|
||||||
|
|
||||||
|
|
||||||
/*Remove the style of scrollbar to have clean start*/
|
/*Remove the style of scrollbar to have clean start*/
|
||||||
|
|||||||
@@ -13,7 +13,8 @@ void lv_example_scroll_5(void)
|
|||||||
lv_obj_center(obj);
|
lv_obj_center(obj);
|
||||||
|
|
||||||
lv_obj_t * label = lv_label_create(obj);
|
lv_obj_t * label = lv_label_create(obj);
|
||||||
lv_label_set_text(label,"میکروکُنترولر (به انگلیسی: Microcontroller) گونهای ریزپردازنده است که دارای حافظهٔ دسترسی تصادفی (RAM) و حافظهٔ فقطخواندنی (ROM)، تایمر، پورتهای ورودی و خروجی (I/O) و درگاه ترتیبی (Serial Port پورت سریال)، درون خود تراشه است، و میتواند به تنهایی ابزارهای دیگر را کنترل کند. به عبارت دیگر یک میکروکنترلر، مدار مجتمع کوچکی است که از یک CPU کوچک و اجزای دیگری مانند تایمر، درگاههای ورودی و خروجی آنالوگ و دیجیتال و حافظه تشکیل شدهاست.");
|
lv_label_set_text(label,
|
||||||
|
"میکروکُنترولر (به انگلیسی: Microcontroller) گونهای ریزپردازنده است که دارای حافظهٔ دسترسی تصادفی (RAM) و حافظهٔ فقطخواندنی (ROM)، تایمر، پورتهای ورودی و خروجی (I/O) و درگاه ترتیبی (Serial Port پورت سریال)، درون خود تراشه است، و میتواند به تنهایی ابزارهای دیگر را کنترل کند. به عبارت دیگر یک میکروکنترلر، مدار مجتمع کوچکی است که از یک CPU کوچک و اجزای دیگری مانند تایمر، درگاههای ورودی و خروجی آنالوگ و دیجیتال و حافظه تشکیل شدهاست.");
|
||||||
lv_obj_set_width(label, 400);
|
lv_obj_set_width(label, 400);
|
||||||
lv_obj_set_style_text_font(label, &lv_font_dejavu_16_persian_hebrew, 0);
|
lv_obj_set_style_text_font(label, &lv_font_dejavu_16_persian_hebrew, 0);
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,8 @@ static void scroll_event_cb(lv_event_t * e)
|
|||||||
/*If diff_y is out of the circle use the last point of the circle (the radius)*/
|
/*If diff_y is out of the circle use the last point of the circle (the radius)*/
|
||||||
if(diff_y >= r) {
|
if(diff_y >= r) {
|
||||||
x = r;
|
x = r;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
/*Use Pythagoras theorem to get x from radius and y*/
|
/*Use Pythagoras theorem to get x from radius and y*/
|
||||||
uint32_t x_sqr = r * r - diff_y * diff_y;
|
uint32_t x_sqr = r * r - diff_y * diff_y;
|
||||||
lv_sqrt_res_t res;
|
lv_sqrt_res_t res;
|
||||||
|
|||||||
@@ -6,26 +6,26 @@
|
|||||||
*/
|
*/
|
||||||
void lv_example_style_1(void)
|
void lv_example_style_1(void)
|
||||||
{
|
{
|
||||||
static lv_style_t style;
|
static lv_style_t style;
|
||||||
lv_style_init(&style);
|
lv_style_init(&style);
|
||||||
lv_style_set_radius(&style, 5);
|
lv_style_set_radius(&style, 5);
|
||||||
|
|
||||||
/*Make a gradient*/
|
/*Make a gradient*/
|
||||||
lv_style_set_width(&style, 150);
|
lv_style_set_width(&style, 150);
|
||||||
lv_style_set_height(&style, LV_SIZE_CONTENT);
|
lv_style_set_height(&style, LV_SIZE_CONTENT);
|
||||||
|
|
||||||
lv_style_set_pad_ver(&style, 20);
|
lv_style_set_pad_ver(&style, 20);
|
||||||
lv_style_set_pad_left(&style, 5);
|
lv_style_set_pad_left(&style, 5);
|
||||||
|
|
||||||
lv_style_set_x(&style, lv_pct(50));
|
lv_style_set_x(&style, lv_pct(50));
|
||||||
lv_style_set_y(&style, 80);
|
lv_style_set_y(&style, 80);
|
||||||
|
|
||||||
/*Create an object with the new style*/
|
/*Create an object with the new style*/
|
||||||
lv_obj_t * obj = lv_obj_create(lv_scr_act());
|
lv_obj_t * obj = lv_obj_create(lv_scr_act());
|
||||||
lv_obj_add_style(obj, &style, 0);
|
lv_obj_add_style(obj, &style, 0);
|
||||||
|
|
||||||
lv_obj_t * label = lv_label_create(obj);
|
lv_obj_t * label = lv_label_create(obj);
|
||||||
lv_label_set_text(label, "Hello");
|
lv_label_set_text(label, "Hello");
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ void lv_example_style_12(void)
|
|||||||
lv_obj_add_style(obj, &style, 0);
|
lv_obj_add_style(obj, &style, 0);
|
||||||
|
|
||||||
/*Overwrite the background color locally*/
|
/*Overwrite the background color locally*/
|
||||||
lv_obj_set_style_bg_color(obj,lv_palette_main(LV_PALETTE_ORANGE), LV_PART_MAIN);
|
lv_obj_set_style_bg_color(obj, lv_palette_main(LV_PALETTE_ORANGE), LV_PART_MAIN);
|
||||||
|
|
||||||
lv_obj_center(obj);
|
lv_obj_center(obj);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ void lv_example_style_5(void)
|
|||||||
/*Add a shadow*/
|
/*Add a shadow*/
|
||||||
lv_style_set_shadow_width(&style, 55);
|
lv_style_set_shadow_width(&style, 55);
|
||||||
lv_style_set_shadow_color(&style, lv_palette_main(LV_PALETTE_BLUE));
|
lv_style_set_shadow_color(&style, lv_palette_main(LV_PALETTE_BLUE));
|
||||||
// lv_style_set_shadow_ofs_x(&style, 10);
|
// lv_style_set_shadow_ofs_x(&style, 10);
|
||||||
// lv_style_set_shadow_ofs_y(&style, 20);
|
// lv_style_set_shadow_ofs_y(&style, 20);
|
||||||
|
|
||||||
/*Create an object with the new style*/
|
/*Create an object with the new style*/
|
||||||
lv_obj_t * obj = lv_obj_create(lv_scr_act());
|
lv_obj_t * obj = lv_obj_create(lv_scr_act());
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ void lv_example_style_8(void)
|
|||||||
lv_obj_t * obj = lv_label_create(lv_scr_act());
|
lv_obj_t * obj = lv_label_create(lv_scr_act());
|
||||||
lv_obj_add_style(obj, &style, 0);
|
lv_obj_add_style(obj, &style, 0);
|
||||||
lv_label_set_text(obj, "Text of\n"
|
lv_label_set_text(obj, "Text of\n"
|
||||||
"a label");
|
"a label");
|
||||||
|
|
||||||
lv_obj_center(obj);
|
lv_obj_center(obj);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ LV_IMG_DECLARE(animimg001)
|
|||||||
LV_IMG_DECLARE(animimg002)
|
LV_IMG_DECLARE(animimg002)
|
||||||
LV_IMG_DECLARE(animimg003)
|
LV_IMG_DECLARE(animimg003)
|
||||||
|
|
||||||
static const lv_img_dsc_t* anim_imgs[3] = {
|
static const lv_img_dsc_t * anim_imgs[3] = {
|
||||||
&animimg001,
|
&animimg001,
|
||||||
&animimg002,
|
&animimg002,
|
||||||
&animimg003,
|
&animimg003,
|
||||||
@@ -14,7 +14,7 @@ void lv_example_animimg_1(void)
|
|||||||
{
|
{
|
||||||
lv_obj_t * animimg0 = lv_animimg_create(lv_scr_act());
|
lv_obj_t * animimg0 = lv_animimg_create(lv_scr_act());
|
||||||
lv_obj_center(animimg0);
|
lv_obj_center(animimg0);
|
||||||
lv_animimg_set_src(animimg0, (lv_img_dsc_t**) anim_imgs, 3);
|
lv_animimg_set_src(animimg0, (lv_img_dsc_t **) anim_imgs, 3);
|
||||||
lv_animimg_set_duration(animimg0, 1000);
|
lv_animimg_set_duration(animimg0, 1000);
|
||||||
lv_animimg_set_repeat_count(animimg0, LV_ANIM_REPEAT_INFINITE);
|
lv_animimg_set_repeat_count(animimg0, LV_ANIM_REPEAT_INFINITE);
|
||||||
lv_animimg_start(animimg0);
|
lv_animimg_start(animimg0);
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
|
|
||||||
void lv_example_arc_1(void)
|
void lv_example_arc_1(void)
|
||||||
{
|
{
|
||||||
/*Create an Arc*/
|
/*Create an Arc*/
|
||||||
lv_obj_t * arc = lv_arc_create(lv_scr_act());
|
lv_obj_t * arc = lv_arc_create(lv_scr_act());
|
||||||
lv_obj_set_size(arc, 150, 150);
|
lv_obj_set_size(arc, 150, 150);
|
||||||
lv_arc_set_rotation(arc, 135);
|
lv_arc_set_rotation(arc, 135);
|
||||||
lv_arc_set_bg_angles(arc, 0, 270);
|
lv_arc_set_bg_angles(arc, 0, 270);
|
||||||
lv_arc_set_value(arc, 40);
|
lv_arc_set_value(arc, 40);
|
||||||
lv_obj_center(arc);
|
lv_obj_center(arc);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -12,23 +12,23 @@ static void set_angle(void * obj, int32_t v)
|
|||||||
*/
|
*/
|
||||||
void lv_example_arc_2(void)
|
void lv_example_arc_2(void)
|
||||||
{
|
{
|
||||||
/*Create an Arc*/
|
/*Create an Arc*/
|
||||||
lv_obj_t * arc = lv_arc_create(lv_scr_act());
|
lv_obj_t * arc = lv_arc_create(lv_scr_act());
|
||||||
lv_arc_set_rotation(arc, 270);
|
lv_arc_set_rotation(arc, 270);
|
||||||
lv_arc_set_bg_angles(arc, 0, 360);
|
lv_arc_set_bg_angles(arc, 0, 360);
|
||||||
lv_obj_remove_style(arc, NULL, LV_PART_KNOB); /*Be sure the knob is not displayed*/
|
lv_obj_remove_style(arc, NULL, LV_PART_KNOB); /*Be sure the knob is not displayed*/
|
||||||
lv_obj_clear_flag(arc, LV_OBJ_FLAG_CLICKABLE); /*To not allow adjusting by click*/
|
lv_obj_clear_flag(arc, LV_OBJ_FLAG_CLICKABLE); /*To not allow adjusting by click*/
|
||||||
lv_obj_center(arc);
|
lv_obj_center(arc);
|
||||||
|
|
||||||
lv_anim_t a;
|
lv_anim_t a;
|
||||||
lv_anim_init(&a);
|
lv_anim_init(&a);
|
||||||
lv_anim_set_var(&a, arc);
|
lv_anim_set_var(&a, arc);
|
||||||
lv_anim_set_exec_cb(&a, set_angle);
|
lv_anim_set_exec_cb(&a, set_angle);
|
||||||
lv_anim_set_time(&a, 1000);
|
lv_anim_set_time(&a, 1000);
|
||||||
lv_anim_set_repeat_count(&a, LV_ANIM_REPEAT_INFINITE); /*Just for the demo*/
|
lv_anim_set_repeat_count(&a, LV_ANIM_REPEAT_INFINITE); /*Just for the demo*/
|
||||||
lv_anim_set_repeat_delay(&a, 500);
|
lv_anim_set_repeat_delay(&a, 500);
|
||||||
lv_anim_set_values(&a, 0, 100);
|
lv_anim_set_values(&a, 0, 100);
|
||||||
lv_anim_start(&a);
|
lv_anim_start(&a);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#include "../../lv_examples.h"
|
#include "../../lv_examples.h"
|
||||||
#if LV_USE_BAR && LV_BUILD_EXAMPLES
|
#if LV_USE_BAR && LV_BUILD_EXAMPLES
|
||||||
|
|
||||||
static void set_value(void *bar, int32_t v)
|
static void set_value(void * bar, int32_t v)
|
||||||
{
|
{
|
||||||
lv_bar_set_value(bar, v, LV_ANIM_OFF);
|
lv_bar_set_value(bar, v, LV_ANIM_OFF);
|
||||||
}
|
}
|
||||||
@@ -11,7 +11,7 @@ static void event_cb(lv_event_t * e)
|
|||||||
lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e);
|
lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e);
|
||||||
if(dsc->part != LV_PART_INDICATOR) return;
|
if(dsc->part != LV_PART_INDICATOR) return;
|
||||||
|
|
||||||
lv_obj_t * obj= lv_event_get_target(e);
|
lv_obj_t * obj = lv_event_get_target(e);
|
||||||
|
|
||||||
lv_draw_label_dsc_t label_dsc;
|
lv_draw_label_dsc_t label_dsc;
|
||||||
lv_draw_label_dsc_init(&label_dsc);
|
lv_draw_label_dsc_init(&label_dsc);
|
||||||
@@ -21,7 +21,8 @@ static void event_cb(lv_event_t * e)
|
|||||||
lv_snprintf(buf, sizeof(buf), "%d", (int)lv_bar_get_value(obj));
|
lv_snprintf(buf, sizeof(buf), "%d", (int)lv_bar_get_value(obj));
|
||||||
|
|
||||||
lv_point_t txt_size;
|
lv_point_t txt_size;
|
||||||
lv_txt_get_size(&txt_size, buf, label_dsc.font, label_dsc.letter_space, label_dsc.line_space, LV_COORD_MAX, label_dsc.flag);
|
lv_txt_get_size(&txt_size, buf, label_dsc.font, label_dsc.letter_space, label_dsc.line_space, LV_COORD_MAX,
|
||||||
|
label_dsc.flag);
|
||||||
|
|
||||||
lv_area_t txt_area;
|
lv_area_t txt_area;
|
||||||
/*If the indicator is long enough put the text inside on the right*/
|
/*If the indicator is long enough put the text inside on the right*/
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ void lv_example_btn_3(void)
|
|||||||
{
|
{
|
||||||
/*Properties to transition*/
|
/*Properties to transition*/
|
||||||
static lv_style_prop_t props[] = {
|
static lv_style_prop_t props[] = {
|
||||||
LV_STYLE_TRANSFORM_WIDTH, LV_STYLE_TRANSFORM_HEIGHT, LV_STYLE_TEXT_LETTER_SPACE, 0
|
LV_STYLE_TRANSFORM_WIDTH, LV_STYLE_TRANSFORM_HEIGHT, LV_STYLE_TEXT_LETTER_SPACE, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
/*Transition descriptor when going back to the default state.
|
/*Transition descriptor when going back to the default state.
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ static void event_handler(lv_event_t * e)
|
|||||||
|
|
||||||
static const char * btnm_map[] = {"1", "2", "3", "4", "5", "\n",
|
static const char * btnm_map[] = {"1", "2", "3", "4", "5", "\n",
|
||||||
"6", "7", "8", "9", "0", "\n",
|
"6", "7", "8", "9", "0", "\n",
|
||||||
"Action1", "Action2", ""};
|
"Action1", "Action2", ""
|
||||||
|
};
|
||||||
|
|
||||||
void lv_example_btnmatrix_1(void)
|
void lv_example_btnmatrix_1(void)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ void lv_example_canvas_2(void)
|
|||||||
/*Create hole on the canvas*/
|
/*Create hole on the canvas*/
|
||||||
uint32_t x;
|
uint32_t x;
|
||||||
uint32_t y;
|
uint32_t y;
|
||||||
for( y = 10; y < 30; y++) {
|
for(y = 10; y < 30; y++) {
|
||||||
for( x = 5; x < 20; x++) {
|
for(x = 5; x < 20; x++) {
|
||||||
lv_canvas_set_px_color(canvas, x, y, c0);
|
lv_canvas_set_px_color(canvas, x, y, c0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,13 +16,15 @@ static void draw_event_cb(lv_event_t * e)
|
|||||||
|
|
||||||
/*Add a line mask that keeps the area below the line*/
|
/*Add a line mask that keeps the area below the line*/
|
||||||
lv_draw_mask_line_param_t line_mask_param;
|
lv_draw_mask_line_param_t line_mask_param;
|
||||||
lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y, LV_DRAW_MASK_LINE_SIDE_BOTTOM);
|
lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y,
|
||||||
|
LV_DRAW_MASK_LINE_SIDE_BOTTOM);
|
||||||
int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL);
|
int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL);
|
||||||
|
|
||||||
/*Add a fade effect: transparent bottom covering top*/
|
/*Add a fade effect: transparent bottom covering top*/
|
||||||
lv_coord_t h = lv_obj_get_height(obj);
|
lv_coord_t h = lv_obj_get_height(obj);
|
||||||
lv_draw_mask_fade_param_t fade_mask_param;
|
lv_draw_mask_fade_param_t fade_mask_param;
|
||||||
lv_draw_mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP,obj->coords.y2);
|
lv_draw_mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP,
|
||||||
|
obj->coords.y2);
|
||||||
int16_t fade_mask_id = lv_draw_mask_add(&fade_mask_param, NULL);
|
int16_t fade_mask_id = lv_draw_mask_add(&fade_mask_param, NULL);
|
||||||
|
|
||||||
/*Draw a rectangle that will be affected by the mask*/
|
/*Draw a rectangle that will be affected by the mask*/
|
||||||
@@ -77,7 +79,8 @@ static void draw_event_cb(lv_event_t * e)
|
|||||||
|
|
||||||
if(dsc->id == 1 || dsc->id == 3) {
|
if(dsc->id == 1 || dsc->id == 3) {
|
||||||
dsc->line_dsc->color = lv_palette_main(LV_PALETTE_GREEN);
|
dsc->line_dsc->color = lv_palette_main(LV_PALETTE_GREEN);
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
dsc->line_dsc->color = lv_palette_lighten(LV_PALETTE_GREY, 1);
|
dsc->line_dsc->color = lv_palette_lighten(LV_PALETTE_GREY, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,7 +38,8 @@ void lv_example_chart_3(void)
|
|||||||
|
|
||||||
/*Add two data series*/
|
/*Add two data series*/
|
||||||
lv_chart_series_t * ser1 = lv_chart_add_series(chart, lv_palette_lighten(LV_PALETTE_GREEN, 2), LV_CHART_AXIS_PRIMARY_Y);
|
lv_chart_series_t * ser1 = lv_chart_add_series(chart, lv_palette_lighten(LV_PALETTE_GREEN, 2), LV_CHART_AXIS_PRIMARY_Y);
|
||||||
lv_chart_series_t * ser2 = lv_chart_add_series(chart, lv_palette_darken(LV_PALETTE_GREEN, 2), LV_CHART_AXIS_SECONDARY_Y);
|
lv_chart_series_t * ser2 = lv_chart_add_series(chart, lv_palette_darken(LV_PALETTE_GREEN, 2),
|
||||||
|
LV_CHART_AXIS_SECONDARY_Y);
|
||||||
|
|
||||||
/*Set the next points on 'ser1'*/
|
/*Set the next points on 'ser1'*/
|
||||||
lv_chart_set_next_value(chart, ser1, 31);
|
lv_chart_set_next_value(chart, ser1, 31);
|
||||||
|
|||||||
@@ -78,8 +78,8 @@ void lv_example_chart_4(void)
|
|||||||
lv_chart_series_t * ser2 = lv_chart_add_series(chart, lv_palette_main(LV_PALETTE_GREEN), LV_CHART_AXIS_PRIMARY_Y);
|
lv_chart_series_t * ser2 = lv_chart_add_series(chart, lv_palette_main(LV_PALETTE_GREEN), LV_CHART_AXIS_PRIMARY_Y);
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
for(i = 0; i < 10; i++) {
|
for(i = 0; i < 10; i++) {
|
||||||
lv_chart_set_next_value(chart, ser1, lv_rand(60,90));
|
lv_chart_set_next_value(chart, ser1, lv_rand(60, 90));
|
||||||
lv_chart_set_next_value(chart, ser2, lv_rand(10,40));
|
lv_chart_set_next_value(chart, ser2, lv_rand(10, 40));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,46 +5,46 @@ static lv_obj_t * chart;
|
|||||||
/* Source: https://github.com/ankur219/ECG-Arrhythmia-classification/blob/642230149583adfae1e4bd26c6f0e1fd8af2be0e/sample.csv*/
|
/* Source: https://github.com/ankur219/ECG-Arrhythmia-classification/blob/642230149583adfae1e4bd26c6f0e1fd8af2be0e/sample.csv*/
|
||||||
static const lv_coord_t ecg_sample[] = {
|
static const lv_coord_t ecg_sample[] = {
|
||||||
-2, 2, 0, -15, -39, -63, -71, -68, -67, -69, -84, -95, -104, -107, -108, -107, -107, -107, -107, -114, -118, -117,
|
-2, 2, 0, -15, -39, -63, -71, -68, -67, -69, -84, -95, -104, -107, -108, -107, -107, -107, -107, -114, -118, -117,
|
||||||
-112, -100, -89, -83, -71, -64, -58, -58, -62, -62, -58, -51, -46, -39, -27, -10, 4, 7, 1, -3, 0, 14, 24, 30, 25, 19,
|
-112, -100, -89, -83, -71, -64, -58, -58, -62, -62, -58, -51, -46, -39, -27, -10, 4, 7, 1, -3, 0, 14, 24, 30, 25, 19,
|
||||||
13, 7, 12, 15, 18, 21, 13, 6, 9, 8, 17, 19, 13, 11, 11, 11, 23, 30, 37, 34, 25, 14, 15, 19, 28, 31, 26, 23, 25, 31,
|
13, 7, 12, 15, 18, 21, 13, 6, 9, 8, 17, 19, 13, 11, 11, 11, 23, 30, 37, 34, 25, 14, 15, 19, 28, 31, 26, 23, 25, 31,
|
||||||
39, 37, 37, 34, 30, 32, 22, 29, 31, 33, 37, 23, 13, 7, 2, 4, -2, 2, 11, 22, 33, 19, -1, -27, -55, -67, -72, -71, -63,
|
39, 37, 37, 34, 30, 32, 22, 29, 31, 33, 37, 23, 13, 7, 2, 4, -2, 2, 11, 22, 33, 19, -1, -27, -55, -67, -72, -71, -63,
|
||||||
-49, -18, 35, 113, 230, 369, 525, 651, 722, 730, 667, 563, 454, 357, 305, 288, 274, 255, 212, 173, 143, 117, 82, 39,
|
-49, -18, 35, 113, 230, 369, 525, 651, 722, 730, 667, 563, 454, 357, 305, 288, 274, 255, 212, 173, 143, 117, 82, 39,
|
||||||
-13, -53, -78, -91, -101, -113, -124, -131, -131, -131, -129, -128, -129, -125, -123, -123, -129, -139, -148, -153,
|
-13, -53, -78, -91, -101, -113, -124, -131, -131, -131, -129, -128, -129, -125, -123, -123, -129, -139, -148, -153,
|
||||||
-159, -166, -183, -205, -227, -243, -248, -246, -254, -280, -327, -381, -429, -473, -517, -556, -592, -612, -620,
|
-159, -166, -183, -205, -227, -243, -248, -246, -254, -280, -327, -381, -429, -473, -517, -556, -592, -612, -620,
|
||||||
-620, -614, -604, -591, -574, -540, -497, -441, -389, -358, -336, -313, -284, -222, -167, -114, -70, -47, -28, -4, 12,
|
-620, -614, -604, -591, -574, -540, -497, -441, -389, -358, -336, -313, -284, -222, -167, -114, -70, -47, -28, -4, 12,
|
||||||
38, 52, 58, 56, 56, 57, 68, 77, 86, 86, 80, 69, 67, 70, 82, 85, 89, 90, 89, 89, 88, 91, 96, 97, 91, 83, 78, 82, 88, 95,
|
38, 52, 58, 56, 56, 57, 68, 77, 86, 86, 80, 69, 67, 70, 82, 85, 89, 90, 89, 89, 88, 91, 96, 97, 91, 83, 78, 82, 88, 95,
|
||||||
96, 105, 106, 110, 102, 100, 96, 98, 97, 101, 98, 99, 100, 107, 113, 119, 115, 110, 96, 85, 73, 64, 69, 76, 79,
|
96, 105, 106, 110, 102, 100, 96, 98, 97, 101, 98, 99, 100, 107, 113, 119, 115, 110, 96, 85, 73, 64, 69, 76, 79,
|
||||||
78, 75, 85, 100, 114, 113, 105, 96, 84, 74, 66, 60, 75, 85, 89, 83, 67, 61, 67, 73, 79, 74, 63, 57, 56, 58, 61, 55,
|
78, 75, 85, 100, 114, 113, 105, 96, 84, 74, 66, 60, 75, 85, 89, 83, 67, 61, 67, 73, 79, 74, 63, 57, 56, 58, 61, 55,
|
||||||
48, 45, 46, 55, 62, 55, 49, 43, 50, 59, 63, 57, 40, 31, 23, 25, 27, 31, 35, 34, 30, 36, 34, 42, 38, 36, 40, 46, 50,
|
48, 45, 46, 55, 62, 55, 49, 43, 50, 59, 63, 57, 40, 31, 23, 25, 27, 31, 35, 34, 30, 36, 34, 42, 38, 36, 40, 46, 50,
|
||||||
47, 32, 30, 32, 52, 67, 73, 71, 63, 54, 53, 45, 41, 28, 13, 3, 1, 4, 4, -8, -23, -32, -31, -19, -5, 3, 9, 13, 19,
|
47, 32, 30, 32, 52, 67, 73, 71, 63, 54, 53, 45, 41, 28, 13, 3, 1, 4, 4, -8, -23, -32, -31, -19, -5, 3, 9, 13, 19,
|
||||||
24, 27, 29, 25, 22, 26, 32, 42, 51, 56, 60, 57, 55, 53, 53, 54, 59, 54, 49, 26, -3, -11, -20, -47, -100, -194, -236,
|
24, 27, 29, 25, 22, 26, 32, 42, 51, 56, 60, 57, 55, 53, 53, 54, 59, 54, 49, 26, -3, -11, -20, -47, -100, -194, -236,
|
||||||
-212, -123, 8, 103, 142, 147, 120, 105, 98, 93, 81, 61, 40, 26, 28, 30, 30, 27, 19, 17, 21, 20, 19, 19, 22, 36, 40,
|
-212, -123, 8, 103, 142, 147, 120, 105, 98, 93, 81, 61, 40, 26, 28, 30, 30, 27, 19, 17, 21, 20, 19, 19, 22, 36, 40,
|
||||||
35, 20, 7, 1, 10, 18, 27, 22, 6, -4, -2, 3, 6, -2, -13, -14, -10, -2, 3, 2, -1, -5, -10, -19, -32, -42, -55, -60,
|
35, 20, 7, 1, 10, 18, 27, 22, 6, -4, -2, 3, 6, -2, -13, -14, -10, -2, 3, 2, -1, -5, -10, -19, -32, -42, -55, -60,
|
||||||
-68, -77, -86, -101, -110, -117, -115, -104, -92, -84, -85, -84, -73, -65, -52, -50, -45, -35, -20, -3, 12, 20, 25,
|
-68, -77, -86, -101, -110, -117, -115, -104, -92, -84, -85, -84, -73, -65, -52, -50, -45, -35, -20, -3, 12, 20, 25,
|
||||||
26, 28, 28, 30, 28, 25, 28, 33, 42, 42, 36, 23, 9, 0, 1, -4, 1, -4, -4, 1, 5, 9, 9, -3, -1, -18, -50, -108, -190,
|
26, 28, 28, 30, 28, 25, 28, 33, 42, 42, 36, 23, 9, 0, 1, -4, 1, -4, -4, 1, 5, 9, 9, -3, -1, -18, -50, -108, -190,
|
||||||
-272, -340, -408, -446, -537, -643, -777, -894, -920, -853, -697, -461, -251, -60, 58, 103, 129, 139, 155, 170, 173,
|
-272, -340, -408, -446, -537, -643, -777, -894, -920, -853, -697, -461, -251, -60, 58, 103, 129, 139, 155, 170, 173,
|
||||||
178, 185, 190, 193, 200, 208, 215, 225, 224, 232, 234, 240, 240, 236, 229, 226, 224, 232, 233, 232, 224, 219, 219,
|
178, 185, 190, 193, 200, 208, 215, 225, 224, 232, 234, 240, 240, 236, 229, 226, 224, 232, 233, 232, 224, 219, 219,
|
||||||
223, 231, 226, 223, 219, 218, 223, 223, 223, 233, 245, 268, 286, 296, 295, 283, 271, 263, 252, 243, 226, 210, 197,
|
223, 231, 226, 223, 219, 218, 223, 223, 223, 233, 245, 268, 286, 296, 295, 283, 271, 263, 252, 243, 226, 210, 197,
|
||||||
186, 171, 152, 133, 117, 114, 110, 107, 96, 80, 63, 48, 40, 38, 34, 28, 15, 2, -7, -11, -14, -18, -29, -37, -44, -50,
|
186, 171, 152, 133, 117, 114, 110, 107, 96, 80, 63, 48, 40, 38, 34, 28, 15, 2, -7, -11, -14, -18, -29, -37, -44, -50,
|
||||||
-58, -63, -61, -52, -50, -48, -61, -59, -58, -54, -47, -52, -62, -61, -64, -54, -52, -59, -69, -76, -76, -69, -67,
|
-58, -63, -61, -52, -50, -48, -61, -59, -58, -54, -47, -52, -62, -61, -64, -54, -52, -59, -69, -76, -76, -69, -67,
|
||||||
-74, -78, -81, -80, -73, -65, -57, -53, -51, -47, -35, -27, -22, -22, -24, -21, -17, -13, -10, -11, -13, -20, -20,
|
-74, -78, -81, -80, -73, -65, -57, -53, -51, -47, -35, -27, -22, -22, -24, -21, -17, -13, -10, -11, -13, -20, -20,
|
||||||
-12, -2, 7, -1, -12, -16, -13, -2, 2, -4, -5, -2, 9, 19, 19, 14, 11, 13, 19, 21, 20, 18, 19, 19, 19, 16, 15, 13, 14,
|
-12, -2, 7, -1, -12, -16, -13, -2, 2, -4, -5, -2, 9, 19, 19, 14, 11, 13, 19, 21, 20, 18, 19, 19, 19, 16, 15, 13, 14,
|
||||||
9, 3, -5, -9, -5, -3, -2, -3, -3, 2, 8, 9, 9, 5, 6, 8, 8, 7, 4, 3, 4, 5, 3, 5, 5, 13, 13, 12, 10, 10, 15, 22, 17,
|
9, 3, -5, -9, -5, -3, -2, -3, -3, 2, 8, 9, 9, 5, 6, 8, 8, 7, 4, 3, 4, 5, 3, 5, 5, 13, 13, 12, 10, 10, 15, 22, 17,
|
||||||
14, 7, 10, 15, 16, 11, 12, 10, 13, 9, -2, -4, -2, 7, 16, 16, 17, 16, 7, -1, -16, -18, -16, -9, -4, -5, -10, -9, -8,
|
14, 7, 10, 15, 16, 11, 12, 10, 13, 9, -2, -4, -2, 7, 16, 16, 17, 16, 7, -1, -16, -18, -16, -9, -4, -5, -10, -9, -8,
|
||||||
-3, -4, -10, -19, -20, -16, -9, -9, -23, -40, -48, -43, -33, -19, -21, -26, -31, -33, -19, 0, 17, 24, 9, -17, -47,
|
-3, -4, -10, -19, -20, -16, -9, -9, -23, -40, -48, -43, -33, -19, -21, -26, -31, -33, -19, 0, 17, 24, 9, -17, -47,
|
||||||
-63, -67, -59, -52, -51, -50, -49, -42, -26, -21, -15, -20, -23, -22, -19, -12, -8, 5, 18, 27, 32, 26, 25, 26, 22,
|
-63, -67, -59, -52, -51, -50, -49, -42, -26, -21, -15, -20, -23, -22, -19, -12, -8, 5, 18, 27, 32, 26, 25, 26, 22,
|
||||||
23, 17, 14, 17, 21, 25, 2, -45, -121, -196, -226, -200, -118, -9, 73, 126, 131, 114, 87, 60, 42, 29, 26, 34, 35, 34,
|
23, 17, 14, 17, 21, 25, 2, -45, -121, -196, -226, -200, -118, -9, 73, 126, 131, 114, 87, 60, 42, 29, 26, 34, 35, 34,
|
||||||
25, 12, 9, 7, 3, 2, -8, -11, 2, 23, 38, 41, 23, 9, 10, 13, 16, 8, -8, -17, -23, -26, -25, -21, -15, -10, -13, -13,
|
25, 12, 9, 7, 3, 2, -8, -11, 2, 23, 38, 41, 23, 9, 10, 13, 16, 8, -8, -17, -23, -26, -25, -21, -15, -10, -13, -13,
|
||||||
-19, -22, -29, -40, -48, -48, -54, -55, -66, -82, -85, -90, -92, -98, -114, -119, -124, -129, -132, -146, -146, -138,
|
-19, -22, -29, -40, -48, -48, -54, -55, -66, -82, -85, -90, -92, -98, -114, -119, -124, -129, -132, -146, -146, -138,
|
||||||
-124, -99, -85, -72, -65, -65, -65, -66, -63, -64, -64, -58, -46, -26, -9, 2, 2, 4, 0, 1, 4, 3, 10, 11, 10, 2, -4,
|
-124, -99, -85, -72, -65, -65, -65, -66, -63, -64, -64, -58, -46, -26, -9, 2, 2, 4, 0, 1, 4, 3, 10, 11, 10, 2, -4,
|
||||||
0, 10, 18, 20, 6, 2, -9, -7, -3, -3, -2, -7, -12, -5, 5, 24, 36, 31, 25, 6, 3, 7, 12, 17, 11, 0, -6, -9, -8, -7, -5,
|
0, 10, 18, 20, 6, 2, -9, -7, -3, -3, -2, -7, -12, -5, 5, 24, 36, 31, 25, 6, 3, 7, 12, 17, 11, 0, -6, -9, -8, -7, -5,
|
||||||
-6, -2, -2, -6, -2, 2, 14, 24, 22, 15, 8, 4, 6, 7, 12, 16, 25, 20, 7, -16, -41, -60, -67, -65, -54, -35, -11, 30,
|
-6, -2, -2, -6, -2, 2, 14, 24, 22, 15, 8, 4, 6, 7, 12, 16, 25, 20, 7, -16, -41, -60, -67, -65, -54, -35, -11, 30,
|
||||||
84, 175, 302, 455, 603, 707, 743, 714, 625, 519, 414, 337, 300, 281, 263, 239, 197, 163, 136, 109, 77, 34, -18, -50,
|
84, 175, 302, 455, 603, 707, 743, 714, 625, 519, 414, 337, 300, 281, 263, 239, 197, 163, 136, 109, 77, 34, -18, -50,
|
||||||
-66, -74, -79, -92, -107, -117, -127, -129, -135, -139, -141, -155, -159, -167, -171, -169, -174, -175, -178, -191,
|
-66, -74, -79, -92, -107, -117, -127, -129, -135, -139, -141, -155, -159, -167, -171, -169, -174, -175, -178, -191,
|
||||||
-202, -223, -235, -243, -237, -240, -256, -298, -345, -393, -432, -475, -518, -565, -596, -619, -623, -623, -614,
|
-202, -223, -235, -243, -237, -240, -256, -298, -345, -393, -432, -475, -518, -565, -596, -619, -623, -623, -614,
|
||||||
-599, -583, -559, -524, -477, -425, -383, -357, -331, -301, -252, -198, -143, -96, -57, -29, -8, 10, 31, 45, 60, 65,
|
-599, -583, -559, -524, -477, -425, -383, -357, -331, -301, -252, -198, -143, -96, -57, -29, -8, 10, 31, 45, 60, 65,
|
||||||
70, 74, 76, 79, 82, 79, 75, 62,
|
70, 74, 76, 79, 82, 79, 75, 62,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void slider_x_event_cb(lv_event_t * e)
|
static void slider_x_event_cb(lv_event_t * e)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ void lv_example_chart_6(void)
|
|||||||
ser = lv_chart_add_series(chart, lv_palette_main(LV_PALETTE_RED), LV_CHART_AXIS_PRIMARY_Y);
|
ser = lv_chart_add_series(chart, lv_palette_main(LV_PALETTE_RED), LV_CHART_AXIS_PRIMARY_Y);
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
for(i = 0; i < 10; i++) {
|
for(i = 0; i < 10; i++) {
|
||||||
lv_chart_set_next_value(chart, ser, lv_rand(10,90));
|
lv_chart_set_next_value(chart, ser, lv_rand(10, 90));
|
||||||
}
|
}
|
||||||
|
|
||||||
lv_chart_set_zoom_x(chart, 500);
|
lv_chart_set_zoom_x(chart, 500);
|
||||||
|
|||||||
@@ -21,8 +21,8 @@ static void draw_event_cb(lv_event_t * e)
|
|||||||
lv_opa_t y_opa = (y_array[p_act] * LV_OPA_50) / 1000;
|
lv_opa_t y_opa = (y_array[p_act] * LV_OPA_50) / 1000;
|
||||||
|
|
||||||
dsc->rect_dsc->bg_color = lv_color_mix(lv_palette_main(LV_PALETTE_RED),
|
dsc->rect_dsc->bg_color = lv_color_mix(lv_palette_main(LV_PALETTE_RED),
|
||||||
lv_palette_main(LV_PALETTE_BLUE),
|
lv_palette_main(LV_PALETTE_BLUE),
|
||||||
x_opa + y_opa);
|
x_opa + y_opa);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@ static void add_data(lv_timer_t * timer)
|
|||||||
{
|
{
|
||||||
LV_UNUSED(timer);
|
LV_UNUSED(timer);
|
||||||
lv_obj_t * chart = timer->user_data;
|
lv_obj_t * chart = timer->user_data;
|
||||||
lv_chart_set_next_value2(chart, lv_chart_get_series_next(chart, NULL), lv_rand(0,200), lv_rand(0,1000));
|
lv_chart_set_next_value2(chart, lv_chart_get_series_next(chart, NULL), lv_rand(0, 200), lv_rand(0, 1000));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -2,10 +2,9 @@
|
|||||||
#if LV_USE_CHART && LV_DRAW_COMPLEX && LV_BUILD_EXAMPLES
|
#if LV_USE_CHART && LV_DRAW_COMPLEX && LV_BUILD_EXAMPLES
|
||||||
|
|
||||||
/* A struct is used to keep track of the series list because later we need to draw to the series in the reverse order to which they were initialised. */
|
/* A struct is used to keep track of the series list because later we need to draw to the series in the reverse order to which they were initialised. */
|
||||||
typedef struct
|
typedef struct {
|
||||||
{
|
lv_obj_t * obj;
|
||||||
lv_obj_t *obj;
|
lv_chart_series_t * series_list[3];
|
||||||
lv_chart_series_t *series_list[3];
|
|
||||||
} stacked_area_chart_t;
|
} stacked_area_chart_t;
|
||||||
|
|
||||||
static stacked_area_chart_t stacked_area_chart;
|
static stacked_area_chart_t stacked_area_chart;
|
||||||
@@ -13,20 +12,20 @@ static stacked_area_chart_t stacked_area_chart;
|
|||||||
/**
|
/**
|
||||||
* Callback which draws the blocks of colour under the lines
|
* Callback which draws the blocks of colour under the lines
|
||||||
**/
|
**/
|
||||||
static void draw_event_cb(lv_event_t *e)
|
static void draw_event_cb(lv_event_t * e)
|
||||||
{
|
{
|
||||||
lv_obj_t *obj = lv_event_get_target(e);
|
lv_obj_t * obj = lv_event_get_target(e);
|
||||||
|
|
||||||
/*Add the faded area before the lines are drawn*/
|
/*Add the faded area before the lines are drawn*/
|
||||||
lv_obj_draw_part_dsc_t *dsc = lv_event_get_draw_part_dsc(e);
|
lv_obj_draw_part_dsc_t * dsc = lv_event_get_draw_part_dsc(e);
|
||||||
if (dsc->part == LV_PART_ITEMS)
|
if(dsc->part == LV_PART_ITEMS) {
|
||||||
{
|
if(!dsc->p1 || !dsc->p2)
|
||||||
if (!dsc->p1 || !dsc->p2)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/*Add a line mask that keeps the area below the line*/
|
/*Add a line mask that keeps the area below the line*/
|
||||||
lv_draw_mask_line_param_t line_mask_param;
|
lv_draw_mask_line_param_t line_mask_param;
|
||||||
lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y, LV_DRAW_MASK_LINE_SIDE_BOTTOM);
|
lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y,
|
||||||
|
LV_DRAW_MASK_LINE_SIDE_BOTTOM);
|
||||||
int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL);
|
int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL);
|
||||||
|
|
||||||
/*Draw a rectangle that will be affected by the mask*/
|
/*Draw a rectangle that will be affected by the mask*/
|
||||||
@@ -39,7 +38,8 @@ static void draw_event_cb(lv_event_t *e)
|
|||||||
a.x1 = dsc->p1->x;
|
a.x1 = dsc->p1->x;
|
||||||
a.x2 = dsc->p2->x;
|
a.x2 = dsc->p2->x;
|
||||||
a.y1 = LV_MIN(dsc->p1->y, dsc->p2->y);
|
a.y1 = LV_MIN(dsc->p1->y, dsc->p2->y);
|
||||||
a.y2 = obj->coords.y2 - 13; /* -13 cuts off where the rectangle draws over the chart margin. Without this an area of 0 doesn't look like 0 */
|
a.y2 = obj->coords.y2 -
|
||||||
|
13; /* -13 cuts off where the rectangle draws over the chart margin. Without this an area of 0 doesn't look like 0 */
|
||||||
lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a);
|
||||||
|
|
||||||
/*Remove the mask*/
|
/*Remove the mask*/
|
||||||
@@ -55,8 +55,7 @@ static int32_t round_fixed_point(int32_t n, int8_t shift)
|
|||||||
{
|
{
|
||||||
/* Create a bitmask to isolates the decimal part of the fixed point number */
|
/* Create a bitmask to isolates the decimal part of the fixed point number */
|
||||||
int32_t mask = 1;
|
int32_t mask = 1;
|
||||||
for (int32_t bit_pos = 0; bit_pos < shift; bit_pos++)
|
for(int32_t bit_pos = 0; bit_pos < shift; bit_pos++) {
|
||||||
{
|
|
||||||
mask = (mask << 1) + 1;
|
mask = (mask << 1) + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -83,19 +82,21 @@ void lv_example_chart_8(void)
|
|||||||
lv_obj_add_event_cb(stacked_area_chart.obj, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL);
|
lv_obj_add_event_cb(stacked_area_chart.obj, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL);
|
||||||
|
|
||||||
/* Set range to 0 to 100 for percentages. Draw ticks */
|
/* Set range to 0 to 100 for percentages. Draw ticks */
|
||||||
lv_chart_set_range(stacked_area_chart.obj,LV_CHART_AXIS_PRIMARY_Y,0,100);
|
lv_chart_set_range(stacked_area_chart.obj, LV_CHART_AXIS_PRIMARY_Y, 0, 100);
|
||||||
lv_chart_set_axis_tick(stacked_area_chart.obj, LV_CHART_AXIS_PRIMARY_Y, 3, 0, 5, 1, true, 30);
|
lv_chart_set_axis_tick(stacked_area_chart.obj, LV_CHART_AXIS_PRIMARY_Y, 3, 0, 5, 1, true, 30);
|
||||||
|
|
||||||
/*Set point size to 0 so the lines are smooth */
|
/*Set point size to 0 so the lines are smooth */
|
||||||
lv_obj_set_style_size(stacked_area_chart.obj, 0, LV_PART_INDICATOR);
|
lv_obj_set_style_size(stacked_area_chart.obj, 0, LV_PART_INDICATOR);
|
||||||
|
|
||||||
/*Add some data series*/
|
/*Add some data series*/
|
||||||
stacked_area_chart.series_list[0] = lv_chart_add_series(stacked_area_chart.obj, lv_palette_main(LV_PALETTE_RED), LV_CHART_AXIS_PRIMARY_Y);
|
stacked_area_chart.series_list[0] = lv_chart_add_series(stacked_area_chart.obj, lv_palette_main(LV_PALETTE_RED),
|
||||||
stacked_area_chart.series_list[1] = lv_chart_add_series(stacked_area_chart.obj, lv_palette_main(LV_PALETTE_BLUE), LV_CHART_AXIS_PRIMARY_Y);
|
LV_CHART_AXIS_PRIMARY_Y);
|
||||||
stacked_area_chart.series_list[2] = lv_chart_add_series(stacked_area_chart.obj, lv_palette_main(LV_PALETTE_GREEN), LV_CHART_AXIS_PRIMARY_Y);
|
stacked_area_chart.series_list[1] = lv_chart_add_series(stacked_area_chart.obj, lv_palette_main(LV_PALETTE_BLUE),
|
||||||
|
LV_CHART_AXIS_PRIMARY_Y);
|
||||||
|
stacked_area_chart.series_list[2] = lv_chart_add_series(stacked_area_chart.obj, lv_palette_main(LV_PALETTE_GREEN),
|
||||||
|
LV_CHART_AXIS_PRIMARY_Y);
|
||||||
|
|
||||||
for (int point = 0; point < 10; point++)
|
for(int point = 0; point < 10; point++) {
|
||||||
{
|
|
||||||
/* Make some random data */
|
/* Make some random data */
|
||||||
uint32_t vals[3] = {lv_rand(10, 20), lv_rand(20, 30), lv_rand(20, 30)};
|
uint32_t vals[3] = {lv_rand(10, 20), lv_rand(20, 30), lv_rand(20, 30)};
|
||||||
|
|
||||||
@@ -106,8 +107,7 @@ void lv_example_chart_8(void)
|
|||||||
uint32_t decimal_sum = 0;
|
uint32_t decimal_sum = 0;
|
||||||
|
|
||||||
/* Fixed point cascade rounding ensures percentages add to 100 */
|
/* Fixed point cascade rounding ensures percentages add to 100 */
|
||||||
for (int32_t series_index = 0; series_index < 3; series_index++)
|
for(int32_t series_index = 0; series_index < 3; series_index++) {
|
||||||
{
|
|
||||||
decimal_sum += (((vals[series_index] * 100) << fixed_point_shift) / total);
|
decimal_sum += (((vals[series_index] * 100) << fixed_point_shift) / total);
|
||||||
int_sum += (vals[series_index] * 100) / total;
|
int_sum += (vals[series_index] * 100) / total;
|
||||||
|
|
||||||
@@ -120,7 +120,8 @@ void lv_example_chart_8(void)
|
|||||||
/* Draw to the series in the reverse order to which they were initialised.
|
/* Draw to the series in the reverse order to which they were initialised.
|
||||||
Without this the higher values will draw on top of the lower ones.
|
Without this the higher values will draw on top of the lower ones.
|
||||||
This is because the Z-height of a series matches the order it was initialised */
|
This is because the Z-height of a series matches the order it was initialised */
|
||||||
lv_chart_set_next_value(stacked_area_chart.obj, stacked_area_chart.series_list[3 - series_index - 1], draw_heights[series_index]);
|
lv_chart_set_next_value(stacked_area_chart.obj, stacked_area_chart.series_list[3 - series_index - 1],
|
||||||
|
draw_heights[series_index]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ void lv_example_checkbox_2(void)
|
|||||||
lv_obj_set_size(cont1, lv_pct(40), lv_pct(80));
|
lv_obj_set_size(cont1, lv_pct(40), lv_pct(80));
|
||||||
lv_obj_add_event_cb(cont1, radio_event_handler, LV_EVENT_CLICKED, &active_index_1);
|
lv_obj_add_event_cb(cont1, radio_event_handler, LV_EVENT_CLICKED, &active_index_1);
|
||||||
|
|
||||||
for (i = 0;i < 5;i++) {
|
for(i = 0; i < 5; i++) {
|
||||||
lv_snprintf(buf, sizeof(buf), "A %d", (int)i + 1);
|
lv_snprintf(buf, sizeof(buf), "A %d", (int)i + 1);
|
||||||
radiobutton_create(cont1, buf);
|
radiobutton_create(cont1, buf);
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ void lv_example_checkbox_2(void)
|
|||||||
lv_obj_set_x(cont2, lv_pct(50));
|
lv_obj_set_x(cont2, lv_pct(50));
|
||||||
lv_obj_add_event_cb(cont2, radio_event_handler, LV_EVENT_CLICKED, &active_index_2);
|
lv_obj_add_event_cb(cont2, radio_event_handler, LV_EVENT_CLICKED, &active_index_2);
|
||||||
|
|
||||||
for (i = 0;i < 3;i++) {
|
for(i = 0; i < 3; i++) {
|
||||||
lv_snprintf(buf, sizeof(buf), "B %d", (int)i + 1);
|
lv_snprintf(buf, sizeof(buf), "B %d", (int)i + 1);
|
||||||
radiobutton_create(cont2, buf);
|
radiobutton_create(cont2, buf);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,15 +18,15 @@ void lv_example_dropdown_1(void)
|
|||||||
/*Create a normal drop down list*/
|
/*Create a normal drop down list*/
|
||||||
lv_obj_t * dd = lv_dropdown_create(lv_scr_act());
|
lv_obj_t * dd = lv_dropdown_create(lv_scr_act());
|
||||||
lv_dropdown_set_options(dd, "Apple\n"
|
lv_dropdown_set_options(dd, "Apple\n"
|
||||||
"Banana\n"
|
"Banana\n"
|
||||||
"Orange\n"
|
"Orange\n"
|
||||||
"Cherry\n"
|
"Cherry\n"
|
||||||
"Grape\n"
|
"Grape\n"
|
||||||
"Raspberry\n"
|
"Raspberry\n"
|
||||||
"Melon\n"
|
"Melon\n"
|
||||||
"Orange\n"
|
"Orange\n"
|
||||||
"Lemon\n"
|
"Lemon\n"
|
||||||
"Nuts");
|
"Nuts");
|
||||||
|
|
||||||
lv_obj_align(dd, LV_ALIGN_TOP_MID, 0, 20);
|
lv_obj_align(dd, LV_ALIGN_TOP_MID, 0, 20);
|
||||||
lv_obj_add_event_cb(dd, event_handler, LV_EVENT_ALL, NULL);
|
lv_obj_add_event_cb(dd, event_handler, LV_EVENT_ALL, NULL);
|
||||||
|
|||||||
@@ -18,13 +18,13 @@ void lv_example_dropdown_3(void)
|
|||||||
lv_obj_t * dropdown = lv_dropdown_create(lv_scr_act());
|
lv_obj_t * dropdown = lv_dropdown_create(lv_scr_act());
|
||||||
lv_obj_align(dropdown, LV_ALIGN_TOP_LEFT, 10, 10);
|
lv_obj_align(dropdown, LV_ALIGN_TOP_LEFT, 10, 10);
|
||||||
lv_dropdown_set_options(dropdown, "New project\n"
|
lv_dropdown_set_options(dropdown, "New project\n"
|
||||||
"New file\n"
|
"New file\n"
|
||||||
"Save\n"
|
"Save\n"
|
||||||
"Save as ...\n"
|
"Save as ...\n"
|
||||||
"Open project\n"
|
"Open project\n"
|
||||||
"Recent projects\n"
|
"Recent projects\n"
|
||||||
"Preferences\n"
|
"Preferences\n"
|
||||||
"Exit");
|
"Exit");
|
||||||
|
|
||||||
/*Set a fixed text to display on the button of the drop-down list*/
|
/*Set a fixed text to display on the button of the drop-down list*/
|
||||||
lv_dropdown_set_text(dropdown, "Menu");
|
lv_dropdown_set_text(dropdown, "Menu");
|
||||||
|
|||||||
@@ -43,7 +43,8 @@ static void slider_event_cb(lv_event_t * e)
|
|||||||
LV_UNUSED(e);
|
LV_UNUSED(e);
|
||||||
|
|
||||||
/*Recolor the image based on the sliders' values*/
|
/*Recolor the image based on the sliders' values*/
|
||||||
lv_color_t color = lv_color_make(lv_slider_get_value(red_slider), lv_slider_get_value(green_slider), lv_slider_get_value(blue_slider));
|
lv_color_t color = lv_color_make(lv_slider_get_value(red_slider), lv_slider_get_value(green_slider),
|
||||||
|
lv_slider_get_value(blue_slider));
|
||||||
lv_opa_t intense = lv_slider_get_value(intense_slider);
|
lv_opa_t intense = lv_slider_get_value(intense_slider);
|
||||||
lv_obj_set_style_img_recolor_opa(img1, intense, 0);
|
lv_obj_set_style_img_recolor_opa(img1, intense, 0);
|
||||||
lv_obj_set_style_img_recolor(img1, color, 0);
|
lv_obj_set_style_img_recolor(img1, color, 0);
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ static void ta_event_cb(lv_event_t * e)
|
|||||||
void lv_example_keyboard_1(void)
|
void lv_example_keyboard_1(void)
|
||||||
{
|
{
|
||||||
/*Create a keyboard to use it with an of the text areas*/
|
/*Create a keyboard to use it with an of the text areas*/
|
||||||
lv_obj_t *kb = lv_keyboard_create(lv_scr_act());
|
lv_obj_t * kb = lv_keyboard_create(lv_scr_act());
|
||||||
|
|
||||||
/*Create a text area. The keyboard will write here*/
|
/*Create a text area. The keyboard will write here*/
|
||||||
lv_obj_t * ta;
|
lv_obj_t * ta;
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ void lv_example_label_1(void)
|
|||||||
lv_label_set_long_mode(label1, LV_LABEL_LONG_WRAP); /*Break the long lines*/
|
lv_label_set_long_mode(label1, LV_LABEL_LONG_WRAP); /*Break the long lines*/
|
||||||
lv_label_set_recolor(label1, true); /*Enable re-coloring by commands in the text*/
|
lv_label_set_recolor(label1, true); /*Enable re-coloring by commands in the text*/
|
||||||
lv_label_set_text(label1, "#0000ff Re-color# #ff00ff words# #ff0000 of a# label, align the lines to the center "
|
lv_label_set_text(label1, "#0000ff Re-color# #ff00ff words# #ff0000 of a# label, align the lines to the center "
|
||||||
"and wrap long text automatically.");
|
"and wrap long text automatically.");
|
||||||
lv_obj_set_width(label1, 150); /*Set smaller width to make the lines wrap*/
|
lv_obj_set_width(label1, 150); /*Set smaller width to make the lines wrap*/
|
||||||
lv_obj_set_style_text_align(label1, LV_TEXT_ALIGN_CENTER, 0);
|
lv_obj_set_style_text_align(label1, LV_TEXT_ALIGN_CENTER, 0);
|
||||||
lv_obj_align(label1, LV_ALIGN_CENTER, 0, -40);
|
lv_obj_align(label1, LV_ALIGN_CENTER, 0, -40);
|
||||||
|
|||||||
@@ -19,9 +19,9 @@ void lv_example_label_2(void)
|
|||||||
/*Create the main label*/
|
/*Create the main label*/
|
||||||
lv_obj_t * main_label = lv_label_create(lv_scr_act());
|
lv_obj_t * main_label = lv_label_create(lv_scr_act());
|
||||||
lv_label_set_text(main_label, "A simple method to create\n"
|
lv_label_set_text(main_label, "A simple method to create\n"
|
||||||
"shadows on a text.\n"
|
"shadows on a text.\n"
|
||||||
"It even works with\n\n"
|
"It even works with\n\n"
|
||||||
"newlines and spaces.");
|
"newlines and spaces.");
|
||||||
|
|
||||||
/*Set the same text for the shadow label*/
|
/*Set the same text for the shadow label*/
|
||||||
lv_label_set_text(shadow_label, lv_label_get_text(main_label));
|
lv_label_set_text(shadow_label, lv_label_get_text(main_label));
|
||||||
|
|||||||
@@ -13,14 +13,16 @@ void lv_example_label_3(void)
|
|||||||
lv_obj_align(ltr_label, LV_ALIGN_TOP_LEFT, 5, 5);
|
lv_obj_align(ltr_label, LV_ALIGN_TOP_LEFT, 5, 5);
|
||||||
|
|
||||||
lv_obj_t * rtl_label = lv_label_create(lv_scr_act());
|
lv_obj_t * rtl_label = lv_label_create(lv_scr_act());
|
||||||
lv_label_set_text(rtl_label, "מעבד, או בשמו המלא יחידת עיבוד מרכזית (באנגלית: CPU - Central Processing Unit).");
|
lv_label_set_text(rtl_label,
|
||||||
|
"מעבד, או בשמו המלא יחידת עיבוד מרכזית (באנגלית: CPU - Central Processing Unit).");
|
||||||
lv_obj_set_style_base_dir(rtl_label, LV_BASE_DIR_RTL, 0);
|
lv_obj_set_style_base_dir(rtl_label, LV_BASE_DIR_RTL, 0);
|
||||||
lv_obj_set_style_text_font(rtl_label, &lv_font_dejavu_16_persian_hebrew, 0);
|
lv_obj_set_style_text_font(rtl_label, &lv_font_dejavu_16_persian_hebrew, 0);
|
||||||
lv_obj_set_width(rtl_label, 310);
|
lv_obj_set_width(rtl_label, 310);
|
||||||
lv_obj_align(rtl_label, LV_ALIGN_LEFT_MID, 5, 0);
|
lv_obj_align(rtl_label, LV_ALIGN_LEFT_MID, 5, 0);
|
||||||
|
|
||||||
lv_obj_t * cz_label = lv_label_create(lv_scr_act());
|
lv_obj_t * cz_label = lv_label_create(lv_scr_act());
|
||||||
lv_label_set_text(cz_label, "嵌入式系统(Embedded System),\n是一种嵌入机械或电气系统内部、具有专一功能和实时计算性能的计算机系统。");
|
lv_label_set_text(cz_label,
|
||||||
|
"嵌入式系统(Embedded System),\n是一种嵌入机械或电气系统内部、具有专一功能和实时计算性能的计算机系统。");
|
||||||
lv_obj_set_style_text_font(cz_label, &lv_font_simsun_16_cjk, 0);
|
lv_obj_set_style_text_font(cz_label, &lv_font_simsun_16_cjk, 0);
|
||||||
lv_obj_set_width(cz_label, 310);
|
lv_obj_set_width(cz_label, 310);
|
||||||
lv_obj_align(cz_label, LV_ALIGN_BOTTOM_LEFT, 5, -5);
|
lv_obj_align(cz_label, LV_ALIGN_BOTTOM_LEFT, 5, -5);
|
||||||
|
|||||||
@@ -4,76 +4,67 @@
|
|||||||
#include "../../lv_examples.h"
|
#include "../../lv_examples.h"
|
||||||
#if LV_USE_LIST && LV_BUILD_EXAMPLES
|
#if LV_USE_LIST && LV_BUILD_EXAMPLES
|
||||||
|
|
||||||
static lv_obj_t* list1;
|
static lv_obj_t * list1;
|
||||||
static lv_obj_t* list2;
|
static lv_obj_t * list2;
|
||||||
|
|
||||||
static lv_obj_t* currentButton = NULL;
|
static lv_obj_t * currentButton = NULL;
|
||||||
|
|
||||||
static void event_handler(lv_event_t* e)
|
static void event_handler(lv_event_t * e)
|
||||||
{
|
{
|
||||||
lv_event_code_t code = lv_event_get_code(e);
|
lv_event_code_t code = lv_event_get_code(e);
|
||||||
lv_obj_t* obj = lv_event_get_target(e);
|
lv_obj_t * obj = lv_event_get_target(e);
|
||||||
if (code == LV_EVENT_CLICKED)
|
if(code == LV_EVENT_CLICKED) {
|
||||||
{
|
|
||||||
LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj));
|
LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj));
|
||||||
|
|
||||||
if (currentButton == obj)
|
if(currentButton == obj) {
|
||||||
{
|
|
||||||
currentButton = NULL;
|
currentButton = NULL;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
currentButton = obj;
|
currentButton = obj;
|
||||||
}
|
}
|
||||||
lv_obj_t* parent = lv_obj_get_parent(obj);
|
lv_obj_t * parent = lv_obj_get_parent(obj);
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
for (i = 0; i < lv_obj_get_child_cnt(parent); i++)
|
for(i = 0; i < lv_obj_get_child_cnt(parent); i++) {
|
||||||
{
|
lv_obj_t * child = lv_obj_get_child(parent, i);
|
||||||
lv_obj_t* child = lv_obj_get_child(parent, i);
|
if(child == currentButton) {
|
||||||
if (child == currentButton)
|
|
||||||
{
|
|
||||||
lv_obj_add_state(child, LV_STATE_CHECKED);
|
lv_obj_add_state(child, LV_STATE_CHECKED);
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
lv_obj_clear_state(child, LV_STATE_CHECKED);
|
lv_obj_clear_state(child, LV_STATE_CHECKED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_handler_top(lv_event_t* e)
|
static void event_handler_top(lv_event_t * e)
|
||||||
{
|
{
|
||||||
lv_event_code_t code = lv_event_get_code(e);
|
lv_event_code_t code = lv_event_get_code(e);
|
||||||
if (code == LV_EVENT_CLICKED)
|
if(code == LV_EVENT_CLICKED) {
|
||||||
{
|
if(currentButton == NULL) return;
|
||||||
if (currentButton == NULL) return;
|
|
||||||
lv_obj_move_background(currentButton);
|
lv_obj_move_background(currentButton);
|
||||||
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_handler_up(lv_event_t* e)
|
static void event_handler_up(lv_event_t * e)
|
||||||
{
|
{
|
||||||
lv_event_code_t code = lv_event_get_code(e);
|
lv_event_code_t code = lv_event_get_code(e);
|
||||||
if ((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT))
|
if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) {
|
||||||
{
|
if(currentButton == NULL) return;
|
||||||
if (currentButton == NULL) return;
|
|
||||||
uint32_t index = lv_obj_get_index(currentButton);
|
uint32_t index = lv_obj_get_index(currentButton);
|
||||||
if (index <= 0) return;
|
if(index <= 0) return;
|
||||||
lv_obj_move_to_index(currentButton, index - 1);
|
lv_obj_move_to_index(currentButton, index - 1);
|
||||||
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_handler_center(lv_event_t* e)
|
static void event_handler_center(lv_event_t * e)
|
||||||
{
|
{
|
||||||
const lv_event_code_t code = lv_event_get_code(e);
|
const lv_event_code_t code = lv_event_get_code(e);
|
||||||
if ((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT))
|
if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) {
|
||||||
{
|
if(currentButton == NULL) return;
|
||||||
if (currentButton == NULL) return;
|
|
||||||
|
|
||||||
lv_obj_t* parent = lv_obj_get_parent(currentButton);
|
lv_obj_t * parent = lv_obj_get_parent(currentButton);
|
||||||
const uint32_t pos = lv_obj_get_child_cnt(parent) / 2;
|
const uint32_t pos = lv_obj_get_child_cnt(parent) / 2;
|
||||||
|
|
||||||
lv_obj_move_to_index(currentButton, pos);
|
lv_obj_move_to_index(currentButton, pos);
|
||||||
@@ -82,12 +73,11 @@ static void event_handler_center(lv_event_t* e)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_handler_dn(lv_event_t* e)
|
static void event_handler_dn(lv_event_t * e)
|
||||||
{
|
{
|
||||||
const lv_event_code_t code = lv_event_get_code(e);
|
const lv_event_code_t code = lv_event_get_code(e);
|
||||||
if ((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT))
|
if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) {
|
||||||
{
|
if(currentButton == NULL) return;
|
||||||
if (currentButton == NULL) return;
|
|
||||||
const uint32_t index = lv_obj_get_index(currentButton);
|
const uint32_t index = lv_obj_get_index(currentButton);
|
||||||
|
|
||||||
lv_obj_move_to_index(currentButton, index + 1);
|
lv_obj_move_to_index(currentButton, index + 1);
|
||||||
@@ -95,31 +85,27 @@ static void event_handler_dn(lv_event_t* e)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_handler_bottom(lv_event_t* e)
|
static void event_handler_bottom(lv_event_t * e)
|
||||||
{
|
{
|
||||||
const lv_event_code_t code = lv_event_get_code(e);
|
const lv_event_code_t code = lv_event_get_code(e);
|
||||||
if (code == LV_EVENT_CLICKED)
|
if(code == LV_EVENT_CLICKED) {
|
||||||
{
|
if(currentButton == NULL) return;
|
||||||
if (currentButton == NULL) return;
|
|
||||||
lv_obj_move_foreground(currentButton);
|
lv_obj_move_foreground(currentButton);
|
||||||
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void event_handler_swap(lv_event_t* e)
|
static void event_handler_swap(lv_event_t * e)
|
||||||
{
|
{
|
||||||
const lv_event_code_t code = lv_event_get_code(e);
|
const lv_event_code_t code = lv_event_get_code(e);
|
||||||
// lv_obj_t* obj = lv_event_get_target(e);
|
// lv_obj_t* obj = lv_event_get_target(e);
|
||||||
if ((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT))
|
if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) {
|
||||||
{
|
|
||||||
uint32_t cnt = lv_obj_get_child_cnt(list1);
|
uint32_t cnt = lv_obj_get_child_cnt(list1);
|
||||||
for (int i = 0; i < 100; i++)
|
for(int i = 0; i < 100; i++)
|
||||||
if (cnt > 1)
|
if(cnt > 1) {
|
||||||
{
|
lv_obj_t * obj = lv_obj_get_child(list1, rand() % cnt);
|
||||||
lv_obj_t* obj = lv_obj_get_child(list1, rand() % cnt);
|
|
||||||
lv_obj_move_to_index(obj, rand() % cnt);
|
lv_obj_move_to_index(obj, rand() % cnt);
|
||||||
if (currentButton != NULL)
|
if(currentButton != NULL) {
|
||||||
{
|
|
||||||
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -134,14 +120,14 @@ void lv_example_list_2(void)
|
|||||||
lv_obj_set_style_pad_row(list1, 5, 0);
|
lv_obj_set_style_pad_row(list1, 5, 0);
|
||||||
|
|
||||||
/*Add buttons to the list*/
|
/*Add buttons to the list*/
|
||||||
lv_obj_t* btn;
|
lv_obj_t * btn;
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < 15; i++) {
|
for(i = 0; i < 15; i++) {
|
||||||
btn = lv_btn_create(list1);
|
btn = lv_btn_create(list1);
|
||||||
lv_obj_set_width(btn, lv_pct(50));
|
lv_obj_set_width(btn, lv_pct(50));
|
||||||
lv_obj_add_event_cb(btn, event_handler, LV_EVENT_CLICKED, NULL);
|
lv_obj_add_event_cb(btn, event_handler, LV_EVENT_CLICKED, NULL);
|
||||||
|
|
||||||
lv_obj_t* lab = lv_label_create(btn);
|
lv_obj_t * lab = lv_label_create(btn);
|
||||||
lv_label_set_text_fmt(lab, "Item %d", i);
|
lv_label_set_text_fmt(lab, "Item %d", i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,11 @@ static void float_btn_event_cb(lv_event_t * e)
|
|||||||
lv_obj_t * sub_page = lv_menu_page_create(menu, NULL);
|
lv_obj_t * sub_page = lv_menu_page_create(menu, NULL);
|
||||||
|
|
||||||
cont = lv_menu_cont_create(sub_page);
|
cont = lv_menu_cont_create(sub_page);
|
||||||
label= lv_label_create(cont);
|
label = lv_label_create(cont);
|
||||||
lv_label_set_text_fmt(label, "Hello, I am hiding inside %i", btn_cnt);
|
lv_label_set_text_fmt(label, "Hello, I am hiding inside %i", btn_cnt);
|
||||||
|
|
||||||
cont = lv_menu_cont_create(main_page);
|
cont = lv_menu_cont_create(main_page);
|
||||||
label= lv_label_create(cont);
|
label = lv_label_create(cont);
|
||||||
lv_label_set_text_fmt(label, "Item %i", btn_cnt);
|
lv_label_set_text_fmt(label, "Item %i", btn_cnt);
|
||||||
lv_menu_set_load_page_event(menu, cont, sub_page);
|
lv_menu_set_load_page_event(menu, cont, sub_page);
|
||||||
|
|
||||||
|
|||||||
@@ -11,11 +11,11 @@ static void back_event_handler(lv_event_t * e);
|
|||||||
static void switch_handler(lv_event_t * e);
|
static void switch_handler(lv_event_t * e);
|
||||||
lv_obj_t * root_page;
|
lv_obj_t * root_page;
|
||||||
static lv_obj_t * create_text(lv_obj_t * parent, const char * icon, const char * txt,
|
static lv_obj_t * create_text(lv_obj_t * parent, const char * icon, const char * txt,
|
||||||
lv_menu_builder_variant_t builder_variant);
|
lv_menu_builder_variant_t builder_variant);
|
||||||
static lv_obj_t * create_slider(lv_obj_t * parent,
|
static lv_obj_t * create_slider(lv_obj_t * parent,
|
||||||
const char * icon, const char * txt, int32_t min, int32_t max, int32_t val);
|
const char * icon, const char * txt, int32_t min, int32_t max, int32_t val);
|
||||||
static lv_obj_t * create_switch(lv_obj_t * parent,
|
static lv_obj_t * create_switch(lv_obj_t * parent,
|
||||||
const char * icon, const char * txt, bool chk);
|
const char * icon, const char * txt, bool chk);
|
||||||
|
|
||||||
void lv_example_menu_5(void)
|
void lv_example_menu_5(void)
|
||||||
{
|
{
|
||||||
@@ -24,7 +24,8 @@ void lv_example_menu_5(void)
|
|||||||
lv_color_t bg_color = lv_obj_get_style_bg_color(menu, 0);
|
lv_color_t bg_color = lv_obj_get_style_bg_color(menu, 0);
|
||||||
if(lv_color_brightness(bg_color) > 127) {
|
if(lv_color_brightness(bg_color) > 127) {
|
||||||
lv_obj_set_style_bg_color(menu, lv_color_darken(lv_obj_get_style_bg_color(menu, 0), 10), 0);
|
lv_obj_set_style_bg_color(menu, lv_color_darken(lv_obj_get_style_bg_color(menu, 0), 10), 0);
|
||||||
}else{
|
}
|
||||||
|
else {
|
||||||
lv_obj_set_style_bg_color(menu, lv_color_darken(lv_obj_get_style_bg_color(menu, 0), 50), 0);
|
lv_obj_set_style_bg_color(menu, lv_color_darken(lv_obj_get_style_bg_color(menu, 0), 50), 0);
|
||||||
}
|
}
|
||||||
lv_menu_set_mode_root_back_btn(menu, LV_MENU_ROOT_BACK_BTN_ENABLED);
|
lv_menu_set_mode_root_back_btn(menu, LV_MENU_ROOT_BACK_BTN_ENABLED);
|
||||||
@@ -64,8 +65,10 @@ void lv_example_menu_5(void)
|
|||||||
lv_obj_t * sub_legal_info_page = lv_menu_page_create(menu, NULL);
|
lv_obj_t * sub_legal_info_page = lv_menu_page_create(menu, NULL);
|
||||||
lv_obj_set_style_pad_hor(sub_legal_info_page, lv_obj_get_style_pad_left(lv_menu_get_main_header(menu), 0), 0);
|
lv_obj_set_style_pad_hor(sub_legal_info_page, lv_obj_get_style_pad_left(lv_menu_get_main_header(menu), 0), 0);
|
||||||
section = lv_menu_section_create(sub_legal_info_page);
|
section = lv_menu_section_create(sub_legal_info_page);
|
||||||
for(uint32_t i=0; i<15; i++){
|
for(uint32_t i = 0; i < 15; i++) {
|
||||||
create_text(section, NULL, "This is a long long long long long long long long long text, if it is long enough it may scroll.", LV_MENU_ITEM_BUILDER_VARIANT_1);
|
create_text(section, NULL,
|
||||||
|
"This is a long long long long long long long long long text, if it is long enough it may scroll.",
|
||||||
|
LV_MENU_ITEM_BUILDER_VARIANT_1);
|
||||||
}
|
}
|
||||||
|
|
||||||
lv_obj_t * sub_about_page = lv_menu_page_create(menu, NULL);
|
lv_obj_t * sub_about_page = lv_menu_page_create(menu, NULL);
|
||||||
@@ -128,7 +131,8 @@ static void switch_handler(lv_event_t * e)
|
|||||||
lv_menu_set_page(menu, NULL);
|
lv_menu_set_page(menu, NULL);
|
||||||
lv_menu_set_sidebar_page(menu, root_page);
|
lv_menu_set_sidebar_page(menu, root_page);
|
||||||
lv_event_send(lv_obj_get_child(lv_obj_get_child(lv_menu_get_cur_sidebar_page(menu), 0), 0), LV_EVENT_CLICKED, NULL);
|
lv_event_send(lv_obj_get_child(lv_obj_get_child(lv_menu_get_cur_sidebar_page(menu), 0), 0), LV_EVENT_CLICKED, NULL);
|
||||||
}else {
|
}
|
||||||
|
else {
|
||||||
lv_menu_set_sidebar_page(menu, NULL);
|
lv_menu_set_sidebar_page(menu, NULL);
|
||||||
lv_menu_clear_history(menu); /* Clear history because we will be showing the root page later */
|
lv_menu_clear_history(menu); /* Clear history because we will be showing the root page later */
|
||||||
lv_menu_set_page(menu, root_page);
|
lv_menu_set_page(menu, root_page);
|
||||||
@@ -137,7 +141,7 @@ static void switch_handler(lv_event_t * e)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static lv_obj_t * create_text(lv_obj_t * parent, const char * icon, const char * txt,
|
static lv_obj_t * create_text(lv_obj_t * parent, const char * icon, const char * txt,
|
||||||
lv_menu_builder_variant_t builder_variant)
|
lv_menu_builder_variant_t builder_variant)
|
||||||
{
|
{
|
||||||
lv_obj_t * obj = lv_menu_cont_create(parent);
|
lv_obj_t * obj = lv_menu_cont_create(parent);
|
||||||
|
|
||||||
@@ -164,7 +168,8 @@ static lv_obj_t * create_text(lv_obj_t * parent, const char * icon, const char *
|
|||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
static lv_obj_t * create_slider(lv_obj_t * parent, const char * icon, const char * txt, int32_t min, int32_t max, int32_t val)
|
static lv_obj_t * create_slider(lv_obj_t * parent, const char * icon, const char * txt, int32_t min, int32_t max,
|
||||||
|
int32_t val)
|
||||||
{
|
{
|
||||||
lv_obj_t * obj = create_text(parent, icon, txt, LV_MENU_ITEM_BUILDER_VARIANT_2);
|
lv_obj_t * obj = create_text(parent, icon, txt, LV_MENU_ITEM_BUILDER_VARIANT_2);
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ void lv_example_meter_1(void)
|
|||||||
lv_meter_set_indicator_end_value(meter, indic, 20);
|
lv_meter_set_indicator_end_value(meter, indic, 20);
|
||||||
|
|
||||||
/*Make the tick lines blue at the start of the scale*/
|
/*Make the tick lines blue at the start of the scale*/
|
||||||
indic = lv_meter_add_scale_lines(meter, scale, lv_palette_main(LV_PALETTE_BLUE), lv_palette_main(LV_PALETTE_BLUE), false, 0);
|
indic = lv_meter_add_scale_lines(meter, scale, lv_palette_main(LV_PALETTE_BLUE), lv_palette_main(LV_PALETTE_BLUE),
|
||||||
|
false, 0);
|
||||||
lv_meter_set_indicator_start_value(meter, indic, 0);
|
lv_meter_set_indicator_start_value(meter, indic, 0);
|
||||||
lv_meter_set_indicator_end_value(meter, indic, 20);
|
lv_meter_set_indicator_end_value(meter, indic, 20);
|
||||||
|
|
||||||
@@ -40,7 +41,8 @@ void lv_example_meter_1(void)
|
|||||||
lv_meter_set_indicator_end_value(meter, indic, 100);
|
lv_meter_set_indicator_end_value(meter, indic, 100);
|
||||||
|
|
||||||
/*Make the tick lines red at the end of the scale*/
|
/*Make the tick lines red at the end of the scale*/
|
||||||
indic = lv_meter_add_scale_lines(meter, scale, lv_palette_main(LV_PALETTE_RED), lv_palette_main(LV_PALETTE_RED), false, 0);
|
indic = lv_meter_add_scale_lines(meter, scale, lv_palette_main(LV_PALETTE_RED), lv_palette_main(LV_PALETTE_RED), false,
|
||||||
|
0);
|
||||||
lv_meter_set_indicator_start_value(meter, indic, 80);
|
lv_meter_set_indicator_start_value(meter, indic, 80);
|
||||||
lv_meter_set_indicator_end_value(meter, indic, 100);
|
lv_meter_set_indicator_end_value(meter, indic, 100);
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ void lv_example_meter_4(void)
|
|||||||
|
|
||||||
/*Add a three arc indicator*/
|
/*Add a three arc indicator*/
|
||||||
lv_coord_t indic_w = 100;
|
lv_coord_t indic_w = 100;
|
||||||
lv_meter_indicator_t * indic1 = lv_meter_add_arc(meter, scale, indic_w,lv_palette_main(LV_PALETTE_ORANGE), 0);
|
lv_meter_indicator_t * indic1 = lv_meter_add_arc(meter, scale, indic_w, lv_palette_main(LV_PALETTE_ORANGE), 0);
|
||||||
lv_meter_set_indicator_start_value(meter, indic1, 0);
|
lv_meter_set_indicator_start_value(meter, indic1, 0);
|
||||||
lv_meter_set_indicator_end_value(meter, indic1, 40);
|
lv_meter_set_indicator_end_value(meter, indic1, 40);
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ static void event_cb(lv_event_t * e)
|
|||||||
|
|
||||||
void lv_example_msgbox_1(void)
|
void lv_example_msgbox_1(void)
|
||||||
{
|
{
|
||||||
static const char * btns[] ={"Apply", "Close", ""};
|
static const char * btns[] = {"Apply", "Close", ""};
|
||||||
|
|
||||||
lv_obj_t * mbox1 = lv_msgbox_create(NULL, "Hello", "This is a message box with two buttons.", btns, true);
|
lv_obj_t * mbox1 = lv_msgbox_create(NULL, "Hello", "This is a message box with two buttons.", btns, true);
|
||||||
lv_obj_add_event_cb(mbox1, event_cb, LV_EVENT_VALUE_CHANGED, NULL);
|
lv_obj_add_event_cb(mbox1, event_cb, LV_EVENT_VALUE_CHANGED, NULL);
|
||||||
|
|||||||
@@ -17,21 +17,21 @@ static void event_handler(lv_event_t * e)
|
|||||||
*/
|
*/
|
||||||
void lv_example_roller_1(void)
|
void lv_example_roller_1(void)
|
||||||
{
|
{
|
||||||
lv_obj_t *roller1 = lv_roller_create(lv_scr_act());
|
lv_obj_t * roller1 = lv_roller_create(lv_scr_act());
|
||||||
lv_roller_set_options(roller1,
|
lv_roller_set_options(roller1,
|
||||||
"January\n"
|
"January\n"
|
||||||
"February\n"
|
"February\n"
|
||||||
"March\n"
|
"March\n"
|
||||||
"April\n"
|
"April\n"
|
||||||
"May\n"
|
"May\n"
|
||||||
"June\n"
|
"June\n"
|
||||||
"July\n"
|
"July\n"
|
||||||
"August\n"
|
"August\n"
|
||||||
"September\n"
|
"September\n"
|
||||||
"October\n"
|
"October\n"
|
||||||
"November\n"
|
"November\n"
|
||||||
"December",
|
"December",
|
||||||
LV_ROLLER_MODE_INFINITE);
|
LV_ROLLER_MODE_INFINITE);
|
||||||
|
|
||||||
lv_roller_set_visible_row_count(roller1, 4);
|
lv_roller_set_visible_row_count(roller1, 4);
|
||||||
lv_obj_center(roller1);
|
lv_obj_center(roller1);
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ void lv_example_roller_2(void)
|
|||||||
lv_style_set_text_font(&style_sel, &lv_font_montserrat_22);
|
lv_style_set_text_font(&style_sel, &lv_font_montserrat_22);
|
||||||
|
|
||||||
const char * opts = "1\n2\n3\n4\n5\n6\n7\n8\n9\n10";
|
const char * opts = "1\n2\n3\n4\n5\n6\n7\n8\n9\n10";
|
||||||
lv_obj_t *roller;
|
lv_obj_t * roller;
|
||||||
|
|
||||||
/*A roller on the left with left aligned text, and custom width*/
|
/*A roller on the left with left aligned text, and custom width*/
|
||||||
roller = lv_roller_create(lv_scr_act());
|
roller = lv_roller_create(lv_scr_act());
|
||||||
|
|||||||
@@ -9,10 +9,11 @@ static void mask_event_cb(lv_event_t * e)
|
|||||||
static int16_t mask_top_id = -1;
|
static int16_t mask_top_id = -1;
|
||||||
static int16_t mask_bottom_id = -1;
|
static int16_t mask_bottom_id = -1;
|
||||||
|
|
||||||
if (code == LV_EVENT_COVER_CHECK) {
|
if(code == LV_EVENT_COVER_CHECK) {
|
||||||
lv_event_set_cover_res(e, LV_COVER_RES_MASKED);
|
lv_event_set_cover_res(e, LV_COVER_RES_MASKED);
|
||||||
|
|
||||||
} else if (code == LV_EVENT_DRAW_MAIN_BEGIN) {
|
}
|
||||||
|
else if(code == LV_EVENT_DRAW_MAIN_BEGIN) {
|
||||||
/* add mask */
|
/* add mask */
|
||||||
const lv_font_t * font = lv_obj_get_style_text_font(obj, LV_PART_MAIN);
|
const lv_font_t * font = lv_obj_get_style_text_font(obj, LV_PART_MAIN);
|
||||||
lv_coord_t line_space = lv_obj_get_style_text_line_space(obj, LV_PART_MAIN);
|
lv_coord_t line_space = lv_obj_get_style_text_line_space(obj, LV_PART_MAIN);
|
||||||
@@ -34,11 +35,12 @@ static void mask_event_cb(lv_event_t * e)
|
|||||||
rect_area.y1 = rect_area.y2 + font_h + line_space - 1;
|
rect_area.y1 = rect_area.y2 + font_h + line_space - 1;
|
||||||
rect_area.y2 = roller_coords.y2;
|
rect_area.y2 = roller_coords.y2;
|
||||||
|
|
||||||
lv_draw_mask_fade_param_t * fade_mask_bottom =lv_mem_buf_get(sizeof(lv_draw_mask_fade_param_t));
|
lv_draw_mask_fade_param_t * fade_mask_bottom = lv_mem_buf_get(sizeof(lv_draw_mask_fade_param_t));
|
||||||
lv_draw_mask_fade_init(fade_mask_bottom, &rect_area, LV_OPA_COVER, rect_area.y1, LV_OPA_TRANSP, rect_area.y2);
|
lv_draw_mask_fade_init(fade_mask_bottom, &rect_area, LV_OPA_COVER, rect_area.y1, LV_OPA_TRANSP, rect_area.y2);
|
||||||
mask_bottom_id = lv_draw_mask_add(fade_mask_bottom, NULL);
|
mask_bottom_id = lv_draw_mask_add(fade_mask_bottom, NULL);
|
||||||
|
|
||||||
} else if (code == LV_EVENT_DRAW_POST_END) {
|
}
|
||||||
|
else if(code == LV_EVENT_DRAW_POST_END) {
|
||||||
lv_draw_mask_fade_param_t * fade_mask_top = lv_draw_mask_remove_id(mask_top_id);
|
lv_draw_mask_fade_param_t * fade_mask_top = lv_draw_mask_remove_id(mask_top_id);
|
||||||
lv_draw_mask_fade_param_t * fade_mask_bottom = lv_draw_mask_remove_id(mask_bottom_id);
|
lv_draw_mask_fade_param_t * fade_mask_bottom = lv_draw_mask_remove_id(mask_bottom_id);
|
||||||
lv_draw_mask_free_param(fade_mask_top);
|
lv_draw_mask_free_param(fade_mask_top);
|
||||||
@@ -63,7 +65,7 @@ void lv_example_roller_3(void)
|
|||||||
lv_style_set_pad_all(&style, 0);
|
lv_style_set_pad_all(&style, 0);
|
||||||
lv_obj_add_style(lv_scr_act(), &style, 0);
|
lv_obj_add_style(lv_scr_act(), &style, 0);
|
||||||
|
|
||||||
lv_obj_t *roller1 = lv_roller_create(lv_scr_act());
|
lv_obj_t * roller1 = lv_roller_create(lv_scr_act());
|
||||||
lv_obj_add_style(roller1, &style, 0);
|
lv_obj_add_style(roller1, &style, 0);
|
||||||
lv_obj_set_style_bg_opa(roller1, LV_OPA_TRANSP, LV_PART_SELECTED);
|
lv_obj_set_style_bg_opa(roller1, LV_OPA_TRANSP, LV_PART_SELECTED);
|
||||||
|
|
||||||
@@ -72,19 +74,19 @@ void lv_example_roller_3(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
lv_roller_set_options(roller1,
|
lv_roller_set_options(roller1,
|
||||||
"January\n"
|
"January\n"
|
||||||
"February\n"
|
"February\n"
|
||||||
"March\n"
|
"March\n"
|
||||||
"April\n"
|
"April\n"
|
||||||
"May\n"
|
"May\n"
|
||||||
"June\n"
|
"June\n"
|
||||||
"July\n"
|
"July\n"
|
||||||
"August\n"
|
"August\n"
|
||||||
"September\n"
|
"September\n"
|
||||||
"October\n"
|
"October\n"
|
||||||
"November\n"
|
"November\n"
|
||||||
"December",
|
"December",
|
||||||
LV_ROLLER_MODE_NORMAL);
|
LV_ROLLER_MODE_NORMAL);
|
||||||
|
|
||||||
lv_obj_center(roller1);
|
lv_obj_center(roller1);
|
||||||
lv_roller_set_visible_row_count(roller1, 3);
|
lv_roller_set_visible_row_count(roller1, 3);
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ void lv_example_span_1(void)
|
|||||||
|
|
||||||
lv_obj_t * spans = lv_spangroup_create(lv_scr_act());
|
lv_obj_t * spans = lv_spangroup_create(lv_scr_act());
|
||||||
lv_obj_set_width(spans, 300);
|
lv_obj_set_width(spans, 300);
|
||||||
lv_obj_set_height(spans,300);
|
lv_obj_set_height(spans, 300);
|
||||||
lv_obj_center(spans);
|
lv_obj_center(spans);
|
||||||
lv_obj_add_style(spans, &style, 0);
|
lv_obj_add_style(spans, &style, 0);
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,8 @@ static void draw_event_cb(lv_event_t * e)
|
|||||||
if(chk) {
|
if(chk) {
|
||||||
sw_area.x2 -= 2;
|
sw_area.x2 -= 2;
|
||||||
sw_area.x1 = sw_area.x2 - 16;
|
sw_area.x1 = sw_area.x2 - 16;
|
||||||
} else {
|
}
|
||||||
|
else {
|
||||||
sw_area.x1 += 2;
|
sw_area.x1 += 2;
|
||||||
sw_area.x2 = sw_area.x1 + 16;
|
sw_area.x2 = sw_area.x1 + 16;
|
||||||
}
|
}
|
||||||
@@ -92,8 +93,8 @@ void lv_example_table_2(void)
|
|||||||
|
|
||||||
lv_obj_t * label = lv_label_create(lv_scr_act());
|
lv_obj_t * label = lv_label_create(lv_scr_act());
|
||||||
lv_label_set_text_fmt(label, "%"LV_PRIu32" items were created in %"LV_PRIu32" ms\n"
|
lv_label_set_text_fmt(label, "%"LV_PRIu32" items were created in %"LV_PRIu32" ms\n"
|
||||||
"using %"LV_PRIu32" bytes of memory",
|
"using %"LV_PRIu32" bytes of memory",
|
||||||
ITEM_CNT, elaps, mem_used);
|
ITEM_CNT, elaps, mem_used);
|
||||||
|
|
||||||
lv_obj_align(label, LV_ALIGN_BOTTOM_MID, 0, -10);
|
lv_obj_align(label, LV_ALIGN_BOTTOM_MID, 0, -10);
|
||||||
|
|
||||||
|
|||||||
@@ -4,31 +4,31 @@
|
|||||||
void lv_example_tabview_1(void)
|
void lv_example_tabview_1(void)
|
||||||
{
|
{
|
||||||
/*Create a Tab view object*/
|
/*Create a Tab view object*/
|
||||||
lv_obj_t *tabview;
|
lv_obj_t * tabview;
|
||||||
tabview = lv_tabview_create(lv_scr_act(), LV_DIR_TOP, 50);
|
tabview = lv_tabview_create(lv_scr_act(), LV_DIR_TOP, 50);
|
||||||
|
|
||||||
/*Add 3 tabs (the tabs are page (lv_page) and can be scrolled*/
|
/*Add 3 tabs (the tabs are page (lv_page) and can be scrolled*/
|
||||||
lv_obj_t *tab1 = lv_tabview_add_tab(tabview, "Tab 1");
|
lv_obj_t * tab1 = lv_tabview_add_tab(tabview, "Tab 1");
|
||||||
lv_obj_t *tab2 = lv_tabview_add_tab(tabview, "Tab 2");
|
lv_obj_t * tab2 = lv_tabview_add_tab(tabview, "Tab 2");
|
||||||
lv_obj_t *tab3 = lv_tabview_add_tab(tabview, "Tab 3");
|
lv_obj_t * tab3 = lv_tabview_add_tab(tabview, "Tab 3");
|
||||||
|
|
||||||
/*Add content to the tabs*/
|
/*Add content to the tabs*/
|
||||||
lv_obj_t * label = lv_label_create(tab1);
|
lv_obj_t * label = lv_label_create(tab1);
|
||||||
lv_label_set_text(label, "This the first tab\n\n"
|
lv_label_set_text(label, "This the first tab\n\n"
|
||||||
"If the content\n"
|
"If the content\n"
|
||||||
"of a tab\n"
|
"of a tab\n"
|
||||||
"becomes too\n"
|
"becomes too\n"
|
||||||
"longer\n"
|
"longer\n"
|
||||||
"than the\n"
|
"than the\n"
|
||||||
"container\n"
|
"container\n"
|
||||||
"then it\n"
|
"then it\n"
|
||||||
"automatically\n"
|
"automatically\n"
|
||||||
"becomes\n"
|
"becomes\n"
|
||||||
"scrollable.\n"
|
"scrollable.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Can you see it?");
|
"Can you see it?");
|
||||||
|
|
||||||
label = lv_label_create(tab2);
|
label = lv_label_create(tab2);
|
||||||
lv_label_set_text(label, "Second tab");
|
lv_label_set_text(label, "Second tab");
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ static void scroll_begin_event(lv_event_t * e)
|
|||||||
void lv_example_tabview_2(void)
|
void lv_example_tabview_2(void)
|
||||||
{
|
{
|
||||||
/*Create a Tab view object*/
|
/*Create a Tab view object*/
|
||||||
lv_obj_t *tabview;
|
lv_obj_t * tabview;
|
||||||
tabview = lv_tabview_create(lv_scr_act(), LV_DIR_LEFT, 80);
|
tabview = lv_tabview_create(lv_scr_act(), LV_DIR_LEFT, 80);
|
||||||
lv_obj_add_event_cb(lv_tabview_get_content(tabview), scroll_begin_event, LV_EVENT_SCROLL_BEGIN, NULL);
|
lv_obj_add_event_cb(lv_tabview_get_content(tabview), scroll_begin_event, LV_EVENT_SCROLL_BEGIN, NULL);
|
||||||
|
|
||||||
@@ -26,11 +26,11 @@ void lv_example_tabview_2(void)
|
|||||||
|
|
||||||
|
|
||||||
/*Add 3 tabs (the tabs are page (lv_page) and can be scrolled*/
|
/*Add 3 tabs (the tabs are page (lv_page) and can be scrolled*/
|
||||||
lv_obj_t *tab1 = lv_tabview_add_tab(tabview, "Tab 1");
|
lv_obj_t * tab1 = lv_tabview_add_tab(tabview, "Tab 1");
|
||||||
lv_obj_t *tab2 = lv_tabview_add_tab(tabview, "Tab 2");
|
lv_obj_t * tab2 = lv_tabview_add_tab(tabview, "Tab 2");
|
||||||
lv_obj_t *tab3 = lv_tabview_add_tab(tabview, "Tab 3");
|
lv_obj_t * tab3 = lv_tabview_add_tab(tabview, "Tab 3");
|
||||||
lv_obj_t *tab4 = lv_tabview_add_tab(tabview, "Tab 4");
|
lv_obj_t * tab4 = lv_tabview_add_tab(tabview, "Tab 4");
|
||||||
lv_obj_t *tab5 = lv_tabview_add_tab(tabview, "Tab 5");
|
lv_obj_t * tab5 = lv_tabview_add_tab(tabview, "Tab 5");
|
||||||
|
|
||||||
lv_obj_set_style_bg_color(tab2, lv_palette_lighten(LV_PALETTE_AMBER, 3), 0);
|
lv_obj_set_style_bg_color(tab2, lv_palette_lighten(LV_PALETTE_AMBER, 3), 0);
|
||||||
lv_obj_set_style_bg_opa(tab2, LV_OPA_COVER, 0);
|
lv_obj_set_style_bg_opa(tab2, LV_OPA_COVER, 0);
|
||||||
|
|||||||
@@ -28,9 +28,10 @@ void lv_example_textarea_1(void)
|
|||||||
lv_obj_add_state(ta, LV_STATE_FOCUSED); /*To be sure the cursor is visible*/
|
lv_obj_add_state(ta, LV_STATE_FOCUSED); /*To be sure the cursor is visible*/
|
||||||
|
|
||||||
static const char * btnm_map[] = {"1", "2", "3", "\n",
|
static const char * btnm_map[] = {"1", "2", "3", "\n",
|
||||||
"4", "5", "6", "\n",
|
"4", "5", "6", "\n",
|
||||||
"7", "8", "9", "\n",
|
"7", "8", "9", "\n",
|
||||||
LV_SYMBOL_BACKSPACE, "0", LV_SYMBOL_NEW_LINE, ""};
|
LV_SYMBOL_BACKSPACE, "0", LV_SYMBOL_NEW_LINE, ""
|
||||||
|
};
|
||||||
|
|
||||||
lv_obj_t * btnm = lv_btnmatrix_create(lv_scr_act());
|
lv_obj_t * btnm = lv_btnmatrix_create(lv_scr_act());
|
||||||
lv_obj_set_size(btnm, 200, 150);
|
lv_obj_set_size(btnm, 200, 150);
|
||||||
|
|||||||
@@ -31,9 +31,8 @@ static void ta_event_cb(lv_event_t * e)
|
|||||||
lv_obj_t * ta = lv_event_get_target(e);
|
lv_obj_t * ta = lv_event_get_target(e);
|
||||||
const char * txt = lv_textarea_get_text(ta);
|
const char * txt = lv_textarea_get_text(ta);
|
||||||
if(txt[0] >= '0' && txt[0] <= '9' &&
|
if(txt[0] >= '0' && txt[0] <= '9' &&
|
||||||
txt[1] >= '0' && txt[1] <= '9' &&
|
txt[1] >= '0' && txt[1] <= '9' &&
|
||||||
txt[2] != ':')
|
txt[2] != ':') {
|
||||||
{
|
|
||||||
lv_textarea_set_cursor_pos(ta, 2);
|
lv_textarea_set_cursor_pos(ta, 2);
|
||||||
lv_textarea_add_char(ta, ':');
|
lv_textarea_add_char(ta, ':');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
void lv_example_tileview_1(void)
|
void lv_example_tileview_1(void)
|
||||||
{
|
{
|
||||||
lv_obj_t *tv = lv_tileview_create(lv_scr_act());
|
lv_obj_t * tv = lv_tileview_create(lv_scr_act());
|
||||||
|
|
||||||
/*Tile1: just a label*/
|
/*Tile1: just a label*/
|
||||||
lv_obj_t * tile1 = lv_tileview_add_tile(tv, 0, 0, LV_DIR_BOTTOM);
|
lv_obj_t * tile1 = lv_tileview_add_tile(tv, 0, 0, LV_DIR_BOTTOM);
|
||||||
|
|||||||
@@ -26,18 +26,18 @@ void lv_example_win_1(void)
|
|||||||
lv_obj_t * cont = lv_win_get_content(win); /*Content can be added here*/
|
lv_obj_t * cont = lv_win_get_content(win); /*Content can be added here*/
|
||||||
lv_obj_t * label = lv_label_create(cont);
|
lv_obj_t * label = lv_label_create(cont);
|
||||||
lv_label_set_text(label, "This is\n"
|
lv_label_set_text(label, "This is\n"
|
||||||
"a pretty\n"
|
"a pretty\n"
|
||||||
"long text\n"
|
"long text\n"
|
||||||
"to see how\n"
|
"to see how\n"
|
||||||
"the window\n"
|
"the window\n"
|
||||||
"becomes\n"
|
"becomes\n"
|
||||||
"scrollable.\n"
|
"scrollable.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Some more\n"
|
"Some more\n"
|
||||||
"text to be\n"
|
"text to be\n"
|
||||||
"sure it\n"
|
"sure it\n"
|
||||||
"overflows. :)");
|
"overflows. :)");
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
--style=kr
|
|
||||||
--indent=spaces=4
|
|
||||||
--indent-classes
|
|
||||||
--indent-switches
|
|
||||||
--indent-cases
|
|
||||||
--indent-preproc-block
|
|
||||||
--indent-preproc-define
|
|
||||||
--indent-col1-comments
|
|
||||||
--pad-oper
|
|
||||||
--unpad-paren
|
|
||||||
--align-pointer=middle
|
|
||||||
--align-reference=middle
|
|
||||||
--convert-tabs
|
|
||||||
--max-code-length=120
|
|
||||||
--break-after-logical
|
|
||||||
--break-closing-braces
|
|
||||||
--attach-closing-while
|
|
||||||
--min-conditional-indent=0
|
|
||||||
--max-continuation-indent=120
|
|
||||||
--mode=c
|
|
||||||
--lineend=linux
|
|
||||||
--recursive
|
|
||||||
--suffix=none
|
|
||||||
--preserve-date
|
|
||||||
--formatted
|
|
||||||
--exclude=../tests/src/test_cases/_test_template.c
|
|
||||||
@@ -23,6 +23,8 @@
|
|||||||
--suffix=none
|
--suffix=none
|
||||||
--preserve-date
|
--preserve-date
|
||||||
--formatted
|
--formatted
|
||||||
|
--ignore-exclude-errors
|
||||||
|
--exclude=assets
|
||||||
--exclude=../src/extra/libs/gif/gifdec.c
|
--exclude=../src/extra/libs/gif/gifdec.c
|
||||||
--exclude=../src/extra/libs/gif/gifdec.h
|
--exclude=../src/extra/libs/gif/gifdec.h
|
||||||
--exclude=../src/extra/libs/png/lodepng.c
|
--exclude=../src/extra/libs/png/lodepng.c
|
||||||
@@ -33,3 +35,4 @@
|
|||||||
--exclude=../src/extra/libs/sjpg/tjpgd.h
|
--exclude=../src/extra/libs/sjpg/tjpgd.h
|
||||||
--exclude=../src/extra/libs/sjpg/tjpgdcnf.h
|
--exclude=../src/extra/libs/sjpg/tjpgdcnf.h
|
||||||
--exclude=../src/lv_conf_internal.h
|
--exclude=../src/lv_conf_internal.h
|
||||||
|
--exclude=../tests/src/test_cases/_test_template.c
|
||||||
|
|||||||
@@ -3,4 +3,6 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
os.system('astyle --options=code-format.cfg "../src/*.c,*.h"')
|
os.system('astyle --options=code-format.cfg "../src/*.c,*.h"')
|
||||||
os.system('astyle --options=code-format-tests.cfg "../tests/src/test_cases/*.c"')
|
os.system('astyle --options=code-format.cfg "../demos/*.c,*.h"')
|
||||||
|
os.system('astyle --options=code-format.cfg "../examples/*.c,*.h"')
|
||||||
|
os.system('astyle --options=code-format.cfg "../tests/src/test_cases/*.c"')
|
||||||
|
|||||||
Reference in New Issue
Block a user