mirror of
https://github.com/No-Chicken/Power-Pico.git
synced 2026-04-03 13:02:36 +08:00
update
This commit is contained in:
235
software/Power_Pico/User/GUI/common/lv_i18n.c
Normal file
235
software/Power_Pico/User/GUI/common/lv_i18n.c
Normal file
@@ -0,0 +1,235 @@
|
||||
#include "./lv_i18n.h"
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Define plural operands
|
||||
// http://unicode.org/reports/tr35/tr35-numbers.html#Operands
|
||||
|
||||
// Integer version, simplified
|
||||
|
||||
#define UNUSED(x) (void)(x)
|
||||
|
||||
static inline uint32_t op_n(int32_t val) { return (uint32_t)(val < 0 ? -val : val); }
|
||||
static inline uint32_t op_i(uint32_t val) { return val; }
|
||||
// always zero, when decimal part not exists.
|
||||
static inline uint32_t op_v(uint32_t val) { UNUSED(val); return 0;}
|
||||
static inline uint32_t op_w(uint32_t val) { UNUSED(val); return 0; }
|
||||
static inline uint32_t op_f(uint32_t val) { UNUSED(val); return 0; }
|
||||
static inline uint32_t op_t(uint32_t val) { UNUSED(val); return 0; }
|
||||
|
||||
static lv_i18n_phrase_t en_singulars[] = {
|
||||
{"press to Step Adjust", "press to Step Adjust"},
|
||||
{"press here to Fixed Set", "press here to Fixed Set"},
|
||||
{"press here to close PD", "press here to close PD"},
|
||||
{"Screen Brightness :", "Screen Brightness :"},
|
||||
{"Enable key sound", "Enable key sound"},
|
||||
{"Enable Chinese", "Enable Chinese"},
|
||||
{"Chose Rotation", "Chose Rotation"},
|
||||
{"PD Sink", "PD Sink"},
|
||||
{"Please reboot to apply\nall changes!", "Please reboot to apply\nall changes!"},
|
||||
{NULL, NULL} // End mark
|
||||
};
|
||||
|
||||
|
||||
|
||||
static uint8_t en_plural_fn(int32_t num)
|
||||
{
|
||||
uint32_t n = op_n(num); UNUSED(n);
|
||||
uint32_t i = op_i(n); UNUSED(i);
|
||||
uint32_t v = op_v(n); UNUSED(v);
|
||||
|
||||
if ((i == 1 && v == 0)) return LV_I18N_PLURAL_TYPE_ONE;
|
||||
return LV_I18N_PLURAL_TYPE_OTHER;
|
||||
}
|
||||
|
||||
static const lv_i18n_lang_t en_lang = {
|
||||
.locale_name = "en",
|
||||
.singulars = en_singulars,
|
||||
|
||||
.locale_plural_fn = en_plural_fn
|
||||
};
|
||||
|
||||
static lv_i18n_phrase_t zh_cn_singulars[] = {
|
||||
{"press to Step Adjust", "进 入 步 进 调 节"},
|
||||
{"press here to Fixed Set", "进 入 固 定 调 节"},
|
||||
{"press here to close PD", "关 闭 PD 诱 骗"},
|
||||
{"Screen Brightness :", "屏 幕 亮 度 :"},
|
||||
{"Enable key sound", "按 键 声 音"},
|
||||
{"Enable Chinese", "中 英 文 切 换"},
|
||||
{"Chose Rotation", "旋 转 角 度 :"},
|
||||
{"PD Sink", "PD 诱 骗"},
|
||||
{"Please reboot to apply\nall changes!", "请重启以应用\n所有更改!"},
|
||||
{NULL, NULL} // End mark
|
||||
};
|
||||
|
||||
|
||||
|
||||
static uint8_t zh_cn_plural_fn(int32_t num)
|
||||
{
|
||||
|
||||
|
||||
|
||||
return LV_I18N_PLURAL_TYPE_OTHER;
|
||||
}
|
||||
|
||||
static const lv_i18n_lang_t zh_cn_lang = {
|
||||
.locale_name = "zh-cn",
|
||||
.singulars = zh_cn_singulars,
|
||||
|
||||
.locale_plural_fn = zh_cn_plural_fn
|
||||
};
|
||||
|
||||
const lv_i18n_language_pack_t lv_i18n_language_pack[] = {
|
||||
&en_lang,
|
||||
&zh_cn_lang,
|
||||
NULL // End mark
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// Internal state
|
||||
static const lv_i18n_language_pack_t * current_lang_pack;
|
||||
static const lv_i18n_lang_t * current_lang;
|
||||
|
||||
|
||||
/**
|
||||
* Reset internal state. For testing.
|
||||
*/
|
||||
void __lv_i18n_reset(void)
|
||||
{
|
||||
current_lang_pack = NULL;
|
||||
current_lang = NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the languages for internationalization
|
||||
* @param langs pointer to the array of languages. (Last element has to be `NULL`)
|
||||
*/
|
||||
int lv_i18n_init(const lv_i18n_language_pack_t * langs)
|
||||
{
|
||||
if(langs == NULL) return -1;
|
||||
if(langs[0] == NULL) return -1;
|
||||
|
||||
current_lang_pack = langs;
|
||||
current_lang = langs[0]; /*Automatically select the first language*/
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Change the localization (language)
|
||||
* @param l_name name of the translation locale to use. E.g. "en-GB"
|
||||
*/
|
||||
int lv_i18n_set_locale(const char * l_name)
|
||||
{
|
||||
if(current_lang_pack == NULL) return -1;
|
||||
|
||||
uint16_t i;
|
||||
|
||||
for(i = 0; current_lang_pack[i] != NULL; i++) {
|
||||
// Found -> finish
|
||||
if(strcmp(current_lang_pack[i]->locale_name, l_name) == 0) {
|
||||
current_lang = current_lang_pack[i];
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
static const char * __lv_i18n_get_text_core(lv_i18n_phrase_t * trans, const char * msg_id)
|
||||
{
|
||||
uint16_t i;
|
||||
for(i = 0; trans[i].msg_id != NULL; i++) {
|
||||
if(strcmp(trans[i].msg_id, msg_id) == 0) {
|
||||
/*The msg_id has found. Check the translation*/
|
||||
if(trans[i].translation) return trans[i].translation;
|
||||
}
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the translation from a message ID
|
||||
* @param msg_id message ID
|
||||
* @return the translation of `msg_id` on the set local
|
||||
*/
|
||||
const char * lv_i18n_get_text(const char * msg_id)
|
||||
{
|
||||
if(current_lang == NULL) return msg_id;
|
||||
|
||||
const lv_i18n_lang_t * lang = current_lang;
|
||||
const void * txt;
|
||||
|
||||
// Search in current locale
|
||||
if(lang->singulars != NULL) {
|
||||
txt = __lv_i18n_get_text_core(lang->singulars, msg_id);
|
||||
if (txt != NULL) return txt;
|
||||
}
|
||||
|
||||
// Try to fallback
|
||||
if(lang == current_lang_pack[0]) return msg_id;
|
||||
lang = current_lang_pack[0];
|
||||
|
||||
// Repeat search for default locale
|
||||
if(lang->singulars != NULL) {
|
||||
txt = __lv_i18n_get_text_core(lang->singulars, msg_id);
|
||||
if (txt != NULL) return txt;
|
||||
}
|
||||
|
||||
return msg_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the translation from a message ID and apply the language's plural rule to get correct form
|
||||
* @param msg_id message ID
|
||||
* @param num an integer to select the correct plural form
|
||||
* @return the translation of `msg_id` on the set local
|
||||
*/
|
||||
const char * lv_i18n_get_text_plural(const char * msg_id, int32_t num)
|
||||
{
|
||||
if(current_lang == NULL) return msg_id;
|
||||
|
||||
const lv_i18n_lang_t * lang = current_lang;
|
||||
const void * txt;
|
||||
lv_i18n_plural_type_t ptype;
|
||||
|
||||
// Search in current locale
|
||||
if(lang->locale_plural_fn != NULL) {
|
||||
ptype = lang->locale_plural_fn(num);
|
||||
|
||||
if(lang->plurals[ptype] != NULL) {
|
||||
txt = __lv_i18n_get_text_core(lang->plurals[ptype], msg_id);
|
||||
if (txt != NULL) return txt;
|
||||
}
|
||||
}
|
||||
|
||||
// Try to fallback
|
||||
if(lang == current_lang_pack[0]) return msg_id;
|
||||
lang = current_lang_pack[0];
|
||||
|
||||
// Repeat search for default locale
|
||||
if(lang->locale_plural_fn != NULL) {
|
||||
ptype = lang->locale_plural_fn(num);
|
||||
|
||||
if(lang->plurals[ptype] != NULL) {
|
||||
txt = __lv_i18n_get_text_core(lang->plurals[ptype], msg_id);
|
||||
if (txt != NULL) return txt;
|
||||
}
|
||||
}
|
||||
|
||||
return msg_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the name of the currently used locale.
|
||||
* @return name of the currently used locale. E.g. "en-GB"
|
||||
*/
|
||||
const char * lv_i18n_get_current_locale(void)
|
||||
{
|
||||
if(!current_lang) return NULL;
|
||||
return current_lang->locale_name;
|
||||
}
|
||||
85
software/Power_Pico/User/GUI/common/lv_i18n.h
Normal file
85
software/Power_Pico/User/GUI/common/lv_i18n.h
Normal file
@@ -0,0 +1,85 @@
|
||||
#ifndef LV_I18N_H
|
||||
#define LV_I18N_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
typedef enum {
|
||||
LV_I18N_PLURAL_TYPE_ZERO,
|
||||
LV_I18N_PLURAL_TYPE_ONE,
|
||||
LV_I18N_PLURAL_TYPE_TWO,
|
||||
LV_I18N_PLURAL_TYPE_FEW,
|
||||
LV_I18N_PLURAL_TYPE_MANY,
|
||||
LV_I18N_PLURAL_TYPE_OTHER,
|
||||
_LV_I18N_PLURAL_TYPE_NUM,
|
||||
} lv_i18n_plural_type_t;
|
||||
|
||||
typedef struct {
|
||||
const char * msg_id;
|
||||
const char * translation;
|
||||
} lv_i18n_phrase_t;
|
||||
|
||||
typedef struct {
|
||||
const char * locale_name;
|
||||
lv_i18n_phrase_t * singulars;
|
||||
lv_i18n_phrase_t * plurals[_LV_I18N_PLURAL_TYPE_NUM];
|
||||
uint8_t (*locale_plural_fn)(int32_t num);
|
||||
} lv_i18n_lang_t;
|
||||
|
||||
// Null-terminated list of languages. First one used as default.
|
||||
typedef const lv_i18n_lang_t * lv_i18n_language_pack_t;
|
||||
|
||||
|
||||
extern const lv_i18n_language_pack_t lv_i18n_language_pack[];
|
||||
|
||||
|
||||
/**
|
||||
* Set the languages for internationalization
|
||||
* @param langs pointer to the array of languages. (Last element has to be `NULL`)
|
||||
*/
|
||||
int lv_i18n_init(const lv_i18n_language_pack_t * langs);
|
||||
|
||||
/**
|
||||
* Change the localization (language)
|
||||
* @param l_name name of the translation locale to use. E.g. "en_GB"
|
||||
*/
|
||||
int lv_i18n_set_locale(const char * l_name);
|
||||
|
||||
/**
|
||||
* Get the translation from a message ID
|
||||
* @param msg_id message ID
|
||||
* @return the translation of `msg_id` on the set local
|
||||
*/
|
||||
const char * lv_i18n_get_text(const char * msg_id);
|
||||
|
||||
/**
|
||||
* Get the translation from a message ID and apply the language's plural rule to get correct form
|
||||
* @param msg_id message ID
|
||||
* @param num an integer to select the correct plural form
|
||||
* @return the translation of `msg_id` on the set local
|
||||
*/
|
||||
const char * lv_i18n_get_text_plural(const char * msg_id, int32_t num);
|
||||
|
||||
/**
|
||||
* Get the name of the currently used localization.
|
||||
* @return name of the currently used localization. E.g. "en_GB"
|
||||
*/
|
||||
const char * lv_i18n_get_current_locale(void);
|
||||
|
||||
|
||||
void __lv_i18n_reset(void);
|
||||
|
||||
|
||||
#define _(text) lv_i18n_get_text(text)
|
||||
#define _p(text, num) lv_i18n_get_text_plural(text, num)
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /*LV_LANG_H*/
|
||||
58
software/Power_Pico/User/GUI/common/lv_lib_animation.c
Normal file
58
software/Power_Pico/User/GUI/common/lv_lib_animation.c
Normal file
@@ -0,0 +1,58 @@
|
||||
#include "lv_lib_animation.h"
|
||||
|
||||
void lv_lib_anim_callback_set_x(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_set_x(var, v);
|
||||
}
|
||||
|
||||
void lv_lib_anim_callback_set_y(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_set_y(var, v);
|
||||
}
|
||||
|
||||
void lv_lib_anim_callback_set_hight(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_set_height(var, v);
|
||||
}
|
||||
|
||||
void lv_lib_anim_callback_set_width(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_set_width(var, v);
|
||||
}
|
||||
|
||||
void lv_lib_anim_callback_set_image_angle(void * var, int32_t v)
|
||||
{
|
||||
lv_image_set_rotation(var, v);
|
||||
}
|
||||
|
||||
void lv_lib_anim_callback_set_scale(void * var, int32_t v)
|
||||
{
|
||||
lv_image_set_scale(var, v);
|
||||
}
|
||||
|
||||
void lv_lib_anim_callback_set_opacity(void * var, int32_t v)
|
||||
{
|
||||
lv_obj_set_style_opa(var, v, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
}
|
||||
|
||||
void lv_lib_anim_user_animation(lv_obj_t * TagetObj, uint16_t delay, uint16_t time, int16_t start_value, int16_t end_value,
|
||||
uint16_t playback_delay, uint16_t playback_time, uint16_t repeat_delay, uint16_t repeat_count,
|
||||
lv_anim_path_cb_t path_cb, lv_anim_exec_xcb_t exec_cb, lv_anim_completed_cb_t completed_cb)
|
||||
{
|
||||
lv_anim_t Animation;
|
||||
lv_anim_init(&Animation);
|
||||
lv_anim_set_var(&Animation, TagetObj);
|
||||
lv_anim_set_time(&Animation, time);
|
||||
lv_anim_set_values(&Animation, start_value, end_value);
|
||||
lv_anim_set_exec_cb(&Animation, exec_cb);
|
||||
lv_anim_set_path_cb(&Animation, path_cb);
|
||||
lv_anim_set_delay(&Animation, delay);
|
||||
lv_anim_set_playback_time(&Animation, playback_time);
|
||||
lv_anim_set_playback_delay(&Animation, playback_delay);
|
||||
lv_anim_set_repeat_count(&Animation, repeat_count);
|
||||
lv_anim_set_repeat_delay(&Animation, repeat_delay);
|
||||
lv_anim_set_early_apply(&Animation, false);
|
||||
lv_anim_set_completed_cb(&Animation, completed_cb);
|
||||
lv_anim_start(&Animation);
|
||||
}
|
||||
|
||||
18
software/Power_Pico/User/GUI/common/lv_lib_animation.h
Normal file
18
software/Power_Pico/User/GUI/common/lv_lib_animation.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef LV_LIB_ANIMATION_H
|
||||
#define LV_LIB_ANIMATION_H
|
||||
|
||||
#include "lvgl.h"
|
||||
|
||||
void lv_lib_anim_callback_set_x(void * var, int32_t v);
|
||||
void lv_lib_anim_callback_set_y(void * var, int32_t v);
|
||||
void lv_lib_anim_callback_set_hight(void * var, int32_t v);
|
||||
void lv_lib_anim_callback_set_width(void * var, int32_t v);
|
||||
void lv_lib_anim_callback_set_image_angle(void * var, int32_t v);
|
||||
void lv_lib_anim_callback_set_scale(void * var, int32_t v);
|
||||
void lv_lib_anim_callback_set_opacity(void * var, int32_t v);
|
||||
// user set animation
|
||||
void lv_lib_anim_user_animation(lv_obj_t * TagetObj, uint16_t delay, uint16_t time, int16_t start_value, int16_t end_value,
|
||||
uint16_t playback_delay, uint16_t playback_time, uint16_t repeat_delay, uint16_t repeat_count,
|
||||
lv_anim_path_cb_t path_cb, lv_anim_exec_xcb_t exec_cb, lv_anim_completed_cb_t completed_cb);
|
||||
|
||||
#endif // LV_LIB_ANIMATION_H
|
||||
142
software/Power_Pico/User/GUI/common/lv_lib_pm.c
Normal file
142
software/Power_Pico/User/GUI/common/lv_lib_pm.c
Normal file
@@ -0,0 +1,142 @@
|
||||
#include "./lv_lib_pm.h"
|
||||
#include <string.h>
|
||||
|
||||
// 定义全局实例
|
||||
PageManager_t PageManager;
|
||||
|
||||
/**
|
||||
* 初始化页面管理器
|
||||
*/
|
||||
void lv_lib_pm_Init(void) {
|
||||
memset(&PageManager, 0, sizeof(PageManager));
|
||||
}
|
||||
|
||||
/**
|
||||
* load init screen
|
||||
*/
|
||||
void lv_lib_pm_load_init_screen(void) {
|
||||
if (PageManager.count == 0) return;
|
||||
|
||||
Page_t* initial_page = PageManager.pages[0];
|
||||
if (initial_page->init) initial_page->init();
|
||||
lv_screen_load_anim(*initial_page->page_obj, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0, true);
|
||||
PageManager.current_index = 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册一个新页面
|
||||
* @param page 页面结构体指针
|
||||
*/
|
||||
void lv_lib_pm_register(Page_t* page) {
|
||||
if (PageManager.count >= MAX_PAGES) {
|
||||
LV_LOG_WARN("PageManager: page list is full!");
|
||||
return;
|
||||
}
|
||||
PageManager.pages[PageManager.count++] = page;
|
||||
}
|
||||
|
||||
/**
|
||||
* 切换到数组中下一个页面(循环)
|
||||
*/
|
||||
void lv_lib_pm_next(void) {
|
||||
if (PageManager.count == 0) return;
|
||||
|
||||
Page_t* prev = PageManager.pages[PageManager.current_index];
|
||||
Page_t* next = PageManager.pages[(PageManager.current_index + 1) % PageManager.count];
|
||||
|
||||
// 初始化新页面并切换
|
||||
if (next->init) next->init();
|
||||
lv_screen_load_anim(*next->page_obj, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0, true);
|
||||
|
||||
// 反初始化前页
|
||||
if (prev->deinit) prev->deinit();
|
||||
|
||||
// 更新索引
|
||||
PageManager.current_index = (PageManager.current_index + 1) % PageManager.count;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 切换到数组中上一个页面(循环)
|
||||
*/
|
||||
void lv_lib_pm_prev(void) {
|
||||
if (PageManager.count == 0) return;
|
||||
|
||||
Page_t* current = PageManager.pages[PageManager.current_index];
|
||||
uint8_t prev_index = (PageManager.current_index == 0) ? PageManager.count - 1 : PageManager.current_index - 1;
|
||||
Page_t* prev = PageManager.pages[prev_index];
|
||||
|
||||
if (prev->init) prev->init();
|
||||
lv_screen_load_anim(*prev->page_obj, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 200, 0, true);
|
||||
|
||||
if (current->deinit) current->deinit();
|
||||
|
||||
PageManager.current_index = prev_index;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 跳转到指定索引页面
|
||||
* @param page_name 页面名称,传入 NULL 则根据索引跳转
|
||||
* @param index 目标页面索引,如果 page_name 不为 NULL 则忽略该参数
|
||||
*/
|
||||
void lv_lib_pm_goto(const char* page_name, uint8_t index) {
|
||||
|
||||
if (page_name != NULL) {
|
||||
bool found = false;
|
||||
// 根据页面名称查找索引
|
||||
for (uint8_t i = 0; i < PageManager.count; i++) {
|
||||
if (strcmp(PageManager.pages[i]->name, page_name) == 0) {
|
||||
index = i;
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// 如果根据名称查找但未找到,则直接返回,不执行任何跳转
|
||||
if (!found) {
|
||||
LV_LOG_WARN("Page '%s' not found.", page_name);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if(index >= PageManager.count || PageManager.count == 0) return;
|
||||
|
||||
Page_t* current = PageManager.pages[PageManager.current_index];
|
||||
Page_t* target = PageManager.pages[index];
|
||||
|
||||
if (current != target) {
|
||||
if (current->deinit) current->deinit();
|
||||
PageManager.current_index = index;
|
||||
if (target->init) target->init();
|
||||
lv_screen_load_anim(*target->page_obj, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0, true);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 跳转到首页面
|
||||
*/
|
||||
void lv_lib_pm_goto_first(void) {
|
||||
lv_lib_pm_goto(NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取当前页面
|
||||
* @return 当前页面指针
|
||||
*/
|
||||
Page_t* lv_lib_pm_get_current_page(void) {
|
||||
if (PageManager.count == 0) return NULL;
|
||||
return PageManager.pages[PageManager.current_index];
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理按键事件,调用当前页面的按键事件处理函数
|
||||
* @param key_id 按键ID
|
||||
*/
|
||||
void lv_lib_pm_handle_key_event(void* key_event) {
|
||||
Page_t* current_page = lv_lib_pm_get_current_page();
|
||||
if (current_page && current_page->key_event_handler) {
|
||||
current_page->key_event_handler(key_event); // 调用当前页面的按键事件处理函数
|
||||
} else {
|
||||
LV_LOG_WARN("No key event handler for current page\n");
|
||||
}
|
||||
}
|
||||
39
software/Power_Pico/User/GUI/common/lv_lib_pm.h
Normal file
39
software/Power_Pico/User/GUI/common/lv_lib_pm.h
Normal file
@@ -0,0 +1,39 @@
|
||||
#ifndef PAGE_MANAGER_H
|
||||
#define PAGE_MANAGER_H
|
||||
|
||||
#include "lvgl.h"
|
||||
|
||||
// 最大支持页面数量
|
||||
#define MAX_PAGES 5
|
||||
|
||||
// 页面结构体
|
||||
typedef struct {
|
||||
void (*init)(void);
|
||||
void (*deinit)(void);
|
||||
lv_obj_t** page_obj; // 指向页面对象指针的指针
|
||||
void (*key_event_handler)(void* key_event); // 按键事件处理函数
|
||||
const char* name; // 可选:用于调试
|
||||
} Page_t;
|
||||
|
||||
// 页面管理器结构体
|
||||
typedef struct {
|
||||
Page_t* pages[MAX_PAGES];
|
||||
uint8_t count;
|
||||
uint8_t current_index;
|
||||
} PageManager_t;
|
||||
|
||||
// 全局管理器实例(声明)
|
||||
extern PageManager_t PageManager;
|
||||
|
||||
// API 函数声明
|
||||
void lv_lib_pm_Init(void);
|
||||
void lv_lib_pm_register(Page_t* page);
|
||||
void lv_lib_pm_load_init_screen(void);
|
||||
void lv_lib_pm_next(void);
|
||||
void lv_lib_pm_prev(void);
|
||||
void lv_lib_pm_goto(const char* page_name, uint8_t index);
|
||||
void lv_lib_pm_goto_first(void);
|
||||
Page_t* lv_lib_pm_get_current_page(void);
|
||||
void lv_lib_pm_handle_key_event(void* key_event);
|
||||
|
||||
#endif // PAGE_MANAGER_H
|
||||
546
software/Power_Pico/User/GUI/font/ui_font_HeiTi32.c
Normal file
546
software/Power_Pico/User/GUI/font/ui_font_HeiTi32.c
Normal file
@@ -0,0 +1,546 @@
|
||||
/*******************************************************************************
|
||||
* Size: 32 px
|
||||
* Bpp: 4
|
||||
* Opts: --bpp 4 --size 32 --font E:/projects/SquareLine_Projects/PowerPico/assets/FangZhengHeiTi-GBK-1.ttf -o E:/projects/SquareLine_Projects/PowerPico/assets\ui_font_HeiTi32.c --format lvgl --symbols 1234567890.muAVW:- --no-compress --no-prefilter
|
||||
******************************************************************************/
|
||||
|
||||
#include "../ui.h"
|
||||
|
||||
#ifndef UI_FONT_HEITI32
|
||||
#define UI_FONT_HEITI32 1
|
||||
#endif
|
||||
|
||||
#if UI_FONT_HEITI32
|
||||
|
||||
/*-----------------
|
||||
* BITMAPS
|
||||
*----------------*/
|
||||
|
||||
/*Store the image of the glyphs*/
|
||||
static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = {
|
||||
/* U+002D "-" */
|
||||
0x35, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
|
||||
0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xf6, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0x60,
|
||||
|
||||
/* U+002E "." */
|
||||
0x15, 0x55, 0x4, 0xff, 0xf2, 0x4f, 0xff, 0x24,
|
||||
0xff, 0xf2,
|
||||
|
||||
/* U+0030 "0" */
|
||||
0x0, 0x0, 0x3, 0x78, 0x86, 0x10, 0x0, 0x0,
|
||||
0x0, 0x2, 0xcf, 0xff, 0xff, 0xf9, 0x0, 0x0,
|
||||
0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0,
|
||||
0x0, 0xef, 0xfc, 0x40, 0x16, 0xef, 0xf9, 0x0,
|
||||
0x8, 0xff, 0xd0, 0x0, 0x0, 0x2f, 0xff, 0x20,
|
||||
0xe, 0xff, 0x30, 0x0, 0x0, 0x8, 0xff, 0x80,
|
||||
0x3f, 0xfd, 0x0, 0x0, 0x0, 0x1, 0xff, 0xd0,
|
||||
0x7f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf1,
|
||||
0x9f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf4,
|
||||
0xbf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf7,
|
||||
0xcf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
|
||||
0xdf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf9,
|
||||
0xdf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf9,
|
||||
0xcf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf7,
|
||||
0xbf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf6,
|
||||
0x8f, 0xf7, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf3,
|
||||
0x6f, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf0,
|
||||
0x1f, 0xfe, 0x0, 0x0, 0x0, 0x2, 0xff, 0xb0,
|
||||
0xc, 0xff, 0x50, 0x0, 0x0, 0x9, 0xff, 0x60,
|
||||
0x4, 0xff, 0xe1, 0x0, 0x0, 0x3f, 0xfd, 0x0,
|
||||
0x0, 0x9f, 0xfd, 0x52, 0x27, 0xff, 0xf4, 0x0,
|
||||
0x0, 0x9, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0,
|
||||
0x0, 0x0, 0x4a, 0xdf, 0xfd, 0x81, 0x0, 0x0,
|
||||
|
||||
/* U+0031 "1" */
|
||||
0x0, 0x0, 0x0, 0xdf, 0x60, 0x0, 0x0, 0x1f,
|
||||
0xf6, 0x0, 0x0, 0x9, 0xff, 0x60, 0x0, 0x6,
|
||||
0xff, 0xf6, 0x1, 0x5b, 0xff, 0xff, 0x6e, 0xff,
|
||||
0xff, 0xff, 0xf6, 0xef, 0xff, 0xff, 0xff, 0x61,
|
||||
0x11, 0x11, 0x8f, 0xf6, 0x0, 0x0, 0x8, 0xff,
|
||||
0x60, 0x0, 0x0, 0x8f, 0xf6, 0x0, 0x0, 0x8,
|
||||
0xff, 0x60, 0x0, 0x0, 0x8f, 0xf6, 0x0, 0x0,
|
||||
0x8, 0xff, 0x60, 0x0, 0x0, 0x8f, 0xf6, 0x0,
|
||||
0x0, 0x8, 0xff, 0x60, 0x0, 0x0, 0x8f, 0xf6,
|
||||
0x0, 0x0, 0x8, 0xff, 0x60, 0x0, 0x0, 0x8f,
|
||||
0xf6, 0x0, 0x0, 0x8, 0xff, 0x60, 0x0, 0x0,
|
||||
0x8f, 0xf6, 0x0, 0x0, 0x8, 0xff, 0x60, 0x0,
|
||||
0x0, 0x8f, 0xf6, 0x0, 0x0, 0x8, 0xff, 0x60,
|
||||
|
||||
/* U+0032 "2" */
|
||||
0x0, 0x0, 0x6, 0xae, 0xff, 0xc9, 0x30, 0x0,
|
||||
0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xa0,
|
||||
0x0, 0x0, 0x2f, 0xff, 0xfb, 0x9a, 0xdf, 0xff,
|
||||
0xb0, 0x0, 0xb, 0xff, 0xc1, 0x0, 0x0, 0x4f,
|
||||
0xff, 0x60, 0x2, 0xff, 0xf1, 0x0, 0x0, 0x0,
|
||||
0x5f, 0xfd, 0x0, 0x6f, 0xf9, 0x0, 0x0, 0x0,
|
||||
0x0, 0xff, 0xf1, 0x8, 0xff, 0x60, 0x0, 0x0,
|
||||
0x0, 0xc, 0xff, 0x30, 0x8d, 0xd3, 0x0, 0x0,
|
||||
0x0, 0x0, 0xdf, 0xf3, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x1d, 0xff, 0x90, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x3d, 0xff, 0xe1, 0x0, 0x0, 0x0,
|
||||
0x0, 0x1, 0xaf, 0xff, 0xd2, 0x0, 0x0, 0x0,
|
||||
0x0, 0x8, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0,
|
||||
0x0, 0x5e, 0xff, 0xfb, 0x30, 0x0, 0x0, 0x0,
|
||||
0x0, 0xaf, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0xbf, 0xfe, 0x60, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x8f, 0xfc, 0x10, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x2f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x8, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0xdf, 0xf9, 0x99, 0x99, 0x99, 0x99,
|
||||
0x99, 0x92, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0x41, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0xf4,
|
||||
|
||||
/* U+0033 "3" */
|
||||
0x0, 0x0, 0x4, 0x78, 0x87, 0x40, 0x0, 0x0,
|
||||
0x0, 0x8, 0xff, 0xff, 0xff, 0xfe, 0x60, 0x0,
|
||||
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x0,
|
||||
0x6, 0xff, 0xf7, 0x20, 0x14, 0xbf, 0xff, 0x10,
|
||||
0xd, 0xff, 0x40, 0x0, 0x0, 0xc, 0xff, 0x70,
|
||||
0x2f, 0xfc, 0x0, 0x0, 0x0, 0x5, 0xff, 0xa0,
|
||||
0x4f, 0xf7, 0x0, 0x0, 0x0, 0x2, 0xff, 0xb0,
|
||||
0x3a, 0xa4, 0x0, 0x0, 0x0, 0x5, 0xff, 0x80,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x30,
|
||||
0x0, 0x0, 0x0, 0x0, 0x14, 0xcf, 0xf9, 0x0,
|
||||
0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0x80, 0x0,
|
||||
0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xc4, 0x0,
|
||||
0x0, 0x0, 0x0, 0x45, 0x69, 0xef, 0xff, 0x60,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0xf1,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf7,
|
||||
0x12, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xfa,
|
||||
0xcf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xfb,
|
||||
0xbf, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8,
|
||||
0x8f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4,
|
||||
0x2f, 0xff, 0x30, 0x0, 0x0, 0x8, 0xff, 0xd0,
|
||||
0xa, 0xff, 0xf8, 0x31, 0x25, 0xbf, 0xff, 0x30,
|
||||
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0,
|
||||
0x0, 0x5, 0xad, 0xff, 0xfd, 0xa5, 0x0, 0x0,
|
||||
|
||||
/* U+0034 "4" */
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xf6, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0x60,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0xf6,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff,
|
||||
0x60, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xdf,
|
||||
0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xc6,
|
||||
0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf2,
|
||||
0x6f, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xf7,
|
||||
0x6, 0xff, 0x60, 0x0, 0x0, 0x0, 0x1e, 0xfc,
|
||||
0x0, 0x6f, 0xf6, 0x0, 0x0, 0x0, 0xa, 0xff,
|
||||
0x20, 0x6, 0xff, 0x60, 0x0, 0x0, 0x5, 0xff,
|
||||
0x60, 0x0, 0x6f, 0xf6, 0x0, 0x0, 0x2, 0xff,
|
||||
0xb0, 0x0, 0x6, 0xff, 0x60, 0x0, 0x0, 0xcf,
|
||||
0xf1, 0x0, 0x0, 0x6f, 0xf6, 0x0, 0x0, 0x7f,
|
||||
0xf6, 0x0, 0x0, 0x6, 0xff, 0x60, 0x0, 0x2f,
|
||||
0xfb, 0x0, 0x0, 0x0, 0x6f, 0xf6, 0x0, 0x4,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
|
||||
0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
||||
0xc1, 0x55, 0x55, 0x55, 0x55, 0x59, 0xff, 0x95,
|
||||
0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf6,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff,
|
||||
0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f,
|
||||
0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6,
|
||||
0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x6f, 0xf6, 0x0, 0x0,
|
||||
|
||||
/* U+0035 "5" */
|
||||
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20,
|
||||
0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20,
|
||||
0x0, 0xdf, 0xeb, 0xbb, 0xbb, 0xbb, 0xbb, 0x10,
|
||||
0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x1, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x3, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x6, 0xff, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x8, 0xfe, 0x4, 0x8a, 0xa7, 0x30, 0x0, 0x0,
|
||||
0xa, 0xfe, 0xcf, 0xff, 0xff, 0xfc, 0x40, 0x0,
|
||||
0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0,
|
||||
0xe, 0xff, 0xd6, 0x10, 0x27, 0xef, 0xff, 0x30,
|
||||
0xf, 0xfb, 0x0, 0x0, 0x0, 0x1d, 0xff, 0xc0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf1,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf5,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf7,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xf5,
|
||||
0xcd, 0xd0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf2,
|
||||
0xbf, 0xf4, 0x0, 0x0, 0x0, 0x4, 0xff, 0xd0,
|
||||
0x6f, 0xfd, 0x10, 0x0, 0x0, 0x1d, 0xff, 0x60,
|
||||
0xc, 0xff, 0xe7, 0x32, 0x26, 0xef, 0xfa, 0x0,
|
||||
0x1, 0xcf, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0,
|
||||
0x0, 0x5, 0xad, 0xff, 0xec, 0x82, 0x0, 0x0,
|
||||
|
||||
/* U+0036 "6" */
|
||||
0x0, 0x0, 0x0, 0x35, 0x66, 0x30, 0x0, 0x0,
|
||||
0x0, 0x0, 0x6e, 0xff, 0xff, 0xfe, 0x70, 0x0,
|
||||
0x0, 0xa, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x0,
|
||||
0x0, 0x8f, 0xfe, 0x71, 0x2, 0x8f, 0xff, 0x50,
|
||||
0x2, 0xff, 0xe2, 0x0, 0x0, 0x6, 0xff, 0xc0,
|
||||
0x9, 0xff, 0x60, 0x0, 0x0, 0x0, 0xef, 0xf0,
|
||||
0xe, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x13, 0x30,
|
||||
0x3f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x5f, 0xf6, 0x0, 0x36, 0x75, 0x10, 0x0, 0x0,
|
||||
0x8f, 0xf4, 0x4e, 0xff, 0xff, 0xfc, 0x40, 0x0,
|
||||
0xaf, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0,
|
||||
0xbf, 0xff, 0xf9, 0x30, 0x2, 0x9f, 0xff, 0x60,
|
||||
0xbf, 0xff, 0x70, 0x0, 0x0, 0x7, 0xff, 0xe0,
|
||||
0xbf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf4,
|
||||
0xbf, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf8,
|
||||
0x9f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf9,
|
||||
0x7f, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8,
|
||||
0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf6,
|
||||
0xe, 0xff, 0x30, 0x0, 0x0, 0x1, 0xff, 0xf1,
|
||||
0x7, 0xff, 0xd1, 0x0, 0x0, 0xb, 0xff, 0x90,
|
||||
0x0, 0xcf, 0xff, 0x96, 0x58, 0xdf, 0xfd, 0x0,
|
||||
0x0, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x0,
|
||||
0x0, 0x0, 0x5a, 0xef, 0xfd, 0xa5, 0x0, 0x0,
|
||||
|
||||
/* U+0037 "7" */
|
||||
0xab, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xb8,
|
||||
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc,
|
||||
0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf2,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, 0x40,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xf8, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xc0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0x20, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x6f, 0xf7, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x1, 0xef, 0xd0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x9, 0xff, 0x50, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x2f, 0xfd, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x9f, 0xf5, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x8, 0xff, 0x80, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0xe, 0xff, 0x20, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x9f, 0xf7, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0xdf, 0xf3, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x5, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x8, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0,
|
||||
|
||||
/* U+0038 "8" */
|
||||
0x0, 0x0, 0x5, 0x78, 0x86, 0x30, 0x0, 0x0,
|
||||
0x0, 0x8, 0xff, 0xff, 0xff, 0xfd, 0x30, 0x0,
|
||||
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0,
|
||||
0x4, 0xff, 0xf8, 0x20, 0x14, 0xcf, 0xfd, 0x0,
|
||||
0xa, 0xff, 0x70, 0x0, 0x0, 0xc, 0xff, 0x40,
|
||||
0xd, 0xff, 0x0, 0x0, 0x0, 0x5, 0xff, 0x80,
|
||||
0xf, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, 0x90,
|
||||
0xe, 0xff, 0x10, 0x0, 0x0, 0x6, 0xff, 0x70,
|
||||
0x9, 0xff, 0x80, 0x0, 0x0, 0xd, 0xff, 0x20,
|
||||
0x2, 0xff, 0xf9, 0x20, 0x14, 0xcf, 0xfa, 0x0,
|
||||
0x0, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0,
|
||||
0x0, 0x19, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0,
|
||||
0x3, 0xef, 0xff, 0xb9, 0xac, 0xff, 0xfc, 0x0,
|
||||
0xe, 0xff, 0x90, 0x0, 0x0, 0x2c, 0xff, 0xa0,
|
||||
0x7f, 0xfb, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf1,
|
||||
0xaf, 0xf6, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xf5,
|
||||
0xbf, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xf7,
|
||||
0xbf, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf5,
|
||||
0x8f, 0xfa, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf2,
|
||||
0x3f, 0xff, 0x40, 0x0, 0x0, 0x6, 0xff, 0xc0,
|
||||
0x9, 0xff, 0xf9, 0x41, 0x14, 0x9f, 0xff, 0x30,
|
||||
0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x0,
|
||||
0x0, 0x2, 0x8c, 0xef, 0xfe, 0xb6, 0x0, 0x0,
|
||||
|
||||
/* U+0039 "9" */
|
||||
0x0, 0x1, 0x7c, 0xef, 0xec, 0x81, 0x0, 0x0,
|
||||
0x0, 0x4e, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0,
|
||||
0x2, 0xff, 0xfd, 0x97, 0x8c, 0xff, 0xf5, 0x0,
|
||||
0xb, 0xff, 0x90, 0x0, 0x0, 0x5f, 0xfe, 0x10,
|
||||
0x2f, 0xfd, 0x0, 0x0, 0x0, 0x8, 0xff, 0x70,
|
||||
0x6f, 0xf7, 0x0, 0x0, 0x0, 0x2, 0xff, 0xd0,
|
||||
0x8f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1,
|
||||
0x9f, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xef, 0xf4,
|
||||
0x8f, 0xf5, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf6,
|
||||
0x5f, 0xf9, 0x0, 0x0, 0x0, 0x4, 0xff, 0xf7,
|
||||
0x1f, 0xff, 0x20, 0x0, 0x0, 0xc, 0xff, 0xf7,
|
||||
0x8, 0xff, 0xf7, 0x20, 0x4, 0xcf, 0xff, 0xf5,
|
||||
0x0, 0xcf, 0xff, 0xff, 0xff, 0xfe, 0x9f, 0xf4,
|
||||
0x0, 0x7, 0xef, 0xff, 0xff, 0xb1, 0xaf, 0xf2,
|
||||
0x0, 0x0, 0x2, 0x45, 0x31, 0x0, 0xef, 0xe0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff, 0xb0,
|
||||
0x27, 0x73, 0x0, 0x0, 0x0, 0x8, 0xff, 0x60,
|
||||
0x3f, 0xf9, 0x0, 0x0, 0x0, 0xe, 0xfe, 0x0,
|
||||
0xe, 0xfe, 0x10, 0x0, 0x0, 0x9f, 0xf7, 0x0,
|
||||
0x7, 0xff, 0xc3, 0x0, 0x19, 0xff, 0xb0, 0x0,
|
||||
0x0, 0x9f, 0xff, 0xfe, 0xff, 0xfb, 0x0, 0x0,
|
||||
0x0, 0x4, 0xad, 0xff, 0xea, 0x40, 0x0, 0x0,
|
||||
|
||||
/* U+003A ":" */
|
||||
0x4f, 0xff, 0x24, 0xff, 0xf2, 0x4f, 0xff, 0x21,
|
||||
0x55, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x1, 0x55, 0x50, 0x4f, 0xff, 0x24, 0xff, 0xf2,
|
||||
0x4f, 0xff, 0x20,
|
||||
|
||||
/* U+0041 "A" */
|
||||
0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xc0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff,
|
||||
0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0xdf, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xd0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xff, 0x4e,
|
||||
0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0xef, 0xe0, 0x9f, 0xf9, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x5f, 0xf9, 0x4, 0xff, 0xe0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0xb, 0xff, 0x30, 0xf,
|
||||
0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff,
|
||||
0xe0, 0x0, 0xaf, 0xfa, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x7f, 0xf8, 0x0, 0x5, 0xff, 0xf0, 0x0,
|
||||
0x0, 0x0, 0x0, 0xd, 0xff, 0x30, 0x0, 0xf,
|
||||
0xff, 0x60, 0x0, 0x0, 0x0, 0x3, 0xff, 0xd0,
|
||||
0x0, 0x0, 0xaf, 0xfb, 0x0, 0x0, 0x0, 0x0,
|
||||
0x9f, 0xf8, 0x0, 0x0, 0x5, 0xff, 0xf1, 0x0,
|
||||
0x0, 0x0, 0xe, 0xff, 0x20, 0x0, 0x0, 0xf,
|
||||
0xff, 0x70, 0x0, 0x0, 0x5, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, 0x0, 0xbf,
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0,
|
||||
0x0, 0x1f, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, 0xbe,
|
||||
0xff, 0x80, 0x0, 0x7, 0xff, 0xb0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0xdf, 0xf5,
|
||||
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf4, 0x0,
|
||||
0x3f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc,
|
||||
0xff, 0x90, 0x9, 0xff, 0x90, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x6f, 0xff, 0x0, 0xef, 0xf3, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf5, 0x5f,
|
||||
0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa,
|
||||
0xff, 0xb0,
|
||||
|
||||
/* U+0056 "V" */
|
||||
0x3f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0xe, 0xff, 0x90, 0xdf, 0xfa, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x4, 0xff, 0xf3, 0x7, 0xff, 0xf0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xfd, 0x0,
|
||||
0x1f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0xe,
|
||||
0xff, 0x70, 0x0, 0xbf, 0xfa, 0x0, 0x0, 0x0,
|
||||
0x0, 0x4, 0xff, 0xf1, 0x0, 0x5, 0xff, 0xf0,
|
||||
0x0, 0x0, 0x0, 0x0, 0xaf, 0xfb, 0x0, 0x0,
|
||||
0xf, 0xff, 0x50, 0x0, 0x0, 0x0, 0xf, 0xff,
|
||||
0x60, 0x0, 0x0, 0xaf, 0xfa, 0x0, 0x0, 0x0,
|
||||
0x5, 0xff, 0xf0, 0x0, 0x0, 0x4, 0xff, 0xf0,
|
||||
0x0, 0x0, 0x0, 0xaf, 0xfa, 0x0, 0x0, 0x0,
|
||||
0xe, 0xff, 0x50, 0x0, 0x0, 0xf, 0xff, 0x40,
|
||||
0x0, 0x0, 0x0, 0x8f, 0xfa, 0x0, 0x0, 0x5,
|
||||
0xff, 0xe0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0,
|
||||
0x0, 0x0, 0xbf, 0xf8, 0x0, 0x0, 0x0, 0x0,
|
||||
0xd, 0xff, 0x50, 0x0, 0x1f, 0xff, 0x30, 0x0,
|
||||
0x0, 0x0, 0x0, 0x7f, 0xfb, 0x0, 0x6, 0xff,
|
||||
0xd0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0,
|
||||
0x0, 0xcf, 0xf7, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0xb, 0xff, 0x50, 0x1f, 0xff, 0x10, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x5f, 0xfb, 0x7, 0xff, 0xb0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf1,
|
||||
0xcf, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0xa, 0xff, 0x8f, 0xff, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0xa0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
|
||||
0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x8, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0,
|
||||
0x0, 0x0, 0x0, 0x2f, 0xff, 0x80, 0x0, 0x0,
|
||||
0x0, 0x0,
|
||||
|
||||
/* U+0057 "W" */
|
||||
0x5f, 0xfd, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff,
|
||||
0xe0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xf7, 0x1f,
|
||||
0xff, 0x10, 0x0, 0x0, 0x0, 0xf, 0xff, 0xf2,
|
||||
0x0, 0x0, 0x0, 0x1, 0xff, 0xf3, 0xd, 0xff,
|
||||
0x50, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xf6, 0x0,
|
||||
0x0, 0x0, 0x5, 0xff, 0xf0, 0x9, 0xff, 0x90,
|
||||
0x0, 0x0, 0x0, 0x9f, 0xff, 0xfb, 0x0, 0x0,
|
||||
0x0, 0x8, 0xff, 0xb0, 0x5, 0xff, 0xc0, 0x0,
|
||||
0x0, 0x0, 0xdf, 0xed, 0xff, 0x0, 0x0, 0x0,
|
||||
0xc, 0xff, 0x70, 0x1, 0xff, 0xf0, 0x0, 0x0,
|
||||
0x2, 0xff, 0xa8, 0xff, 0x40, 0x0, 0x0, 0xf,
|
||||
0xff, 0x30, 0x0, 0xcf, 0xf4, 0x0, 0x0, 0x6,
|
||||
0xff, 0x64, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xfe,
|
||||
0x0, 0x0, 0x8f, 0xf8, 0x0, 0x0, 0xa, 0xff,
|
||||
0x10, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfa, 0x0,
|
||||
0x0, 0x4f, 0xfb, 0x0, 0x0, 0xe, 0xfd, 0x0,
|
||||
0xbf, 0xf1, 0x0, 0x0, 0xaf, 0xf6, 0x0, 0x0,
|
||||
0xf, 0xff, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x6f,
|
||||
0xf5, 0x0, 0x0, 0xef, 0xf2, 0x0, 0x0, 0xc,
|
||||
0xff, 0x30, 0x0, 0x8f, 0xf4, 0x0, 0x2f, 0xf9,
|
||||
0x0, 0x2, 0xff, 0xe0, 0x0, 0x0, 0x8, 0xff,
|
||||
0x60, 0x0, 0xcf, 0xf0, 0x0, 0xd, 0xfe, 0x0,
|
||||
0x5, 0xff, 0x90, 0x0, 0x0, 0x3, 0xff, 0xa0,
|
||||
0x0, 0xff, 0xb0, 0x0, 0x9, 0xff, 0x20, 0x9,
|
||||
0xff, 0x50, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x5,
|
||||
0xff, 0x60, 0x0, 0x4, 0xff, 0x70, 0xd, 0xff,
|
||||
0x10, 0x0, 0x0, 0x0, 0xbf, 0xf2, 0x9, 0xff,
|
||||
0x20, 0x0, 0x0, 0xff, 0xb0, 0xf, 0xfd, 0x0,
|
||||
0x0, 0x0, 0x0, 0x7f, 0xf5, 0xd, 0xfd, 0x0,
|
||||
0x0, 0x0, 0xbf, 0xf0, 0x4f, 0xf9, 0x0, 0x0,
|
||||
0x0, 0x0, 0x3f, 0xf9, 0x2f, 0xf9, 0x0, 0x0,
|
||||
0x0, 0x7f, 0xf4, 0x7f, 0xf5, 0x0, 0x0, 0x0,
|
||||
0x0, 0xe, 0xfd, 0x6f, 0xf4, 0x0, 0x0, 0x0,
|
||||
0x2f, 0xf8, 0xbf, 0xf1, 0x0, 0x0, 0x0, 0x0,
|
||||
0xa, 0xff, 0xcf, 0xf0, 0x0, 0x0, 0x0, 0xe,
|
||||
0xfd, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x6,
|
||||
0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x9, 0xff,
|
||||
0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x2, 0xff,
|
||||
0xff, 0x70, 0x0, 0x0, 0x0, 0x5, 0xff, 0xff,
|
||||
0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff,
|
||||
0x20, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xfe, 0x0,
|
||||
0x0, 0x0, 0x0, 0x0, 0xcf, 0xfc, 0x0, 0x0,
|
||||
0x0,
|
||||
|
||||
/* U+006D "m" */
|
||||
0x0, 0x0, 0x0, 0x57, 0x63, 0x0, 0x0, 0x2,
|
||||
0x67, 0x50, 0x0, 0xf, 0xfc, 0x7, 0xff, 0xff,
|
||||
0xfa, 0x0, 0x1b, 0xff, 0xff, 0xf7, 0x0, 0xff,
|
||||
0xc8, 0xff, 0xff, 0xff, 0xfa, 0x2e, 0xff, 0xff,
|
||||
0xff, 0xf7, 0xf, 0xff, 0xff, 0x83, 0x26, 0xff,
|
||||
0xff, 0xfd, 0x62, 0x4b, 0xff, 0xf1, 0xff, 0xff,
|
||||
0x30, 0x0, 0x8, 0xff, 0xfc, 0x0, 0x0, 0xd,
|
||||
0xff, 0x6f, 0xff, 0x70, 0x0, 0x0, 0x3f, 0xff,
|
||||
0x40, 0x0, 0x0, 0x7f, 0xf8, 0xff, 0xf2, 0x0,
|
||||
0x0, 0x2, 0xff, 0xf0, 0x0, 0x0, 0x4, 0xff,
|
||||
0x9f, 0xff, 0x0, 0x0, 0x0, 0x2f, 0xfc, 0x0,
|
||||
0x0, 0x0, 0x4f, 0xfa, 0xff, 0xe0, 0x0, 0x0,
|
||||
0x2, 0xff, 0xc0, 0x0, 0x0, 0x4, 0xff, 0xaf,
|
||||
0xfe, 0x0, 0x0, 0x0, 0x2f, 0xfc, 0x0, 0x0,
|
||||
0x0, 0x4f, 0xfa, 0xff, 0xe0, 0x0, 0x0, 0x2,
|
||||
0xff, 0xc0, 0x0, 0x0, 0x4, 0xff, 0xaf, 0xfe,
|
||||
0x0, 0x0, 0x0, 0x2f, 0xfc, 0x0, 0x0, 0x0,
|
||||
0x4f, 0xfa, 0xff, 0xe0, 0x0, 0x0, 0x2, 0xff,
|
||||
0xc0, 0x0, 0x0, 0x4, 0xff, 0xaf, 0xfe, 0x0,
|
||||
0x0, 0x0, 0x2f, 0xfc, 0x0, 0x0, 0x0, 0x4f,
|
||||
0xfa, 0xff, 0xe0, 0x0, 0x0, 0x2, 0xff, 0xc0,
|
||||
0x0, 0x0, 0x4, 0xff, 0xaf, 0xfe, 0x0, 0x0,
|
||||
0x0, 0x2f, 0xfc, 0x0, 0x0, 0x0, 0x4f, 0xfa,
|
||||
0xff, 0xe0, 0x0, 0x0, 0x2, 0xff, 0xc0, 0x0,
|
||||
0x0, 0x4, 0xff, 0xaf, 0xfe, 0x0, 0x0, 0x0,
|
||||
0x2f, 0xfc, 0x0, 0x0, 0x0, 0x4f, 0xfa,
|
||||
|
||||
/* U+0075 "u" */
|
||||
0xef, 0xf0, 0x0, 0x0, 0x0, 0x2f, 0xfa, 0xef,
|
||||
0xf0, 0x0, 0x0, 0x0, 0x2f, 0xfa, 0xef, 0xf0,
|
||||
0x0, 0x0, 0x0, 0x2f, 0xfa, 0xef, 0xf0, 0x0,
|
||||
0x0, 0x0, 0x2f, 0xfa, 0xef, 0xf0, 0x0, 0x0,
|
||||
0x0, 0x2f, 0xfa, 0xef, 0xf0, 0x0, 0x0, 0x0,
|
||||
0x2f, 0xfa, 0xef, 0xf0, 0x0, 0x0, 0x0, 0x2f,
|
||||
0xfa, 0xef, 0xf0, 0x0, 0x0, 0x0, 0x2f, 0xfa,
|
||||
0xef, 0xf0, 0x0, 0x0, 0x0, 0x2f, 0xfa, 0xef,
|
||||
0xf0, 0x0, 0x0, 0x0, 0x2f, 0xfa, 0xef, 0xf0,
|
||||
0x0, 0x0, 0x0, 0x4f, 0xfa, 0xef, 0xf0, 0x0,
|
||||
0x0, 0x0, 0x7f, 0xfa, 0xdf, 0xf2, 0x0, 0x0,
|
||||
0x0, 0xdf, 0xfa, 0xbf, 0xf9, 0x0, 0x0, 0x8,
|
||||
0xff, 0xfa, 0x6f, 0xff, 0x93, 0x14, 0xaf, 0xbf,
|
||||
0xfa, 0xb, 0xff, 0xff, 0xff, 0xfb, 0xf, 0xfa,
|
||||
0x0, 0x6c, 0xff, 0xeb, 0x50, 0xf, 0xfa
|
||||
};
|
||||
|
||||
|
||||
/*---------------------
|
||||
* GLYPH DESCRIPTION
|
||||
*--------------------*/
|
||||
|
||||
static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = {
|
||||
{.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */,
|
||||
{.bitmap_index = 0, .adv_w = 298, .box_w = 17, .box_h = 3, .ofs_x = 1, .ofs_y = 7},
|
||||
{.bitmap_index = 26, .adv_w = 142, .box_w = 5, .box_h = 4, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 36, .adv_w = 284, .box_w = 16, .box_h = 23, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 220, .adv_w = 284, .box_w = 9, .box_h = 23, .ofs_x = 3, .ofs_y = 0},
|
||||
{.bitmap_index = 324, .adv_w = 284, .box_w = 17, .box_h = 22, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 511, .adv_w = 284, .box_w = 16, .box_h = 23, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 695, .adv_w = 284, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 891, .adv_w = 284, .box_w = 16, .box_h = 22, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 1067, .adv_w = 284, .box_w = 16, .box_h = 23, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 1251, .adv_w = 284, .box_w = 16, .box_h = 22, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 1427, .adv_w = 284, .box_w = 16, .box_h = 23, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 1611, .adv_w = 284, .box_w = 16, .box_h = 22, .ofs_x = 1, .ofs_y = 0},
|
||||
{.bitmap_index = 1787, .adv_w = 142, .box_w = 5, .box_h = 17, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 1830, .adv_w = 340, .box_w = 21, .box_h = 23, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 2072, .adv_w = 340, .box_w = 21, .box_h = 23, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 2314, .adv_w = 482, .box_w = 30, .box_h = 23, .ofs_x = 0, .ofs_y = 0},
|
||||
{.bitmap_index = 2659, .adv_w = 424, .box_w = 23, .box_h = 18, .ofs_x = 2, .ofs_y = 0},
|
||||
{.bitmap_index = 2866, .adv_w = 284, .box_w = 14, .box_h = 17, .ofs_x = 2, .ofs_y = 0}
|
||||
};
|
||||
|
||||
/*---------------------
|
||||
* CHARACTER MAPPING
|
||||
*--------------------*/
|
||||
|
||||
static const uint16_t unicode_list_0[] = {
|
||||
0x0, 0x1, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8,
|
||||
0x9, 0xa, 0xb, 0xc, 0xd, 0x14, 0x29, 0x2a,
|
||||
0x40, 0x48
|
||||
};
|
||||
|
||||
/*Collect the unicode lists and glyph_id offsets*/
|
||||
static const lv_font_fmt_txt_cmap_t cmaps[] =
|
||||
{
|
||||
{
|
||||
.range_start = 45, .range_length = 73, .glyph_id_start = 1,
|
||||
.unicode_list = unicode_list_0, .glyph_id_ofs_list = NULL, .list_length = 18, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*--------------------
|
||||
* ALL CUSTOM DATA
|
||||
*--------------------*/
|
||||
|
||||
#if LVGL_VERSION_MAJOR == 8
|
||||
/*Store all the custom data of the font*/
|
||||
static lv_font_fmt_txt_glyph_cache_t cache;
|
||||
#endif
|
||||
|
||||
#if LVGL_VERSION_MAJOR >= 8
|
||||
static const lv_font_fmt_txt_dsc_t font_dsc = {
|
||||
#else
|
||||
static lv_font_fmt_txt_dsc_t font_dsc = {
|
||||
#endif
|
||||
.glyph_bitmap = glyph_bitmap,
|
||||
.glyph_dsc = glyph_dsc,
|
||||
.cmaps = cmaps,
|
||||
.kern_dsc = NULL,
|
||||
.kern_scale = 0,
|
||||
.cmap_num = 1,
|
||||
.bpp = 4,
|
||||
.kern_classes = 0,
|
||||
.bitmap_format = 0,
|
||||
#if LVGL_VERSION_MAJOR == 8
|
||||
.cache = &cache
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*-----------------
|
||||
* PUBLIC FONT
|
||||
*----------------*/
|
||||
|
||||
/*Initialize a public general font descriptor*/
|
||||
#if LVGL_VERSION_MAJOR >= 8
|
||||
const lv_font_t ui_font_HeiTi32 = {
|
||||
#else
|
||||
lv_font_t ui_font_HeiTi32 = {
|
||||
#endif
|
||||
.get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/
|
||||
.get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/
|
||||
.line_height = 23, /*The maximum line height required by the font*/
|
||||
.base_line = 0, /*Baseline measured from the bottom of the line*/
|
||||
#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0)
|
||||
.subpx = LV_FONT_SUBPX_NONE,
|
||||
#endif
|
||||
#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8
|
||||
.underline_position = -6,
|
||||
.underline_thickness = 2,
|
||||
#endif
|
||||
.dsc = &font_dsc, /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */
|
||||
#if LV_VERSION_CHECK(8, 2, 0) || LVGL_VERSION_MAJOR >= 9
|
||||
.fallback = NULL,
|
||||
#endif
|
||||
.user_data = NULL,
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif /*#if UI_FONT_HEITI32*/
|
||||
|
||||
1006
software/Power_Pico/User/GUI/font/ui_font_HeiTi48.c
Normal file
1006
software/Power_Pico/User/GUI/font/ui_font_HeiTi48.c
Normal file
File diff suppressed because it is too large
Load Diff
1705
software/Power_Pico/User/GUI/font/ui_font_zhongyuan18.c
Normal file
1705
software/Power_Pico/User/GUI/font/ui_font_zhongyuan18.c
Normal file
File diff suppressed because it is too large
Load Diff
2293
software/Power_Pico/User/GUI/font/ui_font_zhongyuan20.c
Normal file
2293
software/Power_Pico/User/GUI/font/ui_font_zhongyuan20.c
Normal file
File diff suppressed because it is too large
Load Diff
538
software/Power_Pico/User/GUI/images/ui_img_chicken_png.c
Normal file
538
software/Power_Pico/User/GUI/images/ui_img_chicken_png.c
Normal file
@@ -0,0 +1,538 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "../ui.h"
|
||||
|
||||
#ifndef LV_ATTRIBUTE_MEM_ALIGN
|
||||
#define LV_ATTRIBUTE_MEM_ALIGN
|
||||
#endif
|
||||
|
||||
// IMAGE DATA: assets/chicken.png
|
||||
const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_chicken_png_data[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDE,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDE,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDE,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x7F,0x9F,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x3F,0x7F,0xDE,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x86,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xBF,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xBF,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0xDE,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0x86,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0x86,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xBF,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x86,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x86,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1F,0x77,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1F,0x77,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0xDF,0x7E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDF,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0xDE,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x76,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x5F,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x7F,0x7F,0x1E,0x6E,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x9F,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x6D,0x9E,0x6D,0x9E,0x65,0x9E,0x65,0x7E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,
|
||||
0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x9E,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
||||
//alpha channel data:
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0x80,0x9F,0xBF,0x9F,0x9F,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0x80,0x80,0x80,0x9F,0xBF,0xBF,0x9F,0x9F,0x9F,0x80,0x60,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x20,0x80,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xDF,0x9F,0x60,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x9F,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xDF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x9F,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xDF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xDF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xDF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x60,0x00,0x00,0x20,0x40,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xBF,0x80,0x40,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x60,0x9F,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0x80,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE8,0xE5,0xDC,0xDC,0xDC,0xDC,0xDC,0xDC,0xDC,0xDC,0xDC,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x40,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x40,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xBF,0x9F,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xBC,0xBC,0xBC,0xBC,0xBC,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xE7,0xDF,0xBF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x20,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x9F,0xDF,0xBF,0xBF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEB,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x9F,0x80,0x60,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xDF,0xFF,0xFF,0xFF,0xFF,0xDF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x80,0x9F,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x60,0x40,0x20,0x80,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0x60,0x80,0x80,0x60,0x40,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,
|
||||
0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x60,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x80,0xBF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x40,0x80,0xBF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
|
||||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
|
||||
};
|
||||
const lv_image_dsc_t ui_img_chicken_png = {
|
||||
.header.w = 128,
|
||||
.header.h = 128,
|
||||
.data_size = sizeof(ui_img_chicken_png_data),
|
||||
.header.cf = LV_COLOR_FORMAT_NATIVE_WITH_ALPHA,
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.data = ui_img_chicken_png_data
|
||||
};
|
||||
|
||||
353
software/Power_Pico/User/GUI/screens/ui_ChartPage.c
Normal file
353
software/Power_Pico/User/GUI/screens/ui_ChartPage.c
Normal file
@@ -0,0 +1,353 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "../ui.h"
|
||||
|
||||
lv_obj_t * ui_ChartPage = NULL;
|
||||
static lv_obj_t * ui_ContainChart = NULL;
|
||||
static lv_obj_t * row_line1 = NULL;
|
||||
static lv_obj_t * row_line2 = NULL;
|
||||
static lv_obj_t * row_line3 = NULL;
|
||||
static lv_obj_t * row_line4 = NULL;
|
||||
static lv_obj_t * col_line1 = NULL;
|
||||
static lv_obj_t * col_line2 = NULL;
|
||||
static lv_obj_t * col_line3 = NULL;
|
||||
static lv_obj_t * col_line4 = NULL;
|
||||
static lv_obj_t * ui_AxisV5 = NULL;
|
||||
static lv_obj_t * ui_AxisV4 = NULL;
|
||||
static lv_obj_t * ui_AxisV3 = NULL;
|
||||
static lv_obj_t * ui_AxisV2 = NULL;
|
||||
static lv_obj_t * ui_AxisV1 = NULL;
|
||||
static lv_obj_t * ui_AxisV = NULL;
|
||||
static lv_obj_t * ui_AxisC = NULL;
|
||||
static lv_obj_t * ui_AxisC1 = NULL;
|
||||
static lv_obj_t * ui_AxisC2 = NULL;
|
||||
static lv_obj_t * ui_AxisC3 = NULL;
|
||||
static lv_obj_t * ui_AxisC4 = NULL;
|
||||
static lv_obj_t * ui_AxisC5 = NULL;
|
||||
static lv_obj_t * ui_PanelVol = NULL;
|
||||
static lv_obj_t * ui_LabelVol = NULL;
|
||||
static lv_obj_t * ui_LabelVolUnit = NULL;
|
||||
static lv_obj_t * ui_PanelCur = NULL;
|
||||
static lv_obj_t * ui_LabelCur1 = NULL;
|
||||
static lv_obj_t * ui_LabelCurUnit = NULL;
|
||||
static lv_obj_t * ui_ButState = NULL;
|
||||
static lv_obj_t * ui_LabelState = NULL;
|
||||
static lv_obj_t * ui_LineVol = NULL; // 电压波形
|
||||
static lv_obj_t * ui_LineCur = NULL; // 电流波形
|
||||
|
||||
static lv_timer_t * chart_update_timer = NULL; // 定时器
|
||||
static bool is_chart_running = true;
|
||||
|
||||
static lv_point_precise_t line_points[4][2] = {{{-170, 36}, {170, 36}}, {{-170, 72},{170, 72}}, {{-170,108},{170,108}}, {{-170, 144},{170, 144}}};
|
||||
static lv_point_precise_t col_points[4][2] = {{{34, -180}, {34, 180}}, {{68, -180},{68, 180}}, {{102, -180},{102, 180}}, {{136, -180},{136, 180}}};
|
||||
|
||||
#define POINTS_NUM 32
|
||||
// 模拟数据数组
|
||||
// 数据数组
|
||||
static lv_point_precise_t vol_points[POINTS_NUM]; // 电压波形点
|
||||
static lv_point_precise_t cur_points[POINTS_NUM]; // 电流波形点
|
||||
static uint8_t data_index = 0;
|
||||
|
||||
// event funtions
|
||||
|
||||
// 定时器回调函数:更新图表数据
|
||||
static void _chart_update_cb(lv_timer_t * timer) {
|
||||
|
||||
}
|
||||
|
||||
#include "key.h"
|
||||
void ui_chart_page_key_handler(void* key_event)
|
||||
{
|
||||
if ( ((key_event_t*)key_event)->id == KEY_ID_B && ((key_event_t*)key_event)->type == KEY_EVT_CLICK )
|
||||
{
|
||||
lv_lib_pm_next();
|
||||
}
|
||||
}
|
||||
|
||||
// build funtions
|
||||
|
||||
void ui_ChartPage_screen_init(void)
|
||||
{
|
||||
ui_ChartPage = lv_obj_create(NULL);
|
||||
lv_obj_remove_flag(ui_ChartPage, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_ContainChart = lv_obj_create(ui_ChartPage);
|
||||
lv_obj_remove_style_all(ui_ContainChart);
|
||||
lv_obj_set_width(ui_ContainChart, 170);
|
||||
lv_obj_set_height(ui_ContainChart, 180);
|
||||
lv_obj_set_x(ui_ContainChart, 0);
|
||||
lv_obj_set_y(ui_ContainChart, -15);
|
||||
lv_obj_set_align(ui_ContainChart, LV_ALIGN_CENTER);
|
||||
lv_obj_remove_flag(ui_ContainChart, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_ContainChart, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_ContainChart, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_color(ui_ContainChart, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_ContainChart, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_ContainChart, 2, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
row_line1 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(row_line1, line_points[0], 2);
|
||||
lv_obj_set_style_line_color(row_line1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(row_line1, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(row_line1, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(row_line1, LV_ALIGN_TOP_MID);
|
||||
|
||||
row_line2 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(row_line2, line_points[1], 2);
|
||||
lv_obj_set_style_line_color(row_line2, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(row_line2, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(row_line2, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(row_line2, LV_ALIGN_TOP_MID);
|
||||
|
||||
row_line3 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(row_line3, line_points[2], 2);
|
||||
lv_obj_set_style_line_color(row_line3, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(row_line3, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(row_line3, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(row_line3, LV_ALIGN_TOP_MID);
|
||||
|
||||
row_line4 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(row_line4, line_points[3], 2);
|
||||
lv_obj_set_style_line_color(row_line4, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(row_line4, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(row_line4, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(row_line4, LV_ALIGN_TOP_MID);
|
||||
|
||||
col_line1 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(col_line1, col_points[0], 2);
|
||||
lv_obj_set_style_line_color(col_line1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(col_line1, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(col_line1, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(col_line1, LV_ALIGN_LEFT_MID);
|
||||
|
||||
col_line2 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(col_line2, col_points[1], 2);
|
||||
lv_obj_set_style_line_color(col_line2, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(col_line2, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(col_line2, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(col_line2, LV_ALIGN_LEFT_MID);
|
||||
|
||||
col_line3 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(col_line3, col_points[2], 2);
|
||||
lv_obj_set_style_line_color(col_line3, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(col_line3, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(col_line3, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(col_line3, LV_ALIGN_LEFT_MID);
|
||||
|
||||
col_line4 = lv_line_create(ui_ContainChart);
|
||||
lv_line_set_points(col_line4, col_points[3], 2);
|
||||
lv_obj_set_style_line_color(col_line4, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_width(col_line4, 1, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_line_opa(col_line4, 64, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_align(col_line4, LV_ALIGN_LEFT_MID);
|
||||
|
||||
ui_AxisV5 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisV5, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisV5, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisV5, 100);
|
||||
lv_obj_set_y(ui_AxisV5, -104);
|
||||
lv_obj_set_align(ui_AxisV5, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisV5, "5.0");
|
||||
lv_obj_set_style_text_color(ui_AxisV5, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisV5, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisV4 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisV4, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisV4, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisV4, 100);
|
||||
lv_obj_set_y(ui_AxisV4, -68);
|
||||
lv_obj_set_align(ui_AxisV4, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisV4, "4.0");
|
||||
lv_obj_set_style_text_color(ui_AxisV4, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisV4, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisV3 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisV3, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisV3, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisV3, 100);
|
||||
lv_obj_set_y(ui_AxisV3, -32);
|
||||
lv_obj_set_align(ui_AxisV3, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisV3, "3.0");
|
||||
lv_obj_set_style_text_color(ui_AxisV3, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisV3, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisV2 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisV2, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisV2, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisV2, 100);
|
||||
lv_obj_set_y(ui_AxisV2, 4);
|
||||
lv_obj_set_align(ui_AxisV2, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisV2, "2.0");
|
||||
lv_obj_set_style_text_color(ui_AxisV2, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisV2, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisV1 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisV1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisV1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisV1, 100);
|
||||
lv_obj_set_y(ui_AxisV1, 39);
|
||||
lv_obj_set_align(ui_AxisV1, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisV1, "1.0");
|
||||
lv_obj_set_style_text_color(ui_AxisV1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisV1, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisV = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisV, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisV, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisV, 100);
|
||||
lv_obj_set_y(ui_AxisV, 70);
|
||||
lv_obj_set_align(ui_AxisV, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisV, "V");
|
||||
lv_obj_set_style_text_color(ui_AxisV, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisV, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisC = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisC, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisC, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisC, -100);
|
||||
lv_obj_set_y(ui_AxisC, 70);
|
||||
lv_obj_set_align(ui_AxisC, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisC, "A");
|
||||
lv_obj_set_style_text_color(ui_AxisC, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisC, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisC1 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisC1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisC1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisC1, -100);
|
||||
lv_obj_set_y(ui_AxisC1, 39);
|
||||
lv_obj_set_align(ui_AxisC1, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisC1, "0.4");
|
||||
lv_obj_set_style_text_color(ui_AxisC1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisC1, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisC2 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisC2, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisC2, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisC2, -100);
|
||||
lv_obj_set_y(ui_AxisC2, 4);
|
||||
lv_obj_set_align(ui_AxisC2, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisC2, "0.8");
|
||||
lv_obj_set_style_text_color(ui_AxisC2, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisC2, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisC3 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisC3, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisC3, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisC3, -100);
|
||||
lv_obj_set_y(ui_AxisC3, -32);
|
||||
lv_obj_set_align(ui_AxisC3, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisC3, "1.2");
|
||||
lv_obj_set_style_text_color(ui_AxisC3, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisC3, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisC4 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisC4, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisC4, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisC4, -100);
|
||||
lv_obj_set_y(ui_AxisC4, -68);
|
||||
lv_obj_set_align(ui_AxisC4, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisC4, "1.6");
|
||||
lv_obj_set_style_text_color(ui_AxisC4, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisC4, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_AxisC5 = lv_label_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_AxisC5, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_AxisC5, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_AxisC5, -100);
|
||||
lv_obj_set_y(ui_AxisC5, -104);
|
||||
lv_obj_set_align(ui_AxisC5, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_AxisC5, "2.0");
|
||||
lv_obj_set_style_text_color(ui_AxisC5, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_text_opa(ui_AxisC5, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelVol = lv_obj_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_PanelVol, 80);
|
||||
lv_obj_set_height(ui_PanelVol, 35);
|
||||
lv_obj_set_x(ui_PanelVol, -30);
|
||||
lv_obj_set_y(ui_PanelVol, -5);
|
||||
lv_obj_set_align(ui_PanelVol, LV_ALIGN_BOTTOM_MID);
|
||||
lv_obj_remove_flag(ui_PanelVol, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelVol, lv_color_hex(0xE36666), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_PanelVol, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelVol = lv_label_create(ui_PanelVol);
|
||||
lv_obj_set_width(ui_LabelVol, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelVol, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelVol, -12);
|
||||
lv_obj_set_y(ui_LabelVol, 0);
|
||||
lv_obj_set_align(ui_LabelVol, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelVol, "5.42");
|
||||
lv_obj_set_style_text_font(ui_LabelVol, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelVolUnit = lv_label_create(ui_PanelVol);
|
||||
lv_obj_set_width(ui_LabelVolUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelVolUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelVolUnit, 5);
|
||||
lv_obj_set_y(ui_LabelVolUnit, 0);
|
||||
lv_obj_set_align(ui_LabelVolUnit, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelVolUnit, "V");
|
||||
lv_obj_set_style_text_font(ui_LabelVolUnit, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelCur = lv_obj_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_PanelCur, 100);
|
||||
lv_obj_set_height(ui_PanelCur, 35);
|
||||
lv_obj_set_x(ui_PanelCur, 60);
|
||||
lv_obj_set_y(ui_PanelCur, -5);
|
||||
lv_obj_set_align(ui_PanelCur, LV_ALIGN_BOTTOM_MID);
|
||||
lv_obj_remove_flag(ui_PanelCur, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelCur, lv_color_hex(0x42AA49), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_PanelCur, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelCur1 = lv_label_create(ui_PanelCur);
|
||||
lv_obj_set_width(ui_LabelCur1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelCur1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelCur1, -30);
|
||||
lv_obj_set_y(ui_LabelCur1, 0);
|
||||
lv_obj_set_align(ui_LabelCur1, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelCur1, "15.23");
|
||||
lv_obj_set_style_text_font(ui_LabelCur1, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelCurUnit = lv_label_create(ui_PanelCur);
|
||||
lv_obj_set_width(ui_LabelCurUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelCurUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelCurUnit, 5);
|
||||
lv_obj_set_y(ui_LabelCurUnit, 0);
|
||||
lv_obj_set_align(ui_LabelCurUnit, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelCurUnit, "mA");
|
||||
lv_obj_set_style_text_font(ui_LabelCurUnit, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_ButState = lv_button_create(ui_ChartPage);
|
||||
lv_obj_set_width(ui_ButState, 35);
|
||||
lv_obj_set_height(ui_ButState, 32);
|
||||
lv_obj_set_x(ui_ButState, -90);
|
||||
lv_obj_set_y(ui_ButState, -7);
|
||||
lv_obj_set_align(ui_ButState, LV_ALIGN_BOTTOM_MID);
|
||||
lv_obj_add_flag(ui_ButState, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_ButState, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_ButState, lv_color_hex(0xF03737), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_ButState, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_LabelState = lv_label_create(ui_ButState);
|
||||
lv_obj_set_width(ui_LabelState, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelState, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelState, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelState, LV_SYMBOL_PLAY);
|
||||
|
||||
// timer
|
||||
chart_update_timer = lv_timer_create(_chart_update_cb, 100, NULL); // 每100ms更新一次数据
|
||||
|
||||
}
|
||||
|
||||
|
||||
void ui_ChartPage_screen_destroy(void)
|
||||
{
|
||||
if (chart_update_timer) {
|
||||
lv_timer_delete(chart_update_timer);
|
||||
chart_update_timer = NULL;
|
||||
}
|
||||
|
||||
}
|
||||
24
software/Power_Pico/User/GUI/screens/ui_ChartPage.h
Normal file
24
software/Power_Pico/User/GUI/screens/ui_ChartPage.h
Normal file
@@ -0,0 +1,24 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#ifndef UI_CHARTPAGE_H
|
||||
#define UI_CHARTPAGE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// SCREEN: ui_ChartPage
|
||||
extern void ui_ChartPage_screen_init(void);
|
||||
extern void ui_ChartPage_screen_destroy(void);
|
||||
extern lv_obj_t * ui_ChartPage;
|
||||
void ui_chart_page_key_handler(void *key_event);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
637
software/Power_Pico/User/GUI/screens/ui_PPSPage.c
Normal file
637
software/Power_Pico/User/GUI/screens/ui_PPSPage.c
Normal file
@@ -0,0 +1,637 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.4
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "../ui.h"
|
||||
|
||||
lv_obj_t * ui_PPSPage = NULL;
|
||||
static lv_obj_t * ui_PanelPPSVol = NULL;
|
||||
static lv_obj_t * ui_LabelPPSVol = NULL;
|
||||
static lv_obj_t * ui_LabelPPSVolUnit = NULL;
|
||||
static lv_obj_t * ui_PanelPPSCur = NULL;
|
||||
static lv_obj_t * ui_LabelPPSCur = NULL;
|
||||
static lv_obj_t * ui_LabelPPSCurUnit = NULL;
|
||||
static lv_obj_t * ui_Spinner1 = NULL;
|
||||
static lv_obj_t * ui_PanelPPS = NULL;
|
||||
static lv_obj_t * ui_BtnSet1 = NULL;
|
||||
static lv_obj_t * ui_LabelSet1 = NULL;
|
||||
static lv_obj_t * ui_BtnSet2 = NULL;
|
||||
static lv_obj_t * ui_LabelSet2 = NULL;
|
||||
static lv_obj_t * ui_BtnSet3 = NULL;
|
||||
static lv_obj_t * ui_LabelSet3 = NULL;
|
||||
static lv_obj_t * ui_BtnSet4 = NULL;
|
||||
static lv_obj_t * ui_LabelSet4 = NULL;
|
||||
static lv_obj_t * ui_BtnSet5 = NULL;
|
||||
static lv_obj_t * ui_LabelSet5 = NULL;
|
||||
static lv_obj_t * ui_BtnSet6 = NULL;
|
||||
static lv_obj_t * ui_LabelSet6 = NULL;
|
||||
static lv_obj_t * ui_BtnValSet = NULL;
|
||||
static lv_obj_t * ui_LabelValSet = NULL;
|
||||
static lv_obj_t * ui_BtnValDec = NULL;
|
||||
static lv_obj_t * ui_LabelValDec = NULL;
|
||||
static lv_obj_t * ui_BtnValInc = NULL;
|
||||
static lv_obj_t * ui_LabelValInc = NULL;
|
||||
static lv_obj_t * ui_BtnCurSet = NULL;
|
||||
static lv_obj_t * ui_LabelCurSet = NULL;
|
||||
static lv_obj_t * ui_BtnCurDec = NULL;
|
||||
static lv_obj_t * ui_LabelCurDec = NULL;
|
||||
static lv_obj_t * ui_BtnCurInc = NULL;
|
||||
static lv_obj_t * ui_LabelCurInc = NULL;
|
||||
static lv_obj_t * ui_BtnSwitch = NULL;
|
||||
static lv_obj_t * ui_LabelSwitch = NULL;
|
||||
static lv_obj_t * ui_BtnClose = NULL;
|
||||
static lv_obj_t * ui_LabelClose = NULL;
|
||||
|
||||
static lv_timer_t* ui_pps_timer = NULL;
|
||||
|
||||
// variables
|
||||
|
||||
static uint8_t pps_voltage_index = 0; // 6-settings: 0:5V, 1:9V, 2:12V, 3:15V, 4:18V, 5:20V
|
||||
static uint8_t pps_panel_index = 1; // 1 or 2
|
||||
static lv_obj_t * btns[14]; // 存储所有 btn 的指针
|
||||
static int current_btn_index = 0; // 当前选中的 btn 索引
|
||||
|
||||
static float cur_voltage = 5.0;
|
||||
static float cur_current = 1.0;
|
||||
|
||||
///////////////// timer functions ///////////////////
|
||||
|
||||
static void _flush_timer_cb(lv_timer_t * timer) {
|
||||
// 刷新 PPS 电压电流显示
|
||||
char buf[5];
|
||||
float voltage = 0.0;
|
||||
float current = 0.0;
|
||||
ui_get_vol_cur(&voltage, ¤t);
|
||||
sprintf(buf, "%.2f", voltage);
|
||||
lv_label_set_text(ui_LabelPPSVol, buf);
|
||||
sprintf(buf, "%.2f", current/1000000.0); // 转换为 A
|
||||
lv_label_set_text(ui_LabelPPSCur, buf);
|
||||
}
|
||||
|
||||
///////////////// key function ///////////////////
|
||||
|
||||
static void _set_label_val_cur(void) {
|
||||
char buf[8];
|
||||
sprintf(buf, "%.2f V", cur_voltage);
|
||||
lv_label_set_text(ui_LabelValSet, buf);
|
||||
sprintf(buf, "%.2f A", cur_current);
|
||||
lv_label_set_text(ui_LabelCurSet, buf);
|
||||
}
|
||||
|
||||
static void _switch_pps_panel(void)
|
||||
{
|
||||
if(pps_panel_index == 1)
|
||||
{
|
||||
lv_lib_anim_user_animation(ui_PanelPPS, 0, 500, 120, -120, 0, 0, 0, 0, lv_anim_path_ease_in_out, lv_lib_anim_callback_set_x, NULL);
|
||||
pps_panel_index = 2;
|
||||
// 取消当前对象红色边框
|
||||
lv_obj_set_style_border_width(btns[current_btn_index], 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
current_btn_index = 8;
|
||||
// 设置当前对象红色边框
|
||||
lv_obj_set_style_border_width(btns[current_btn_index], 3, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_label_set_text(ui_LabelSwitch, _("press here to Fixed Set"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelSwitch, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelSwitch, &ui_font_zhongyuan20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
_set_label_val_cur();
|
||||
}
|
||||
else
|
||||
{
|
||||
lv_lib_anim_user_animation(ui_PanelPPS, 0, 500, -120, 120, 0, 0, 0, 0, lv_anim_path_ease_in_out, lv_lib_anim_callback_set_x, NULL);
|
||||
pps_panel_index = 1;
|
||||
// 取消当前对象红色边框
|
||||
lv_obj_set_style_border_width(btns[current_btn_index], 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
current_btn_index = 0;
|
||||
// 设置当前对象红色边框
|
||||
lv_obj_set_style_border_width(btns[current_btn_index], 3, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_label_set_text(ui_LabelSwitch, _("press to Step Adjust"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelSwitch, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelSwitch, &ui_font_zhongyuan20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
static void _switch_btn(bool inc)
|
||||
{
|
||||
// 取消当前对象红色边框
|
||||
lv_obj_set_style_border_width(btns[current_btn_index], 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
// 加减
|
||||
if(inc) {
|
||||
current_btn_index++;
|
||||
if (pps_panel_index == 1 && current_btn_index > 7) {
|
||||
current_btn_index = 0;
|
||||
}
|
||||
else if (pps_panel_index == 2 && current_btn_index > 13) {
|
||||
current_btn_index = 8;
|
||||
}
|
||||
} else {
|
||||
if (pps_panel_index == 1) {
|
||||
if (current_btn_index == 0) {
|
||||
current_btn_index = 7;
|
||||
} else {
|
||||
current_btn_index--;
|
||||
}
|
||||
}
|
||||
else if (pps_panel_index == 2) {
|
||||
if (current_btn_index == 8) {
|
||||
current_btn_index = 13;
|
||||
} else {
|
||||
current_btn_index--;
|
||||
}
|
||||
}
|
||||
}
|
||||
// 设置当前对象红色边框
|
||||
lv_obj_set_style_border_width(btns[current_btn_index], 3, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
}
|
||||
|
||||
#include "key.h"
|
||||
void ui_pps_page_key_handler(void* key_event)
|
||||
{
|
||||
if(((key_event_t*)key_event)->id == KEY_ID_B && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
_switch_pps_panel();
|
||||
}
|
||||
else if(((key_event_t*)key_event)->id == KEY_ID_L || ((key_event_t*)key_event)->id == KEY_ID_R)
|
||||
{
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_R) {
|
||||
_switch_btn(1);
|
||||
} else if (((key_event_t*)key_event)->id == KEY_ID_L) {
|
||||
_switch_btn(0);
|
||||
}
|
||||
}
|
||||
else if (((key_event_t*)key_event)->id == KEY_ID_Y)
|
||||
{
|
||||
switch (current_btn_index)
|
||||
{
|
||||
// 6和12 切换 pps panel
|
||||
case 6:
|
||||
_switch_pps_panel();
|
||||
break;
|
||||
case 12:
|
||||
_switch_pps_panel();
|
||||
break;
|
||||
// 7和13 关闭 PPS
|
||||
case 7:
|
||||
ui_send_pps_stop_msg();
|
||||
lv_lib_pm_goto("Set Page", 0);
|
||||
break;
|
||||
case 13:
|
||||
ui_send_pps_stop_msg();
|
||||
lv_lib_pm_goto("Set Page", 0);
|
||||
break;
|
||||
case 0:
|
||||
cur_voltage = 5.0;
|
||||
cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 1:
|
||||
cur_voltage = 9.0;
|
||||
cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 2:
|
||||
cur_voltage = 12.0;
|
||||
cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 3:
|
||||
cur_voltage = 15.0;
|
||||
cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 4:
|
||||
cur_voltage = 18.0;
|
||||
cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 5:
|
||||
cur_voltage = 20.0;
|
||||
cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 8:
|
||||
cur_voltage -= 0.1;
|
||||
if (cur_voltage < 5.0) cur_voltage = 5.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 9:
|
||||
cur_voltage += 0.1;
|
||||
if (cur_voltage > 20.0) cur_voltage = 20.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 10:
|
||||
cur_current -= 0.1;
|
||||
if (cur_current < 1.0) cur_current = 1.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
case 11:
|
||||
cur_current += 0.1;
|
||||
if (cur_current > 3.0) cur_current = 3.0;
|
||||
ui_send_pps_set_msg(cur_voltage, cur_current);
|
||||
break;
|
||||
}
|
||||
_set_label_val_cur();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/////////////////////// para_initialize //////////////////////
|
||||
static void _para_init(void) {
|
||||
current_btn_index = 0;
|
||||
pps_voltage_index = 0;
|
||||
pps_panel_index = 1;
|
||||
cur_voltage = 5.0;
|
||||
cur_current = 1.0;
|
||||
}
|
||||
|
||||
/////////////////////// ui_initialize //////////////////////
|
||||
|
||||
void ui_PPSPage_screen_init(void)
|
||||
{
|
||||
ui_PPSPage = lv_obj_create(NULL);
|
||||
lv_obj_remove_flag(ui_PPSPage, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_PanelPPSVol = lv_obj_create(ui_PPSPage);
|
||||
lv_obj_set_width(ui_PanelPPSVol, 80);
|
||||
lv_obj_set_height(ui_PanelPPSVol, 35);
|
||||
lv_obj_set_x(ui_PanelPPSVol, -30);
|
||||
lv_obj_set_y(ui_PanelPPSVol, 10);
|
||||
lv_obj_set_align(ui_PanelPPSVol, LV_ALIGN_TOP_MID);
|
||||
lv_obj_remove_flag(ui_PanelPPSVol, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelPPSVol, lv_color_hex(0xE36666), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_PanelPPSVol, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelPPSVol = lv_label_create(ui_PanelPPSVol);
|
||||
lv_obj_set_width(ui_LabelPPSVol, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelPPSVol, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelPPSVol, -12);
|
||||
lv_obj_set_y(ui_LabelPPSVol, 0);
|
||||
lv_obj_set_align(ui_LabelPPSVol, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelPPSVol, "5.42");
|
||||
lv_obj_set_style_text_font(ui_LabelPPSVol, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelPPSVolUnit = lv_label_create(ui_PanelPPSVol);
|
||||
lv_obj_set_width(ui_LabelPPSVolUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelPPSVolUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelPPSVolUnit, 5);
|
||||
lv_obj_set_y(ui_LabelPPSVolUnit, 0);
|
||||
lv_obj_set_align(ui_LabelPPSVolUnit, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelPPSVolUnit, "V");
|
||||
lv_obj_set_style_text_font(ui_LabelPPSVolUnit, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelPPSCur = lv_obj_create(ui_PPSPage);
|
||||
lv_obj_set_width(ui_PanelPPSCur, 80);
|
||||
lv_obj_set_height(ui_PanelPPSCur, 35);
|
||||
lv_obj_set_x(ui_PanelPPSCur, 60);
|
||||
lv_obj_set_y(ui_PanelPPSCur, 10);
|
||||
lv_obj_set_align(ui_PanelPPSCur, LV_ALIGN_TOP_MID);
|
||||
lv_obj_remove_flag(ui_PanelPPSCur, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelPPSCur, lv_color_hex(0x42AA49), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_PanelPPSCur, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelPPSCur = lv_label_create(ui_PanelPPSCur);
|
||||
lv_obj_set_width(ui_LabelPPSCur, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelPPSCur, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelPPSCur, -12);
|
||||
lv_obj_set_y(ui_LabelPPSCur, 0);
|
||||
lv_obj_set_align(ui_LabelPPSCur, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelPPSCur, "2.25");
|
||||
lv_obj_set_style_text_font(ui_LabelPPSCur, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelPPSCurUnit = lv_label_create(ui_PanelPPSCur);
|
||||
lv_obj_set_width(ui_LabelPPSCurUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelPPSCurUnit, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelPPSCurUnit, 5);
|
||||
lv_obj_set_y(ui_LabelPPSCurUnit, 0);
|
||||
lv_obj_set_align(ui_LabelPPSCurUnit, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelPPSCurUnit, "A");
|
||||
lv_obj_set_style_text_font(ui_LabelPPSCurUnit, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_Spinner1 = lv_spinner_create(ui_PPSPage);
|
||||
//lv_spinner_set_anim_params(ui_Spinner1, 1000, 90);
|
||||
lv_obj_set_width(ui_Spinner1, 25);
|
||||
lv_obj_set_height(ui_Spinner1, 25);
|
||||
lv_obj_set_x(ui_Spinner1, -90);
|
||||
lv_obj_set_y(ui_Spinner1, 15);
|
||||
lv_obj_set_align(ui_Spinner1, LV_ALIGN_TOP_MID);
|
||||
lv_obj_remove_flag(ui_Spinner1, LV_OBJ_FLAG_CLICKABLE); /// Flags
|
||||
lv_obj_set_style_arc_width(ui_Spinner1, 5, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
lv_obj_set_style_arc_width(ui_Spinner1, 5, LV_PART_INDICATOR | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelPPS = lv_obj_create(ui_PPSPage);
|
||||
lv_obj_set_width(ui_PanelPPS, 480);
|
||||
lv_obj_set_height(ui_PanelPPS, 110);
|
||||
lv_obj_set_x(ui_PanelPPS, 120);
|
||||
lv_obj_set_y(ui_PanelPPS, -10);
|
||||
lv_obj_set_align(ui_PanelPPS, LV_ALIGN_CENTER);
|
||||
lv_obj_remove_flag(ui_PanelPPS, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelPPS, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_PanelPPS, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_color(ui_PanelPPS, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_PanelPPS, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSet1 = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnSet1, 100);
|
||||
lv_obj_set_height(ui_BtnSet1, 30);
|
||||
lv_obj_set_x(ui_BtnSet1, -175);
|
||||
lv_obj_set_y(ui_BtnSet1, -35);
|
||||
lv_obj_set_align(ui_BtnSet1, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSet1, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSet1, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnSet1, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSet1, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSet1, 3, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelSet1 = lv_label_create(ui_BtnSet1);
|
||||
lv_obj_set_width(ui_LabelSet1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSet1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSet1, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSet1, "5V 1A");
|
||||
lv_obj_set_style_text_font(ui_LabelSet1, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSet2 = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnSet2, 100);
|
||||
lv_obj_set_height(ui_BtnSet2, 30);
|
||||
lv_obj_set_x(ui_BtnSet2, -65);
|
||||
lv_obj_set_y(ui_BtnSet2, -35);
|
||||
lv_obj_set_align(ui_BtnSet2, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSet2, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSet2, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnSet2, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSet2, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSet2, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelSet2 = lv_label_create(ui_BtnSet2);
|
||||
lv_obj_set_width(ui_LabelSet2, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSet2, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSet2, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSet2, "9V 1A");
|
||||
lv_obj_set_style_text_font(ui_LabelSet2, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSet3 = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnSet3, 100);
|
||||
lv_obj_set_height(ui_BtnSet3, 30);
|
||||
lv_obj_set_x(ui_BtnSet3, -175);
|
||||
lv_obj_set_y(ui_BtnSet3, 0);
|
||||
lv_obj_set_align(ui_BtnSet3, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSet3, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSet3, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnSet3, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSet3, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSet3, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelSet3 = lv_label_create(ui_BtnSet3);
|
||||
lv_obj_set_width(ui_LabelSet3, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSet3, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSet3, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSet3, "12V 1A");
|
||||
lv_obj_set_style_text_font(ui_LabelSet3, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSet4 = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnSet4, 100);
|
||||
lv_obj_set_height(ui_BtnSet4, 30);
|
||||
lv_obj_set_x(ui_BtnSet4, -65);
|
||||
lv_obj_set_y(ui_BtnSet4, 0);
|
||||
lv_obj_set_align(ui_BtnSet4, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSet4, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSet4, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnSet4, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSet4, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSet4, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelSet4 = lv_label_create(ui_BtnSet4);
|
||||
lv_obj_set_width(ui_LabelSet4, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSet4, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSet4, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSet4, "15V 1A");
|
||||
lv_obj_set_style_text_font(ui_LabelSet4, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSet5 = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnSet5, 100);
|
||||
lv_obj_set_height(ui_BtnSet5, 30);
|
||||
lv_obj_set_x(ui_BtnSet5, -175);
|
||||
lv_obj_set_y(ui_BtnSet5, 35);
|
||||
lv_obj_set_align(ui_BtnSet5, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSet5, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSet5, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnSet5, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSet5, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSet5, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelSet5 = lv_label_create(ui_BtnSet5);
|
||||
lv_obj_set_width(ui_LabelSet5, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSet5, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSet5, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSet5, "18V 1A");
|
||||
lv_obj_set_style_text_font(ui_LabelSet5, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSet6 = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnSet6, 100);
|
||||
lv_obj_set_height(ui_BtnSet6, 30);
|
||||
lv_obj_set_x(ui_BtnSet6, -65);
|
||||
lv_obj_set_y(ui_BtnSet6, 35);
|
||||
lv_obj_set_align(ui_BtnSet6, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSet6, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSet6, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnSet6, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSet6, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSet6, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelSet6 = lv_label_create(ui_BtnSet6);
|
||||
lv_obj_set_width(ui_LabelSet6, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSet6, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSet6, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSet6, "20V 1A");
|
||||
lv_obj_set_style_text_font(ui_LabelSet6, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnValSet = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnValSet, 100);
|
||||
lv_obj_set_height(ui_BtnValSet, 40);
|
||||
lv_obj_set_x(ui_BtnValSet, 120);
|
||||
lv_obj_set_y(ui_BtnValSet, -25);
|
||||
lv_obj_set_align(ui_BtnValSet, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnValSet, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnValSet, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_LabelValSet = lv_label_create(ui_BtnValSet);
|
||||
lv_obj_set_width(ui_LabelValSet, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelValSet, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelValSet, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelValSet, "5.00 V");
|
||||
lv_obj_set_style_text_font(ui_LabelValSet, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnValDec = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnValDec, 30);
|
||||
lv_obj_set_height(ui_BtnValDec, 30);
|
||||
lv_obj_set_x(ui_BtnValDec, 45);
|
||||
lv_obj_set_y(ui_BtnValDec, -25);
|
||||
lv_obj_set_align(ui_BtnValDec, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnValDec, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnValDec, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnValDec, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnValDec, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnValDec, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelValDec = lv_label_create(ui_BtnValDec);
|
||||
lv_obj_set_width(ui_LabelValDec, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelValDec, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelValDec, 0);
|
||||
lv_obj_set_y(ui_LabelValDec, -7);
|
||||
lv_obj_set_align(ui_LabelValDec, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelValDec, "_");
|
||||
lv_obj_set_style_text_font(ui_LabelValDec, &lv_font_montserrat_20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnValInc = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnValInc, 30);
|
||||
lv_obj_set_height(ui_BtnValInc, 30);
|
||||
lv_obj_set_x(ui_BtnValInc, 195);
|
||||
lv_obj_set_y(ui_BtnValInc, -25);
|
||||
lv_obj_set_align(ui_BtnValInc, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnValInc, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnValInc, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnValInc, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnValInc, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnValInc, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelValInc = lv_label_create(ui_BtnValInc);
|
||||
lv_obj_set_width(ui_LabelValInc, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelValInc, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelValInc, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelValInc, "+");
|
||||
lv_obj_set_style_text_font(ui_LabelValInc, &lv_font_montserrat_22, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnCurSet = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnCurSet, 100);
|
||||
lv_obj_set_height(ui_BtnCurSet, 40);
|
||||
lv_obj_set_x(ui_BtnCurSet, 120);
|
||||
lv_obj_set_y(ui_BtnCurSet, 25);
|
||||
lv_obj_set_align(ui_BtnCurSet, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnCurSet, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnCurSet, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_LabelCurSet = lv_label_create(ui_BtnCurSet);
|
||||
lv_obj_set_width(ui_LabelCurSet, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelCurSet, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelCurSet, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelCurSet, "1.00 A");
|
||||
lv_obj_set_style_text_font(ui_LabelCurSet, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnCurDec = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnCurDec, 30);
|
||||
lv_obj_set_height(ui_BtnCurDec, 30);
|
||||
lv_obj_set_x(ui_BtnCurDec, 45);
|
||||
lv_obj_set_y(ui_BtnCurDec, 25);
|
||||
lv_obj_set_align(ui_BtnCurDec, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnCurDec, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnCurDec, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnCurDec, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnCurDec, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnCurDec, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelCurDec = lv_label_create(ui_BtnCurDec);
|
||||
lv_obj_set_width(ui_LabelCurDec, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelCurDec, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelCurDec, 0);
|
||||
lv_obj_set_y(ui_LabelCurDec, -7);
|
||||
lv_obj_set_align(ui_LabelCurDec, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelCurDec, "_");
|
||||
lv_obj_set_style_text_font(ui_LabelCurDec, &lv_font_montserrat_20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnCurInc = lv_button_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_BtnCurInc, 30);
|
||||
lv_obj_set_height(ui_BtnCurInc, 30);
|
||||
lv_obj_set_x(ui_BtnCurInc, 195);
|
||||
lv_obj_set_y(ui_BtnCurInc, 25);
|
||||
lv_obj_set_align(ui_BtnCurInc, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnCurInc, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnCurInc, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_border_color(ui_BtnCurInc, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnCurInc, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnCurInc, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelCurInc = lv_label_create(ui_BtnCurInc);
|
||||
lv_obj_set_width(ui_LabelCurInc, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelCurInc, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelCurInc, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelCurInc, "+");
|
||||
lv_obj_set_style_text_font(ui_LabelCurInc, &lv_font_montserrat_22, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnSwitch = lv_button_create(ui_PPSPage);
|
||||
lv_obj_set_width(ui_BtnSwitch, 210);
|
||||
lv_obj_set_height(ui_BtnSwitch, 30);
|
||||
lv_obj_set_x(ui_BtnSwitch, 0);
|
||||
lv_obj_set_y(ui_BtnSwitch, 60);
|
||||
lv_obj_set_align(ui_BtnSwitch, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnSwitch, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnSwitch, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_BtnSwitch, lv_color_hex(0x725C08), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_BtnSwitch, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_color(ui_BtnSwitch, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnSwitch, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnSwitch, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
|
||||
ui_LabelSwitch = lv_label_create(ui_BtnSwitch);
|
||||
lv_obj_set_width(ui_LabelSwitch, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelSwitch, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelSwitch, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelSwitch, _("press to Step Adjust"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelSwitch, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelSwitch, &ui_font_zhongyuan20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_BtnClose = lv_button_create(ui_PPSPage);
|
||||
lv_obj_set_width(ui_BtnClose, 210);
|
||||
lv_obj_set_height(ui_BtnClose, 30);
|
||||
lv_obj_set_x(ui_BtnClose, 0);
|
||||
lv_obj_set_y(ui_BtnClose, 95);
|
||||
lv_obj_set_align(ui_BtnClose, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_BtnClose, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_BtnClose, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_BtnClose, lv_color_hex(0x725C08), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_BtnClose, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_color(ui_BtnClose, lv_color_hex(0xF40F0F), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_BtnClose, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_BtnClose, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelClose = lv_label_create(ui_BtnClose);
|
||||
lv_obj_set_width(ui_LabelClose, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelClose, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelClose, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_LabelClose, _("press here to close PD"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelClose, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelClose, &ui_font_zhongyuan20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_pps_timer = lv_timer_create(_flush_timer_cb, 500, NULL);
|
||||
|
||||
// store panels in array
|
||||
btns[0] = ui_BtnSet1;
|
||||
btns[1] = ui_BtnSet2;
|
||||
btns[2] = ui_BtnSet3;
|
||||
btns[3] = ui_BtnSet4;
|
||||
btns[4] = ui_BtnSet5;
|
||||
btns[5] = ui_BtnSet6;
|
||||
btns[6] = ui_BtnSwitch;
|
||||
btns[7] = ui_BtnClose;
|
||||
btns[8] = ui_BtnValDec;
|
||||
btns[9] = ui_BtnValInc;
|
||||
btns[10] = ui_BtnCurDec;
|
||||
btns[11] = ui_BtnCurInc;
|
||||
btns[12] = ui_BtnSwitch;
|
||||
btns[13] = ui_BtnClose;
|
||||
//
|
||||
_para_init();
|
||||
}
|
||||
|
||||
void ui_PPSPage_screen_destroy(void)
|
||||
{
|
||||
if(ui_pps_timer) lv_timer_delete(ui_pps_timer);
|
||||
}
|
||||
27
software/Power_Pico/User/GUI/screens/ui_PPSPage.h
Normal file
27
software/Power_Pico/User/GUI/screens/ui_PPSPage.h
Normal file
@@ -0,0 +1,27 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.4
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#ifndef UI_PPSPAGE_H
|
||||
#define UI_PPSPAGE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// SCREEN: ui_PPSPage
|
||||
void ui_PPSPage_screen_init(void);
|
||||
void ui_PPSPage_screen_destroy(void);
|
||||
extern lv_obj_t * ui_PPSPage;
|
||||
|
||||
void ui_pps_page_key_handler(void* key_event);
|
||||
|
||||
// CUSTOM VARIABLES
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
531
software/Power_Pico/User/GUI/screens/ui_SetPage.c
Normal file
531
software/Power_Pico/User/GUI/screens/ui_SetPage.c
Normal file
@@ -0,0 +1,531 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "../ui.h"
|
||||
#include "./ui_PPSPage.h"
|
||||
|
||||
lv_obj_t * ui_SetPage = NULL;
|
||||
// backlight
|
||||
static lv_obj_t * ui_PanelBL = NULL;
|
||||
static lv_obj_t * ui_SliderBL = NULL;
|
||||
static lv_obj_t * ui_LabelBL = NULL;
|
||||
// key sound
|
||||
static lv_obj_t * ui_PanelKS = NULL;
|
||||
static lv_obj_t * ui_SwitchKS = NULL;
|
||||
static lv_obj_t * ui_LabelKS = NULL;
|
||||
// language
|
||||
static lv_obj_t * ui_PanelLang = NULL;
|
||||
static lv_obj_t * ui_SwitchLang = NULL;
|
||||
static lv_obj_t * ui_LabelLang = NULL;
|
||||
// chose rotation
|
||||
static lv_obj_t * ui_PanelRotate = NULL;
|
||||
static lv_obj_t * ui_LabelRotation = NULL;
|
||||
static lv_obj_t * ui_LabelRotNum = NULL;
|
||||
// enable PPS, goto PPS page
|
||||
static lv_obj_t * ui_PanelPPS = NULL;
|
||||
static lv_obj_t * ui_SwitchPPS = NULL;
|
||||
static lv_obj_t * ui_LabelPPS = NULL;
|
||||
// about
|
||||
static lv_obj_t * ui_PanelAbout = NULL;
|
||||
static lv_obj_t * ui_LabelAbout = NULL;
|
||||
|
||||
static lv_timer_t * _setting_timer = NULL;
|
||||
|
||||
static lv_obj_t * msgbox = NULL; // msgbox 对象
|
||||
static lv_obj_t * spinner = NULL; // spinner 对象
|
||||
static bool waiting_for_signal = false; // 标志位,表示是否在等待信号
|
||||
|
||||
static lv_obj_t * panels[6]; // 存储所有 panel 的指针
|
||||
static int current_panel_index = 0; // 当前选中的 panel 索引
|
||||
|
||||
static void show_wait_msgbox(void);
|
||||
static void hide_wait_msgbox(void);
|
||||
static void show_fail_msgbox(void);
|
||||
static void show_restart_msgbox(void);
|
||||
|
||||
// event funtions
|
||||
|
||||
/////////////////////// Timer //////////////////////
|
||||
static void _setting_timer_cb(lv_timer_t * timer) {
|
||||
int8_t Msg = 0;
|
||||
Msg = MsgQueueGet_PPS_ready();
|
||||
if(Msg == 1) {
|
||||
// 隐藏等待框
|
||||
hide_wait_msgbox();
|
||||
lv_lib_pm_goto("PPS Page", 0);
|
||||
} else if(Msg == -1) {
|
||||
// 隐藏等待框
|
||||
hide_wait_msgbox();
|
||||
// 显示失败框
|
||||
show_fail_msgbox();
|
||||
ui_send_pps_stop_msg();
|
||||
}
|
||||
}
|
||||
|
||||
///////////////// key function ///////////////////
|
||||
|
||||
#include "key.h"
|
||||
void ui_set_page_key_handler(void *key_event)
|
||||
{
|
||||
if(waiting_for_signal) return;
|
||||
int panel_count = sizeof(panels) / sizeof(panels[0]);
|
||||
// key boot
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_B && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
lv_lib_pm_goto_first();
|
||||
}
|
||||
// key left
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_L && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
lv_obj_clear_state(panels[current_panel_index], LV_STATE_CHECKED);
|
||||
current_panel_index = (current_panel_index - 1 + panel_count) % panel_count;
|
||||
lv_obj_add_state(panels[current_panel_index], LV_STATE_CHECKED);
|
||||
lv_obj_scroll_to_view(panels[current_panel_index], LV_ANIM_ON);
|
||||
}
|
||||
// key right
|
||||
else if (((key_event_t*)key_event)->id == KEY_ID_R && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
lv_obj_clear_state(panels[current_panel_index], LV_STATE_CHECKED);
|
||||
current_panel_index = (current_panel_index + 1) % panel_count;
|
||||
lv_obj_add_state(panels[current_panel_index], LV_STATE_CHECKED);
|
||||
lv_obj_scroll_to_view(panels[current_panel_index], LV_ANIM_ON);
|
||||
}
|
||||
// key yes or key neg
|
||||
else if(((key_event_t*)key_event)->id == KEY_ID_Y || ((key_event_t*)key_event)->id == KEY_ID_N)
|
||||
{
|
||||
switch(current_panel_index)
|
||||
{
|
||||
// Screen Brightness
|
||||
case 0:
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_Y &&
|
||||
(((key_event_t*)key_event)->type == KEY_EVT_CLICK || ((key_event_t*)key_event)->type == KEY_EVT_REPEAT)) { // key yes
|
||||
int16_t slider_value = lv_slider_get_value(ui_SliderBL);
|
||||
slider_value += 10;
|
||||
if(slider_value > 100) slider_value = 100;
|
||||
lv_slider_set_value(ui_SliderBL, slider_value, LV_ANIM_ON);
|
||||
ui_set_back_light_level(slider_value);
|
||||
} else if (((key_event_t*)key_event)->id == KEY_ID_N &&
|
||||
(((key_event_t*)key_event)->type == KEY_EVT_CLICK || ((key_event_t*)key_event)->type == KEY_EVT_REPEAT)) { // key neg
|
||||
int16_t slider_value = lv_slider_get_value(ui_SliderBL);
|
||||
slider_value -= 10;
|
||||
if(slider_value < 10) slider_value = 10;
|
||||
lv_slider_set_value(ui_SliderBL, slider_value, LV_ANIM_ON);
|
||||
ui_set_back_light_level(slider_value);
|
||||
}
|
||||
break;
|
||||
// key sound
|
||||
case 1:
|
||||
// key yes
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_Y && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
lv_obj_add_state(ui_SwitchKS, LV_STATE_CHECKED);
|
||||
ui_set_key_sound_enable(1);
|
||||
}
|
||||
// key neg
|
||||
else if (((key_event_t*)key_event)->id == KEY_ID_N && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
lv_obj_clear_state(ui_SwitchKS, LV_STATE_CHECKED);
|
||||
ui_set_key_sound_enable(0);
|
||||
}
|
||||
break;
|
||||
|
||||
// language
|
||||
case 2:
|
||||
// key yes
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_Y && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
show_restart_msgbox();
|
||||
lv_obj_add_state(ui_SwitchLang, LV_STATE_CHECKED);
|
||||
ui_set_language_select(1);
|
||||
lv_i18n_set_locale("zh-cn");
|
||||
}
|
||||
// key neg
|
||||
else if (((key_event_t*)key_event)->id == KEY_ID_N && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
show_restart_msgbox();
|
||||
lv_obj_clear_state(ui_SwitchLang, LV_STATE_CHECKED);
|
||||
ui_set_language_select(0);
|
||||
lv_i18n_set_locale("en");
|
||||
}
|
||||
break;
|
||||
|
||||
// chose rotation
|
||||
case 3:
|
||||
uint16_t rotation = ui_get_display_rotation();
|
||||
// key yes
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_Y && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
rotation = (rotation + 360 + 90) % 360;
|
||||
}
|
||||
// key neg
|
||||
else if (((key_event_t*)key_event)->id == KEY_ID_N && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
rotation = (rotation + 360 - 90) % 360;
|
||||
}
|
||||
if (rotation == 0) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 0 >");
|
||||
} else if (rotation == 90) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 90 >");
|
||||
} else if (rotation == 180) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 180 >");
|
||||
} else if (rotation == 270) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 270 >");
|
||||
}
|
||||
ui_set_display_rotation(rotation);
|
||||
ui_full_screen_refresh(ui_SetPage);
|
||||
break;
|
||||
|
||||
// PPS page
|
||||
case 4:
|
||||
// 发送开启PD诱骗的信号
|
||||
if (((key_event_t*)key_event)->id == KEY_ID_Y && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
// 发送pps开始信号到PD UFP Task
|
||||
ui_send_pps_start_msg();
|
||||
// 弹出 msgbox 等待PD完成,并锁住按键操作
|
||||
show_wait_msgbox();
|
||||
// lv_lib_pm_goto("PPS Page", NULL);
|
||||
}
|
||||
break;
|
||||
// about
|
||||
case 5:
|
||||
// do nothing
|
||||
break;
|
||||
}
|
||||
// save settings to eeprom
|
||||
ui_system_settings_save();
|
||||
}
|
||||
}
|
||||
|
||||
/////////////////////// para_initialize //////////////////////
|
||||
|
||||
static void on_setpage_loaded(lv_event_t * e) {
|
||||
// 当 SetPage 页面加载完成后,滚动到当前选中的 panel
|
||||
lv_obj_scroll_to_view(panels[current_panel_index], LV_ANIM_ON);
|
||||
}
|
||||
|
||||
static void _setting_init(void) {
|
||||
|
||||
// backlight
|
||||
lv_slider_set_value(ui_SliderBL, ui_get_back_light_level(), LV_ANIM_OFF);
|
||||
|
||||
// key sound
|
||||
if(ui_get_key_sound_enable())
|
||||
lv_obj_add_state(ui_SwitchKS, LV_STATE_CHECKED);
|
||||
else
|
||||
lv_obj_clear_state(ui_SwitchKS, LV_STATE_CHECKED);
|
||||
|
||||
// language
|
||||
if(ui_get_language_select() == 1)
|
||||
lv_obj_add_state(ui_SwitchLang, LV_STATE_CHECKED);
|
||||
else
|
||||
lv_obj_clear_state(ui_SwitchLang, LV_STATE_CHECKED);
|
||||
|
||||
// lcd rotation
|
||||
uint16_t rotation = ui_get_display_rotation();
|
||||
if (rotation == 0) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 0 >");
|
||||
} else if (rotation == 90) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 90 >");
|
||||
} else if (rotation == 180) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 180 >");
|
||||
} else if (rotation == 270) {
|
||||
lv_label_set_text(ui_LabelRotNum, "< 270 >");
|
||||
}
|
||||
}
|
||||
|
||||
/////////////////////// ui_components //////////////////////
|
||||
|
||||
// 显示 PD msgbox
|
||||
static void show_wait_msgbox(void) {
|
||||
|
||||
// 获取当前视角y pos
|
||||
int32_t view_y = lv_obj_get_scroll_top(ui_SetPage);
|
||||
// 创建 msgbox
|
||||
msgbox = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_size(msgbox, 200, 160);
|
||||
lv_obj_center(msgbox);
|
||||
lv_obj_set_pos(msgbox, 0, view_y);
|
||||
lv_obj_set_style_bg_color(msgbox, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(msgbox, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
// 添加 spinner
|
||||
spinner = lv_spinner_create(msgbox);
|
||||
lv_obj_set_size(spinner, 60, 60);
|
||||
lv_obj_center(spinner);
|
||||
|
||||
// 添加文本
|
||||
lv_obj_t * label = lv_label_create(msgbox);
|
||||
lv_label_set_text(label, "Waiting for PD...");
|
||||
lv_obj_set_align(label, LV_ALIGN_BOTTOM_MID);
|
||||
lv_obj_set_style_text_font(label, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
// 设置标志位
|
||||
waiting_for_signal = true;
|
||||
}
|
||||
|
||||
// 隐藏 PD msgbox
|
||||
static void hide_wait_msgbox(void) {
|
||||
if (msgbox) {
|
||||
lv_obj_del(msgbox);
|
||||
msgbox = NULL;
|
||||
spinner = NULL;
|
||||
}
|
||||
waiting_for_signal = false;
|
||||
}
|
||||
|
||||
// 定时器回调函数,用于关闭失败弹窗
|
||||
static void _fail_msgbox_timer_cb(lv_timer_t * t) {
|
||||
lv_obj_t * mbox = (lv_obj_t *)lv_timer_get_user_data(t);
|
||||
if (mbox) {
|
||||
lv_obj_del(mbox); // 删除 msgbox
|
||||
}
|
||||
lv_timer_del(t); // 删除定时器
|
||||
}
|
||||
|
||||
// 显示重启提示弹窗
|
||||
static void show_restart_msgbox(void) {
|
||||
// 获取当前视角y pos
|
||||
int32_t view_y = lv_obj_get_scroll_top(ui_SetPage);
|
||||
// 创建 msgbox
|
||||
lv_obj_t * restart_msgbox = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_size(restart_msgbox, 220, 100);
|
||||
lv_obj_center(restart_msgbox);
|
||||
lv_obj_set_pos(restart_msgbox, 0, view_y);
|
||||
lv_obj_set_style_bg_color(restart_msgbox, lv_color_hex(0x958030), LV_PART_MAIN | LV_STATE_DEFAULT); // 黄色背景
|
||||
lv_obj_set_style_bg_opa(restart_msgbox, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
// 添加文本
|
||||
lv_obj_t * label = lv_label_create(restart_msgbox);
|
||||
lv_label_set_text(label, _("Please reboot to apply\nall changes!"));
|
||||
lv_obj_center(label);
|
||||
if(ui_get_language_select() == 0)
|
||||
{
|
||||
// 如果是English
|
||||
lv_obj_set_style_text_font(label, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
}
|
||||
else
|
||||
{
|
||||
// 如果是中文
|
||||
lv_obj_set_style_text_font(label, &ui_font_zhongyuan20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
}
|
||||
lv_obj_set_style_text_align(label, LV_TEXT_ALIGN_CENTER, 0);
|
||||
|
||||
// 设置定时器,2 秒后关闭弹窗
|
||||
lv_timer_t * timer = lv_timer_create(_fail_msgbox_timer_cb, 2000, restart_msgbox); // 重用关闭回调
|
||||
lv_timer_set_repeat_count(timer, 1); // 只执行一次
|
||||
}
|
||||
|
||||
// 显示PPS失败提示弹窗
|
||||
static void show_fail_msgbox(void) {
|
||||
// 获取当前视角y pos
|
||||
int32_t view_y = lv_obj_get_scroll_top(ui_SetPage);
|
||||
// 创建 msgbox
|
||||
msgbox = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_size(msgbox, 200, 100);
|
||||
lv_obj_center(msgbox);
|
||||
lv_obj_set_pos(msgbox, 0, view_y);
|
||||
lv_obj_set_style_bg_color(msgbox, lv_color_hex(0xFF0000), LV_PART_MAIN | LV_STATE_DEFAULT); // 红色背景
|
||||
lv_obj_set_style_bg_opa(msgbox, 200, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
// 添加文本
|
||||
lv_obj_t * label = lv_label_create(msgbox);
|
||||
lv_label_set_text(label, "PD Setting Failed!");
|
||||
lv_obj_center(label);
|
||||
lv_obj_set_style_text_font(label, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
// 设置定时器,2 秒后关闭弹窗
|
||||
lv_timer_t * timer = lv_timer_create(_fail_msgbox_timer_cb, 2000, msgbox); // 传递 msgbox 对象
|
||||
lv_timer_set_repeat_count(timer, 1); // 只执行一次
|
||||
}
|
||||
|
||||
/////////////////////// ui_initialize //////////////////////
|
||||
|
||||
void ui_SetPage_screen_init(void)
|
||||
{
|
||||
ui_SetPage = lv_obj_create(NULL);
|
||||
|
||||
ui_PanelBL = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_width(ui_PanelBL, 234);
|
||||
lv_obj_set_height(ui_PanelBL, 65);
|
||||
lv_obj_set_x(ui_PanelBL, 0);
|
||||
lv_obj_set_y(ui_PanelBL, 5);
|
||||
lv_obj_set_align(ui_PanelBL, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_PanelBL, LV_OBJ_FLAG_CHECKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_PanelBL, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelBL, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_PanelBL, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_SliderBL = lv_slider_create(ui_PanelBL);
|
||||
lv_slider_set_value(ui_SliderBL, 50, LV_ANIM_OFF);
|
||||
if(lv_slider_get_mode(ui_SliderBL) == LV_SLIDER_MODE_RANGE) lv_slider_set_left_value(ui_SliderBL, 0, LV_ANIM_OFF);
|
||||
lv_obj_set_width(ui_SliderBL, 200);
|
||||
lv_obj_set_height(ui_SliderBL, 10);
|
||||
lv_obj_set_align(ui_SliderBL, LV_ALIGN_BOTTOM_MID);
|
||||
|
||||
//Compensating for LVGL9.1 draw crash with bar/slider max value when top-padding is nonzero and right-padding is 0
|
||||
if(lv_obj_get_style_pad_top(ui_SliderBL, LV_PART_MAIN) > 0) lv_obj_set_style_pad_right(ui_SliderBL, lv_obj_get_style_pad_right(ui_SliderBL, LV_PART_MAIN) + 1, LV_PART_MAIN);
|
||||
ui_LabelBL = lv_label_create(ui_PanelBL);
|
||||
lv_obj_set_width(ui_LabelBL, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelBL, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelBL, 0);
|
||||
lv_obj_set_y(ui_LabelBL, -5);
|
||||
lv_label_set_text(ui_LabelBL, _("Screen Brightness :"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelBL, &lv_font_montserrat_16, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelBL, &ui_font_zhongyuan18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
|
||||
ui_PanelKS = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_width(ui_PanelKS, 234);
|
||||
lv_obj_set_height(ui_PanelKS, 45);
|
||||
lv_obj_set_x(ui_PanelKS, 0);
|
||||
lv_obj_set_y(ui_PanelKS, 75);
|
||||
lv_obj_set_align(ui_PanelKS, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_PanelKS, LV_OBJ_FLAG_CHECKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_PanelKS, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelKS, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_PanelKS, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_SwitchKS = lv_switch_create(ui_PanelKS);
|
||||
lv_obj_set_width(ui_SwitchKS, 50);
|
||||
lv_obj_set_height(ui_SwitchKS, 25);
|
||||
lv_obj_set_align(ui_SwitchKS, LV_ALIGN_RIGHT_MID);
|
||||
lv_obj_add_state(ui_SwitchKS, LV_STATE_CHECKED); /// States
|
||||
|
||||
ui_LabelKS = lv_label_create(ui_PanelKS);
|
||||
lv_obj_set_width(ui_LabelKS, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelKS, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelKS, LV_ALIGN_LEFT_MID);
|
||||
lv_label_set_text(ui_LabelKS, _("Enable key sound"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelKS, &lv_font_montserrat_16, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelKS, &ui_font_zhongyuan18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelLang = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_width(ui_PanelLang, 234);
|
||||
lv_obj_set_height(ui_PanelLang, 45);
|
||||
lv_obj_set_x(ui_PanelLang, 0);
|
||||
lv_obj_set_y(ui_PanelLang, 125);
|
||||
lv_obj_set_align(ui_PanelLang, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_PanelLang, LV_OBJ_FLAG_CHECKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_PanelLang, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelLang, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_PanelLang, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_SwitchLang = lv_switch_create(ui_PanelLang);
|
||||
lv_obj_set_width(ui_SwitchLang, 50);
|
||||
lv_obj_set_height(ui_SwitchLang, 25);
|
||||
lv_obj_set_align(ui_SwitchLang, LV_ALIGN_RIGHT_MID);
|
||||
|
||||
ui_LabelLang = lv_label_create(ui_PanelLang);
|
||||
lv_obj_set_width(ui_LabelLang, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelLang, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelLang, LV_ALIGN_LEFT_MID);
|
||||
lv_label_set_text(ui_LabelLang, _("Enable Chinese"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelLang, &lv_font_montserrat_16, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelLang, &ui_font_zhongyuan18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelRotate = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_width(ui_PanelRotate, 234);
|
||||
lv_obj_set_height(ui_PanelRotate, 45);
|
||||
lv_obj_set_x(ui_PanelRotate, 0);
|
||||
lv_obj_set_y(ui_PanelRotate, 175);
|
||||
lv_obj_set_align(ui_PanelRotate, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_PanelRotate, LV_OBJ_FLAG_CHECKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_PanelRotate, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelRotate, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_PanelRotate, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_LabelRotation = lv_label_create(ui_PanelRotate);
|
||||
lv_obj_set_width(ui_LabelRotation, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelRotation, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelRotation, LV_ALIGN_LEFT_MID);
|
||||
lv_label_set_text(ui_LabelRotation, _("Chose Rotation"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelRotation, &lv_font_montserrat_16, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelRotation, &ui_font_zhongyuan18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelRotNum = lv_label_create(ui_PanelRotate);
|
||||
lv_obj_set_width(ui_LabelRotNum, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelRotNum, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelRotNum, LV_ALIGN_RIGHT_MID);
|
||||
lv_label_set_text(ui_LabelRotNum, "< 180 >");
|
||||
lv_obj_set_style_text_font(ui_LabelRotNum, &lv_font_montserrat_16, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelPPS = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_width(ui_PanelPPS, 234);
|
||||
lv_obj_set_height(ui_PanelPPS, 45);
|
||||
lv_obj_set_x(ui_PanelPPS, 0);
|
||||
lv_obj_set_y(ui_PanelPPS, 225);
|
||||
lv_obj_set_align(ui_PanelPPS, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_PanelPPS, LV_OBJ_FLAG_CHECKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_PanelPPS, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelPPS, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_PanelPPS, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_SwitchPPS = lv_switch_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_SwitchPPS, 50);
|
||||
lv_obj_set_height(ui_SwitchPPS, 25);
|
||||
lv_obj_set_align(ui_SwitchPPS, LV_ALIGN_RIGHT_MID);
|
||||
|
||||
ui_LabelPPS = lv_label_create(ui_PanelPPS);
|
||||
lv_obj_set_width(ui_LabelPPS, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelPPS, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_align(ui_LabelPPS, LV_ALIGN_LEFT_MID);
|
||||
lv_label_set_text(ui_LabelPPS, _("PD Sink"));
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_obj_set_style_text_font(ui_LabelPPS, &lv_font_montserrat_18, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
else
|
||||
lv_obj_set_style_text_font(ui_LabelPPS, &ui_font_zhongyuan20, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_PanelAbout = lv_obj_create(ui_SetPage);
|
||||
lv_obj_set_width(ui_PanelAbout, 234);
|
||||
lv_obj_set_height(ui_PanelAbout, 100);
|
||||
lv_obj_set_x(ui_PanelAbout, 0);
|
||||
lv_obj_set_y(ui_PanelAbout, 275);
|
||||
lv_obj_set_align(ui_PanelAbout, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_PanelAbout, LV_OBJ_FLAG_CHECKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_PanelAbout, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_PanelAbout, lv_color_hex(0x606060), LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
lv_obj_set_style_bg_opa(ui_PanelAbout, 255, LV_PART_MAIN | LV_STATE_CHECKED);
|
||||
|
||||
ui_LabelAbout = lv_label_create(ui_PanelAbout);
|
||||
lv_obj_set_width(ui_LabelAbout, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelAbout, LV_SIZE_CONTENT); /// 1
|
||||
lv_label_set_text(ui_LabelAbout, "About\nPower-Pico\nThe uA current meter\nV 1.0.5");
|
||||
lv_obj_set_style_text_font(ui_LabelAbout, &lv_font_montserrat_16, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
// init setting values
|
||||
_setting_init();
|
||||
|
||||
// store panels in array
|
||||
panels[0] = ui_PanelBL;
|
||||
panels[1] = ui_PanelKS;
|
||||
panels[2] = ui_PanelLang;
|
||||
panels[3] = ui_PanelRotate;
|
||||
panels[4] = ui_PanelPPS;
|
||||
panels[5] = ui_PanelAbout;
|
||||
lv_obj_add_state(panels[current_panel_index], LV_STATE_CHECKED);
|
||||
|
||||
// timer
|
||||
_setting_timer = lv_timer_create(_setting_timer_cb, 500, NULL);
|
||||
|
||||
//
|
||||
lv_obj_add_event_cb(ui_SetPage, on_setpage_loaded, LV_EVENT_SCREEN_LOADED, NULL);
|
||||
|
||||
}
|
||||
|
||||
void ui_SetPage_screen_destroy(void)
|
||||
{
|
||||
if(_setting_timer) {
|
||||
lv_timer_delete(_setting_timer);
|
||||
}
|
||||
}
|
||||
26
software/Power_Pico/User/GUI/screens/ui_SetPage.h
Normal file
26
software/Power_Pico/User/GUI/screens/ui_SetPage.h
Normal file
@@ -0,0 +1,26 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#ifndef UI_SETPAGE_H
|
||||
#define UI_SETPAGE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// SCREEN: ui_SetPage
|
||||
extern void ui_SetPage_screen_init(void);
|
||||
extern void ui_SetPage_screen_destroy(void);
|
||||
extern lv_obj_t * ui_SetPage;
|
||||
void ui_set_page_key_handler(void *key_event);
|
||||
|
||||
// CUSTOM VARIABLES
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
137
software/Power_Pico/User/GUI/screens/ui_StartPage.c
Normal file
137
software/Power_Pico/User/GUI/screens/ui_StartPage.c
Normal file
@@ -0,0 +1,137 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "../ui.h"
|
||||
|
||||
lv_obj_t * ui_StartPage = NULL;
|
||||
static lv_obj_t * ui_Panel1 = NULL;
|
||||
static lv_obj_t * ui_Image2 = NULL;
|
||||
static lv_obj_t * ui_Label1 = NULL;
|
||||
static lv_obj_t * ui_Panel2 = NULL;
|
||||
static lv_obj_t * ui_Button1 = NULL;
|
||||
static lv_obj_t * ui_Button2 = NULL;
|
||||
static lv_obj_t * ui_Button3 = NULL;
|
||||
static lv_obj_t * ui_Button4 = NULL;
|
||||
|
||||
static lv_timer_t * _flush_timer = NULL;
|
||||
|
||||
// event funtions
|
||||
|
||||
static void ui_startpage_timer_cb(lv_timer_t * timer)
|
||||
{
|
||||
ui_full_screen_refresh(ui_StartPage);
|
||||
}
|
||||
|
||||
// build funtions
|
||||
|
||||
static void _ui_StartPage_btn_animation(void)
|
||||
{
|
||||
lv_lib_anim_user_animation(ui_Button1, 0, 600, 50, 20, 0, 600, 0, LV_ANIM_REPEAT_INFINITE, lv_anim_path_ease_in_out, lv_lib_anim_callback_set_hight, NULL);
|
||||
lv_lib_anim_user_animation(ui_Button2, 200, 600, 50, 20, 0, 600, 0, LV_ANIM_REPEAT_INFINITE, lv_anim_path_ease_in_out, lv_lib_anim_callback_set_hight, NULL);
|
||||
lv_lib_anim_user_animation(ui_Button3, 400, 600, 50, 20, 0, 600, 0, LV_ANIM_REPEAT_INFINITE, lv_anim_path_ease_in_out, lv_lib_anim_callback_set_hight, NULL);
|
||||
lv_lib_anim_user_animation(ui_Button4, 600, 600, 50, 20, 0, 600, 0, LV_ANIM_REPEAT_INFINITE, lv_anim_path_ease_in_out, lv_lib_anim_callback_set_hight, NULL);
|
||||
}
|
||||
|
||||
void ui_StartPage_screen_init(void)
|
||||
{
|
||||
ui_StartPage = lv_obj_create(NULL);
|
||||
lv_obj_remove_flag(ui_StartPage, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_Panel1 = lv_obj_create(ui_StartPage);
|
||||
lv_obj_set_width(ui_Panel1, 120);
|
||||
lv_obj_set_height(ui_Panel1, 120);
|
||||
lv_obj_set_x(ui_Panel1, 0);
|
||||
lv_obj_set_y(ui_Panel1, -35);
|
||||
lv_obj_set_align(ui_Panel1, LV_ALIGN_CENTER);
|
||||
lv_obj_remove_flag(ui_Panel1, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_radius(ui_Panel1, 128, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_color(ui_Panel1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_Panel1, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_color(ui_Panel1, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_opa(ui_Panel1, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_Image2 = lv_image_create(ui_Panel1);
|
||||
lv_image_set_src(ui_Image2, &ui_img_chicken_png);
|
||||
lv_obj_set_width(ui_Image2, LV_SIZE_CONTENT); /// 128
|
||||
lv_obj_set_height(ui_Image2, LV_SIZE_CONTENT); /// 128
|
||||
lv_obj_set_x(ui_Image2, -4);
|
||||
lv_obj_set_y(ui_Image2, -2);
|
||||
lv_obj_set_align(ui_Image2, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_Image2, LV_OBJ_FLAG_CLICKABLE); /// Flags
|
||||
lv_obj_remove_flag(ui_Image2, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_image_set_scale(ui_Image2, 196);
|
||||
|
||||
ui_Label1 = lv_label_create(ui_StartPage);
|
||||
lv_obj_set_width(ui_Label1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_Label1, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_Label1, 0);
|
||||
lv_obj_set_y(ui_Label1, 45);
|
||||
lv_obj_set_align(ui_Label1, LV_ALIGN_CENTER);
|
||||
lv_label_set_text(ui_Label1, "Power-Pico");
|
||||
lv_obj_set_style_text_font(ui_Label1, &lv_font_montserrat_28, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_Panel2 = lv_obj_create(ui_StartPage);
|
||||
lv_obj_set_width(ui_Panel2, 150);
|
||||
lv_obj_set_height(ui_Panel2, 50);
|
||||
lv_obj_set_x(ui_Panel2, 0);
|
||||
lv_obj_set_y(ui_Panel2, 90);
|
||||
lv_obj_set_align(ui_Panel2, LV_ALIGN_CENTER);
|
||||
lv_obj_remove_flag(ui_Panel2, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_radius(ui_Panel2, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_color(ui_Panel2, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_Panel2, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_border_width(ui_Panel2, 0, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_Button1 = lv_button_create(ui_Panel2);
|
||||
lv_obj_set_width(ui_Button1, 30);
|
||||
lv_obj_set_height(ui_Button1, 50);
|
||||
lv_obj_set_x(ui_Button1, -54);
|
||||
lv_obj_set_y(ui_Button1, 0);
|
||||
lv_obj_set_align(ui_Button1, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_Button1, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_Button1, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_Button1, lv_color_hex(0xE36666), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_Button1, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_Button2 = lv_button_create(ui_Panel2);
|
||||
lv_obj_set_width(ui_Button2, 30);
|
||||
lv_obj_set_height(ui_Button2, 50);
|
||||
lv_obj_set_x(ui_Button2, -18);
|
||||
lv_obj_set_y(ui_Button2, 0);
|
||||
lv_obj_set_align(ui_Button2, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_Button2, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_Button2, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_Button2, lv_color_hex(0x59D362), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_Button2, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_Button3 = lv_button_create(ui_Panel2);
|
||||
lv_obj_set_width(ui_Button3, 30);
|
||||
lv_obj_set_height(ui_Button3, 50);
|
||||
lv_obj_set_x(ui_Button3, 18);
|
||||
lv_obj_set_y(ui_Button3, 0);
|
||||
lv_obj_set_align(ui_Button3, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_Button3, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_Button3, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_Button4 = lv_button_create(ui_Panel2);
|
||||
lv_obj_set_width(ui_Button4, 30);
|
||||
lv_obj_set_height(ui_Button4, 50);
|
||||
lv_obj_set_x(ui_Button4, 54);
|
||||
lv_obj_set_y(ui_Button4, 0);
|
||||
lv_obj_set_align(ui_Button4, LV_ALIGN_CENTER);
|
||||
lv_obj_add_flag(ui_Button4, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_Button4, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_Button4, lv_color_hex(0x9F9960), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_Button4, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
_ui_StartPage_btn_animation();
|
||||
// _flush_timer = lv_timer_create(ui_startpage_timer_cb, 500, NULL);
|
||||
|
||||
}
|
||||
|
||||
void ui_StartPage_screen_destroy(void)
|
||||
{
|
||||
lv_timer_delete(_flush_timer);
|
||||
}
|
||||
25
software/Power_Pico/User/GUI/screens/ui_StartPage.h
Normal file
25
software/Power_Pico/User/GUI/screens/ui_StartPage.h
Normal file
@@ -0,0 +1,25 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#ifndef UI_STARTPAGE_H
|
||||
#define UI_STARTPAGE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// SCREEN: ui_StartPage
|
||||
extern void ui_StartPage_screen_init(void);
|
||||
extern void ui_StartPage_screen_destroy(void);
|
||||
extern lv_obj_t * ui_StartPage;
|
||||
|
||||
// CUSTOM VARIABLES
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
260
software/Power_Pico/User/GUI/screens/ui_mainPage.c
Normal file
260
software/Power_Pico/User/GUI/screens/ui_mainPage.c
Normal file
@@ -0,0 +1,260 @@
|
||||
// This file was generated by SquareLine Studio
|
||||
// SquareLine Studio version: SquareLine Studio 1.5.3
|
||||
// LVGL version: 9.2.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "../ui.h"
|
||||
#include "ui_mainPage.h"
|
||||
#include "math.h"
|
||||
|
||||
lv_obj_t * ui_HomeScreen = NULL;
|
||||
static lv_obj_t * ui_ButVal = NULL;
|
||||
static lv_obj_t * ui_LabelUnitVal = NULL;
|
||||
static lv_obj_t * ui_LabelValt = NULL;
|
||||
static lv_obj_t * ui_ButCur = NULL;
|
||||
static lv_obj_t * ui_LabelUnitCur = NULL;
|
||||
static lv_obj_t * ui_LabelCur = NULL;
|
||||
static lv_obj_t * ui_ButEnerge = NULL;
|
||||
static lv_obj_t * ui_LabelUnitEnerge = NULL;
|
||||
static lv_obj_t * ui_LabelEnerge = NULL;
|
||||
static lv_obj_t * ui_ButTime = NULL;
|
||||
static lv_obj_t * ui_LabelTime = NULL;
|
||||
static lv_timer_t * _flush_timer = NULL;
|
||||
|
||||
// other funtions
|
||||
|
||||
#include "key.h"
|
||||
void ui_main_page_key_handler(void* key_event)
|
||||
{
|
||||
if(((key_event_t*)key_event)->id == KEY_ID_B && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
{
|
||||
lv_lib_pm_next();
|
||||
}
|
||||
// else if (((key_event_t*)key_event)->id == KEY_ID_L && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
// {
|
||||
// // rotation - 90 degrees
|
||||
// // rotation – LV_DISPLAY_ROTATION_0/90/180/270
|
||||
// uint16_t rotation = ui_get_display_rotation();
|
||||
// rotation = (rotation + 360 - 90) % 360;
|
||||
// // set rotation value
|
||||
// ui_set_display_rotation(rotation);
|
||||
// // save settings to eeprom
|
||||
// ui_system_settings_save();
|
||||
// ui_full_screen_refresh(ui_HomeScreen);
|
||||
// }
|
||||
// else if (((key_event_t*)key_event)->id == KEY_ID_R && ((key_event_t*)key_event)->type == KEY_EVT_CLICK)
|
||||
// {
|
||||
// // rotation + 90 degrees
|
||||
// uint16_t rotation = ui_get_display_rotation();
|
||||
// rotation = (rotation + 360 + 90) % 360;
|
||||
// // set rotation value
|
||||
// ui_set_display_rotation(rotation);
|
||||
// // save settings to eeprom
|
||||
// ui_system_settings_save();
|
||||
// ui_full_screen_refresh(ui_HomeScreen);
|
||||
// }
|
||||
}
|
||||
|
||||
static void fmt_sig4(char *buf, size_t size, float v)
|
||||
{
|
||||
if (!isfinite(v)) { snprintf(buf, size, "--"); return; }
|
||||
if (fabsf(v) < 1e-9f) v = 0.0f; // 处理接近零的值
|
||||
float av = fabsf(v);
|
||||
int int_digits = (av >= 1.0f) ? ((int)floorf(log10f(av)) + 1) : 0;
|
||||
if(int_digits >= 4) {
|
||||
snprintf(buf, size, "%.0f", roundf(v));
|
||||
return;
|
||||
}
|
||||
int decimals = (int_digits == 0) ? 3 : (4 - int_digits); // 确保总数字为 4
|
||||
snprintf(buf, size, "%.*f", decimals, v);
|
||||
}
|
||||
|
||||
static void set_val_cur_label(float voltage, float current)
|
||||
{
|
||||
char buf[16];
|
||||
|
||||
// voltage (单位: V) -> 4 位有效数字
|
||||
fmt_sig4(buf, sizeof(buf), voltage);
|
||||
lv_label_set_text(ui_LabelValt, buf);
|
||||
|
||||
// current (原始单位: uA)
|
||||
float cur_uA = current;
|
||||
float cur_abs_uA = fabsf(cur_uA);
|
||||
float cur_disp = 0.0f;
|
||||
|
||||
if (cur_abs_uA >= 1e6f) {
|
||||
cur_disp = cur_uA / 1e6f; // A
|
||||
fmt_sig4(buf, sizeof(buf), cur_disp);
|
||||
lv_label_set_text(ui_LabelCur, buf);
|
||||
lv_label_set_text(ui_LabelUnitCur, "A");
|
||||
} else if (cur_abs_uA >= 1e3f) {
|
||||
cur_disp = cur_uA / 1e3f; // mA
|
||||
fmt_sig4(buf, sizeof(buf), cur_disp);
|
||||
lv_label_set_text(ui_LabelCur, buf);
|
||||
lv_label_set_text(ui_LabelUnitCur, "mA");
|
||||
} else {
|
||||
cur_disp = cur_uA; // uA
|
||||
fmt_sig4(buf, sizeof(buf), cur_disp);
|
||||
lv_label_set_text(ui_LabelCur, buf);
|
||||
lv_label_set_text(ui_LabelUnitCur, "uA");
|
||||
}
|
||||
|
||||
// power = V * A,按 W/mW/uW 选择单位,4 位有效数字
|
||||
float power_W = voltage * (cur_uA / 1e6f);
|
||||
float p_abs = fabsf(power_W);
|
||||
|
||||
if (p_abs >= 1.0f) {
|
||||
fmt_sig4(buf, sizeof(buf), power_W); // W
|
||||
lv_label_set_text(ui_LabelEnerge, buf);
|
||||
lv_label_set_text(ui_LabelUnitEnerge, "W");
|
||||
} else if (p_abs >= 1e-3f) {
|
||||
fmt_sig4(buf, sizeof(buf), power_W * 1e3f); // mW
|
||||
lv_label_set_text(ui_LabelEnerge, buf);
|
||||
lv_label_set_text(ui_LabelUnitEnerge, "mW");
|
||||
} else {
|
||||
fmt_sig4(buf, sizeof(buf), power_W * 1e6f); // uW
|
||||
lv_label_set_text(ui_LabelEnerge, buf);
|
||||
lv_label_set_text(ui_LabelUnitEnerge, "uW");
|
||||
}
|
||||
|
||||
// time
|
||||
uint8_t hours = 0, minutes = 0, seconds = 0;
|
||||
ui_GetElapsedTime_HMS(&hours, &minutes, &seconds);
|
||||
snprintf(buf, sizeof(buf), "%02d:%02d:%02d", hours, minutes, seconds);
|
||||
lv_label_set_text(ui_LabelTime, buf);
|
||||
}
|
||||
|
||||
// event funtions
|
||||
|
||||
static void _flush_timer_cb()
|
||||
{
|
||||
float voltage = 0.0;
|
||||
float current = 0.0;
|
||||
ui_get_vol_cur(&voltage, ¤t);
|
||||
set_val_cur_label(voltage, current);
|
||||
}
|
||||
|
||||
// build funtions
|
||||
|
||||
void ui_main_screen_init(void)
|
||||
{
|
||||
ui_HomeScreen = lv_obj_create(NULL);
|
||||
lv_obj_remove_flag(ui_HomeScreen, LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
|
||||
ui_ButVal = lv_button_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_ButVal, 234);
|
||||
lv_obj_set_height(ui_ButVal, 55);
|
||||
lv_obj_set_x(ui_ButVal, 0);
|
||||
lv_obj_set_y(ui_ButVal, 4);
|
||||
lv_obj_set_align(ui_ButVal, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_ButVal, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_ButVal, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_ButVal, lv_color_hex(0xE36666), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_ButVal, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_ButCur = lv_button_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_ButCur, 234);
|
||||
lv_obj_set_height(ui_ButCur, 55);
|
||||
lv_obj_set_x(ui_ButCur, 0);
|
||||
lv_obj_set_y(ui_ButCur, 63);
|
||||
lv_obj_set_align(ui_ButCur, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_ButCur, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_ButCur, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_ButCur, lv_color_hex(0x42AA49), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_ButCur, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_ButEnerge = lv_button_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_ButEnerge, 234);
|
||||
lv_obj_set_height(ui_ButEnerge, 55);
|
||||
lv_obj_set_x(ui_ButEnerge, 0);
|
||||
lv_obj_set_y(ui_ButEnerge, 122);
|
||||
lv_obj_set_align(ui_ButEnerge, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_ButEnerge, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_ButEnerge, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_ButEnerge, lv_color_hex(0x4569C9), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_ButEnerge, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_ButTime = lv_button_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_ButTime, 234);
|
||||
lv_obj_set_height(ui_ButTime, 55);
|
||||
lv_obj_set_x(ui_ButTime, 0);
|
||||
lv_obj_set_y(ui_ButTime, 181);
|
||||
lv_obj_set_align(ui_ButTime, LV_ALIGN_TOP_MID);
|
||||
lv_obj_add_flag(ui_ButTime, LV_OBJ_FLAG_SCROLL_ON_FOCUS); /// Flags
|
||||
lv_obj_remove_flag(ui_ButTime, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); /// Flags
|
||||
lv_obj_set_style_bg_color(ui_ButTime, lv_color_hex(0x9F9960), LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
lv_obj_set_style_bg_opa(ui_ButTime, 255, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelUnitVal = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelUnitVal, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelUnitVal, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelUnitVal, 70);
|
||||
lv_obj_set_y(ui_LabelUnitVal, 20);
|
||||
lv_obj_set_align(ui_LabelUnitVal, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelUnitVal, "V");
|
||||
lv_obj_set_style_text_font(ui_LabelUnitVal, &ui_font_HeiTi32, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelValt = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelValt, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelValt, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelValt, -30);
|
||||
lv_obj_set_y(ui_LabelValt, 14);
|
||||
lv_obj_set_align(ui_LabelValt, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelValt, "0.00");
|
||||
lv_obj_set_style_text_font(ui_LabelValt, &ui_font_HeiTi48, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelUnitCur = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelUnitCur, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelUnitCur, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelUnitCur, 70);
|
||||
lv_obj_set_y(ui_LabelUnitCur, 80);
|
||||
lv_obj_set_align(ui_LabelUnitCur, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelUnitCur, "uA");
|
||||
lv_obj_set_style_text_font(ui_LabelUnitCur, &ui_font_HeiTi32, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelCur = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelCur, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelCur, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelCur, -30);
|
||||
lv_obj_set_y(ui_LabelCur, 74);
|
||||
lv_obj_set_align(ui_LabelCur, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelCur, "0.00");
|
||||
lv_obj_set_style_text_font(ui_LabelCur, &ui_font_HeiTi48, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelUnitEnerge = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelUnitEnerge, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelUnitEnerge, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelUnitEnerge, 70);
|
||||
lv_obj_set_y(ui_LabelUnitEnerge, 140);
|
||||
lv_obj_set_align(ui_LabelUnitEnerge, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelUnitEnerge, "mW");
|
||||
lv_obj_set_style_text_font(ui_LabelUnitEnerge, &ui_font_HeiTi32, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelEnerge = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelEnerge, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelEnerge, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelEnerge, -30);
|
||||
lv_obj_set_y(ui_LabelEnerge, 133);
|
||||
lv_obj_set_align(ui_LabelEnerge, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelEnerge, "0.00");
|
||||
lv_obj_set_style_text_font(ui_LabelEnerge, &ui_font_HeiTi48, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
|
||||
ui_LabelTime = lv_label_create(ui_HomeScreen);
|
||||
lv_obj_set_width(ui_LabelTime, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_height(ui_LabelTime, LV_SIZE_CONTENT); /// 1
|
||||
lv_obj_set_x(ui_LabelTime, 0);
|
||||
lv_obj_set_y(ui_LabelTime, 190);
|
||||
lv_obj_set_align(ui_LabelTime, LV_ALIGN_TOP_MID);
|
||||
lv_label_set_text(ui_LabelTime, "00:00:00");
|
||||
lv_obj_set_style_text_font(ui_LabelTime, &ui_font_HeiTi48, LV_PART_MAIN | LV_STATE_DEFAULT);
|
||||
_flush_timer_cb(NULL);
|
||||
// flush timer
|
||||
_flush_timer = lv_timer_create(_flush_timer_cb, 250, NULL);
|
||||
|
||||
}
|
||||
|
||||
|
||||
void ui_main_screen_destroy(void)
|
||||
{
|
||||
lv_timer_delete(_flush_timer);
|
||||
}
|
||||
20
software/Power_Pico/User/GUI/screens/ui_mainPage.h
Normal file
20
software/Power_Pico/User/GUI/screens/ui_mainPage.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef UI_MAINPAGE_H
|
||||
#define UI_MAINPAGE_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// SCREEN: ui_Screen1
|
||||
void ui_main_screen_init(void);
|
||||
void ui_main_screen_destroy(void);
|
||||
void ui_main_page_key_handler(void *key_event);
|
||||
|
||||
extern lv_obj_t * ui_HomeScreen;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
105
software/Power_Pico/User/GUI/ui.c
Normal file
105
software/Power_Pico/User/GUI/ui.c
Normal file
@@ -0,0 +1,105 @@
|
||||
// LVGL version: 9.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "./ui.h"
|
||||
#include "./screens/ui_StartPage.h"
|
||||
#include "./screens/ui_mainPage.h"
|
||||
#include "./screens/ui_chartPage.h"
|
||||
#include "./screens/ui_SetPage.h"
|
||||
#include "./screens/ui_PPSPage.h"
|
||||
|
||||
///////////////////// VARIABLES ////////////////////
|
||||
|
||||
// pages
|
||||
Page_t pages[] = {
|
||||
{
|
||||
.init = ui_main_screen_init,
|
||||
.deinit = ui_main_screen_destroy,
|
||||
.page_obj = &ui_HomeScreen,
|
||||
.key_event_handler = ui_main_page_key_handler,
|
||||
.name = "Main Page"
|
||||
},
|
||||
// {
|
||||
// .init = ui_ChartPage_screen_init,
|
||||
// .deinit = ui_ChartPage_screen_destroy,
|
||||
// .page_obj = &ui_ChartPage,
|
||||
// .key_event_handler = ui_chart_page_key_handler,
|
||||
// .name = "Chart Page"
|
||||
// },
|
||||
{
|
||||
.init = ui_SetPage_screen_init,
|
||||
.deinit = ui_SetPage_screen_destroy,
|
||||
.page_obj = &ui_SetPage,
|
||||
.key_event_handler = ui_set_page_key_handler,
|
||||
.name = "Set Page"
|
||||
},
|
||||
{
|
||||
.init = ui_PPSPage_screen_init,
|
||||
.deinit = ui_PPSPage_screen_destroy,
|
||||
.page_obj = &ui_PPSPage,
|
||||
.key_event_handler = ui_pps_page_key_handler,
|
||||
.name = "PPS Page"
|
||||
},
|
||||
// 可以在这里添加更多页面
|
||||
};
|
||||
|
||||
///////////////////// TEST LVGL SETTINGS ////////////////////
|
||||
#if LV_COLOR_DEPTH != 16
|
||||
#error "LV_COLOR_DEPTH should be 16bit to match SquareLine Studio's settings"
|
||||
#endif
|
||||
|
||||
/////////////////////// Timer //////////////////////
|
||||
/**
|
||||
* Main timer for Refreshing the screens
|
||||
*/
|
||||
static void main_timer_cb(lv_timer_t * timer)
|
||||
{
|
||||
// 1s 刷新一次全屏,防止有时候不知什么原因的LCD刷新错误(需要后续找到问题从根本解决不知是不是屏幕本身问题)
|
||||
ui_full_screen_refresh(lv_screen_active());
|
||||
}
|
||||
|
||||
////////////////////////// Animation //////////////////////
|
||||
|
||||
void ui_start_animation_done() {
|
||||
// 初始化页面并加载主要界面
|
||||
lv_lib_pm_Init();
|
||||
for (uint8_t i = 0; i < sizeof(pages) / sizeof(pages[0]); i++) {
|
||||
lv_lib_pm_register(&pages[i]);
|
||||
}
|
||||
lv_lib_pm_load_init_screen();
|
||||
}
|
||||
|
||||
void ui_anima_set_light_level(void * var, int32_t v) {
|
||||
ui_set_back_light_level(v);
|
||||
}
|
||||
|
||||
static void _ui_Start_animation(void) {
|
||||
uint8_t target_level = ui_get_back_light_level();
|
||||
lv_lib_anim_user_animation(NULL, 0, 2000, 0, target_level, 0, 0, 0, 0, lv_anim_path_ease_in, ui_anima_set_light_level, ui_start_animation_done);
|
||||
}
|
||||
|
||||
/////////////////////// ui_initialize //////////////////////
|
||||
void ui_init(void)
|
||||
{
|
||||
lv_disp_t * dispp = lv_display_get_default();
|
||||
lv_theme_t * theme = lv_theme_default_init(dispp, lv_palette_main(LV_PALETTE_BLUE), lv_palette_main(LV_PALETTE_RED), true, LV_FONT_DEFAULT);
|
||||
lv_disp_set_theme(dispp, theme);
|
||||
|
||||
// set system settings
|
||||
ui_set_display_rotation(ui_get_display_rotation());
|
||||
|
||||
// internationalization init
|
||||
lv_i18n_init(lv_i18n_language_pack); //lv_i18n 的语言初始化
|
||||
if(ui_get_language_select() == 0)
|
||||
lv_i18n_set_locale("en"); //lv_i18n 设置当前语言
|
||||
else
|
||||
lv_i18n_set_locale("zh-cn"); //lv_i18n 设置当前语言
|
||||
|
||||
// main timer (you can add someting to do in the timer_cb if needed)
|
||||
lv_timer_t * ui_MainTimer = lv_timer_create(main_timer_cb, 1000, NULL);
|
||||
|
||||
// start up, just load one time only
|
||||
ui_StartPage_screen_init();
|
||||
lv_screen_load(ui_StartPage);
|
||||
_ui_Start_animation();
|
||||
}
|
||||
33
software/Power_Pico/User/GUI/ui.h
Normal file
33
software/Power_Pico/User/GUI/ui.h
Normal file
@@ -0,0 +1,33 @@
|
||||
// LVGL VERSION: 9.2
|
||||
|
||||
|
||||
#ifndef _UI_H
|
||||
#define _UI_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "stdio.h"
|
||||
#include "lvgl.h"
|
||||
#include "./common/lv_lib_pm.h"
|
||||
#include "./common/lv_lib_animation.h"
|
||||
#include "./common/lv_i18n.h"
|
||||
#include "./ui_helpers.h"
|
||||
|
||||
void ui_init(void);
|
||||
|
||||
// FONTS
|
||||
LV_FONT_DECLARE(ui_font_HeiTi32);
|
||||
LV_FONT_DECLARE(ui_font_HeiTi48);
|
||||
LV_FONT_DECLARE(ui_font_zhongyuan18);
|
||||
LV_FONT_DECLARE(ui_font_zhongyuan20);
|
||||
|
||||
// IMAGES AND IMAGE SETS
|
||||
LV_IMG_DECLARE(ui_img_chicken_png);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
130
software/Power_Pico/User/GUI/ui_helpers.c
Normal file
130
software/Power_Pico/User/GUI/ui_helpers.c
Normal file
@@ -0,0 +1,130 @@
|
||||
// LVGL version: 9.2
|
||||
// Project name: PowerPico
|
||||
|
||||
#include "BL24C02.h" // system settings
|
||||
#include "tim.h" // elapsed time
|
||||
#include "adc.h" // for voltage/current minitor
|
||||
#include "user_PDUFPTask.h" // comunicate with PD UFP Task
|
||||
|
||||
#include "./ui_helpers.h"
|
||||
|
||||
///////////////////// ui help funtions ////////////////////
|
||||
|
||||
void ui_full_screen_refresh(lv_obj_t * screen) {
|
||||
// 标记整个屏幕为脏区域
|
||||
lv_obj_invalidate(screen);
|
||||
// 或者立即刷新整个屏幕
|
||||
lv_refr_now(NULL);
|
||||
}
|
||||
|
||||
//////////// interface for system hw settings ///////////
|
||||
|
||||
//////////////// get functions ///////////////
|
||||
|
||||
uint64_t ui_GetElaspseMicroseconds(void) {
|
||||
return GetMicrosecondCounter();
|
||||
}
|
||||
|
||||
// 获取经过的时间, 单位为时分秒, 必须定时运行以更新32位计数器溢出
|
||||
void ui_GetElapsedTime_HMS(uint8_t *hours, uint8_t *minutes, uint8_t *seconds) {
|
||||
|
||||
uint64_t total_us = GetMicrosecondCounter();
|
||||
uint32_t total_seconds = total_us / 1000000;
|
||||
|
||||
if (hours) {
|
||||
*hours = (total_seconds / 3600); // 这里不取模,可以显示超过24小时
|
||||
}
|
||||
if (minutes) {
|
||||
*minutes = (total_seconds % 3600) / 60;
|
||||
}
|
||||
if (seconds) {
|
||||
*seconds = total_seconds % 60;
|
||||
}
|
||||
}
|
||||
|
||||
uint8_t ui_get_back_light_level(void) {
|
||||
return Sys_Get_BacklightLevel();
|
||||
}
|
||||
|
||||
bool ui_get_key_sound_enable(void) {
|
||||
return Sys_Get_KeySoundEnable();
|
||||
}
|
||||
|
||||
uint8_t ui_get_language_select(void) {
|
||||
return Sys_Get_LanguageSelect();
|
||||
}
|
||||
|
||||
uint16_t ui_get_display_rotation(void) {
|
||||
return Sys_Get_Rotation();
|
||||
}
|
||||
|
||||
// 获取当前电压, 单位 V; 当前电流, 单位 uA
|
||||
void ui_get_vol_cur(float *voltage, float *current) {
|
||||
Data_Monitor_Get_Values(voltage, current);
|
||||
}
|
||||
|
||||
//////////////// set functions ///////////////
|
||||
|
||||
void ui_clear_microsecond_counter(void) {
|
||||
ClearMicrosecondCounter();
|
||||
}
|
||||
|
||||
void ui_set_back_light_level(uint8_t level) {
|
||||
Sys_Set_BacklightLevel(level);
|
||||
}
|
||||
|
||||
void ui_set_key_sound_enable(bool enable) {
|
||||
Sys_Set_KeySoundEnable(enable);
|
||||
}
|
||||
|
||||
void ui_set_language_select(uint8_t lang) {
|
||||
Sys_Set_LanguageSelect(lang);
|
||||
}
|
||||
|
||||
void ui_set_display_rotation(uint16_t rotation) {
|
||||
Sys_Set_Rotation(rotation);
|
||||
}
|
||||
|
||||
void ui_clear_data_monitor(void) {
|
||||
Data_Monitor_Clear();
|
||||
}
|
||||
|
||||
//////////////// sys save functions ///////////////
|
||||
void ui_system_settings_save(void) {
|
||||
EEPROM_SysSetting_Save();
|
||||
}
|
||||
|
||||
///////////// interface for com with PD UFP Task //////////////
|
||||
|
||||
void ui_send_pps_start_msg(void) {
|
||||
PD_command_msg_t pd_ui_msg;
|
||||
pd_ui_msg.event = PD_CMD_START;
|
||||
osMessageQueuePut(PD_cmd_MessageQueue, &pd_ui_msg, 0, 1);
|
||||
}
|
||||
|
||||
void ui_send_pps_stop_msg(void) {
|
||||
PD_command_msg_t pd_ui_msg;
|
||||
pd_ui_msg.event = PD_CMD_STOP;
|
||||
osMessageQueuePut(PD_cmd_MessageQueue, &pd_ui_msg, 0, 1);
|
||||
}
|
||||
|
||||
void ui_send_pps_set_msg(float voltage, float current) {
|
||||
PD_command_msg_t pd_ui_msg;
|
||||
pd_ui_msg.event = PD_CMD_SET_PPS;
|
||||
pd_ui_msg.set_voltage = voltage;
|
||||
pd_ui_msg.set_current = current;
|
||||
osMessageQueuePut(PD_cmd_MessageQueue, &pd_ui_msg, 0, 1);
|
||||
}
|
||||
|
||||
// 非阻塞获取消息队列, 查看是否ready
|
||||
int8_t MsgQueueGet_PPS_ready(void) {
|
||||
PD_handle_event_t pd_handle_event;
|
||||
if(osMessageQueueGet(PD_handle_event_MsgQueue, &pd_handle_event, NULL, 0)==osOK) {
|
||||
if(pd_handle_event == PD_EVT_PPS_READY) {
|
||||
return 1;
|
||||
} else if(pd_handle_event == PD_EVT_PPS_FAILED) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
59
software/Power_Pico/User/GUI/ui_helpers.h
Normal file
59
software/Power_Pico/User/GUI/ui_helpers.h
Normal file
@@ -0,0 +1,59 @@
|
||||
// LVGL VERSION: 9.2
|
||||
|
||||
|
||||
#ifndef _UI_HELPERS_H
|
||||
#define _UI_HELPERS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include "lvgl.h"
|
||||
#include "stdio.h"
|
||||
|
||||
///////////////////// help funtions ////////////////////
|
||||
|
||||
void ui_full_screen_refresh(lv_obj_t * screen);
|
||||
|
||||
///////////// interface for system settings ////////////
|
||||
|
||||
// get functions
|
||||
|
||||
uint64_t ui_GetElaspseMicroseconds(void);
|
||||
void ui_GetElapsedTime_HMS(uint8_t *hours, uint8_t *minutes, uint8_t *seconds);
|
||||
uint8_t ui_get_back_light_level(void);
|
||||
bool ui_get_key_sound_enable(void);
|
||||
uint8_t ui_get_language_select(void);
|
||||
uint16_t ui_get_display_rotation(void);
|
||||
void ui_get_vol_cur(float *voltage, float *current);
|
||||
|
||||
// set functions
|
||||
|
||||
void ui_clear_microsecond_counter(void);
|
||||
void ui_set_back_light_level(uint8_t level);
|
||||
void ui_set_key_sound_enable(bool enable);
|
||||
void ui_set_language_select(uint8_t lang);
|
||||
void ui_set_display_rotation(uint16_t rotation);
|
||||
void ui_clear_data_monitor(void);
|
||||
|
||||
// sys save function
|
||||
void ui_system_settings_save(void);
|
||||
|
||||
///////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
///////////// interface for com with PD UFP Task //////////////
|
||||
|
||||
void ui_send_pps_start_msg(void);
|
||||
void ui_send_pps_stop_msg(void);
|
||||
void ui_send_pps_set_msg(float voltage, float current);
|
||||
int8_t MsgQueueGet_PPS_ready(void);
|
||||
|
||||
///////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user