summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmovement/make/Makefile3
-rw-r--r--movement/movement.c18
-rw-r--r--movement/movement.h72
-rw-r--r--movement/movement_config.h3
-rw-r--r--movement/watch_faces/clock/simple_clock_face.c1
-rw-r--r--movement/watch_faces/complications/beats_face.c2
-rw-r--r--movement/watch_faces/complications/day_one_face.c177
-rw-r--r--movement/watch_faces/complications/day_one_face.h31
-rw-r--r--movement/watch_faces/complications/stopwatch_face.c76
-rw-r--r--movement/watch_faces/complications/stopwatch_face.h26
-rw-r--r--movement/watch_faces/demos/voltage_face.c66
-rw-r--r--movement/watch_faces/demos/voltage_face.h19
-rw-r--r--utils/flash_watch_pyruler/bootloader.h1122
-rw-r--r--watch-library/watch/watch_adc.c29
-rw-r--r--watch-library/watch/watch_adc.h47
15 files changed, 1112 insertions, 580 deletions
diff --git a/movement/make/Makefile b/movement/make/Makefile
index a937222b..b595d2dd 100755
--- a/movement/make/Makefile
+++ b/movement/make/Makefile
@@ -33,7 +33,10 @@ SRCS += \
../watch_faces/thermistor/thermistor_readout_face.c \
../watch_faces/thermistor/thermistor_logging_face.c \
../watch_faces/demos/character_set_face.c \
+ ../watch_faces/demos/voltage_face.c \
../watch_faces/complications/beats_face.c \
+ ../watch_faces/complications/day_one_face.c \
+ ../watch_faces/complications/stopwatch_face.c \
# Leave this line at the bottom of the file; it has all the targets for making your project.
include $(TOP)/rules.mk
diff --git a/movement/movement.c b/movement/movement.c
index 5622f17f..797e75bf 100644
--- a/movement/movement.c
+++ b/movement/movement.c
@@ -105,7 +105,7 @@ void app_setup() {
watch_faces[i].setup(&movement_state.settings, &watch_face_contexts[i]);
}
- watch_faces[0].activate(&movement_state.settings, watch_face_contexts[0]);
+ watch_faces[movement_state.current_watch_face].activate(&movement_state.settings, watch_face_contexts[movement_state.current_watch_face]);
event.subsecond = 0;
event.event_type = EVENT_ACTIVATE;
}
@@ -143,11 +143,6 @@ bool app_loop() {
}
}
- // if we have timed out of our timeout countdown, give the app a hint that they can resign.
- if (movement_state.timeout_ticks == 0) {
- event.event_type = EVENT_TIMEOUT;
- }
-
// handle background tasks, if the alarm handler told us we need to
if (movement_state.needs_background_tasks_handled) _movement_handle_background_tasks();
@@ -181,9 +176,18 @@ bool app_loop() {
event.subsecond = movement_state.subsecond;
can_sleep = watch_faces[movement_state.current_watch_face].loop(event, &movement_state.settings, watch_face_contexts[movement_state.current_watch_face]);
event.event_type = EVENT_NONE;
- event.subsecond = 0;
}
+ // if we have timed out of our timeout countdown, give the app a hint that they can resign.
+ if (movement_state.timeout_ticks == 0) {
+ event.event_type = EVENT_TIMEOUT;
+ event.subsecond = movement_state.subsecond;
+ watch_faces[movement_state.current_watch_face].loop(event, &movement_state.settings, watch_face_contexts[movement_state.current_watch_face]);
+ event.event_type = EVENT_NONE;
+ }
+
+ event.subsecond = 0;
+
return can_sleep && !movement_state.led_on;
}
diff --git a/movement/movement.h b/movement/movement.h
index cb162b95..6953549a 100644
--- a/movement/movement.h
+++ b/movement/movement.h
@@ -3,27 +3,77 @@
#include <stdio.h>
#include <stdbool.h>
-// TODO: none of this is implemented
+// Movement Preferences
+// These four 32-bit structs store information about the wearer and their preferences. Tentatively, the plan is
+// for Movement to use four 32-bit registers for these preferences and to store them in the RTC's backup registers
+// 0-3, leaving registers 4-7 available for third party watch faces to use as they see fit.
+// * The movement_settings_t struct is provided to all watch faces in the callback functions, and will eventually
+// be stored in the RTC's first backup register (BKUP[0]).
+// * The movement_location_t and movement_birthdate_t types are defined here, and are tentatively meant to be
+// stored in BKUP[1] and BKUP[2], respectively.
+// * The movement_reserved_t type is here as a placeholder, because I sense there's some other generally useful
+// stuff we'll want to make available to all watch faces and stash in the BKUP[3] register.
+// Anyway: Eventually, if Movement supports the BACKUP sleep mode, this will allow these preferences to be stored
+// before entering BACKUP mode and and restored after waking from reset.
+
+// movement_settings_t contains global settings that cover watch behavior, including preferences around clock and unit
+// display, time zones, buzzer behavior, LED color and low energy mode timeouts.
+// Eventually it will be stored in BKUP[0] when Movement enters BACKUP mode.
typedef union {
struct {
- uint32_t reserved : 14;
- uint32_t button_should_sound : 1; // if true, pressing a button emits a sound.
- uint32_t to_interval : 2; // an inactivity interval for asking the active face to resign.
- uint32_t le_interval : 3; // 0 to disable low energy mode, or an inactivity interval for going into low energy mode.
- uint32_t led_duration : 2; // how many seconds to shine the LED for (x2), or 0 to disable it.
- uint32_t led_red_color : 4; // for general purpose illumination, the red LED value (0-15)
- uint32_t led_green_color : 4; // for general purpose illumination, the green LED value (0-15)
+ bool button_should_sound : 1; // if true, pressing a button emits a sound.
+ uint8_t to_interval : 2; // an inactivity interval for asking the active face to resign.
+ uint8_t le_interval : 3; // 0 to disable low energy mode, or an inactivity interval for going into low energy mode.
+ uint8_t led_duration : 2; // how many seconds to shine the LED for (x2), or 0 to disable it.
+ uint8_t led_red_color : 4; // for general purpose illumination, the red LED value (0-15)
+ uint8_t led_green_color : 4; // for general purpose illumination, the green LED value (0-15)
+ uint8_t time_zone : 6; // TODO: an integer representing an index in the (to be implemented) time zone table.
// while Movement itself doesn't implement a clock or display units, it may make sense to include some
// global settings for watch faces to check. The 12/24 hour preference could inform a clock or a
// time-oriented complication like a sunrise/sunset timer, and a simple locale preference could tell an
// altimeter to display feet or meters as easily as it tells a thermometer to display degrees in F or C.
- uint32_t clock_mode_24h : 1; // indicates whether clock should use 12 or 24 hour mode.
- uint32_t use_imperial_units : 1; // indicates whether to use metric units (the default) or imperial.
+ bool clock_mode_24h : 1; // indicates whether clock should use 12 or 24 hour mode.
+ bool use_imperial_units : 1; // indicates whether to use metric units (the default) or imperial.
+ uint8_t reserved : 8; // room for more preferences if needed.
} bit;
- uint32_t value;
+ uint32_t reg;
} movement_settings_t;
+// movement_location_t is for storing the wearer's location. This will be useful for astronomical calculations such as
+// sunrise and sunset, or predictions of visible satellite passes.
+// If you create a UI for this register or need to access it, look for it in the RTC's BKUP[1] register.
+typedef union {
+ struct {
+ int16_t latitude : 16; // signed latutide in hundredths of a degree
+ int16_t longitude : 16; // signed longitude in hundredths of a degree
+ } bit;
+ uint32_t reg;
+} movement_location_t;
+
+// movement_birthdate_t is for storing the user's birth date. This will be useful for calculating the user's age — or
+// hey, playing happy birthday at midnight? Fields for birth time (with hour and minute resolution) are also available,
+// partly because they fit so nicely, but also because they can be useful for certain astrological calculations.
+// If you create a UI for birth date or need to access it, look for it in the RTC's BKUP[2] register.
+typedef union {
+ struct {
+ uint16_t year : 12; // good through the year 4095
+ uint8_t month : 4;
+ uint8_t day : 5;
+ uint8_t hour : 5;
+ uint8_t minute : 6;
+ } bit;
+ uint32_t reg;
+} movement_birthdate_t;
+
+// movement_reserved_t is a placeholder for future use of the BKUP[3] register.
+typedef union {
+ struct {
+ uint32_t reserved : 32;
+ } bit;
+ uint32_t reg;
+} movement_reserved_t;
+
typedef enum {
EVENT_NONE = 0, // There is no event to report.
EVENT_ACTIVATE, // Your watch face is entering the foreground.
diff --git a/movement/movement_config.h b/movement/movement_config.h
index 3e911477..fa5ddf18 100644
--- a/movement/movement_config.h
+++ b/movement/movement_config.h
@@ -9,6 +9,9 @@
#include "thermistor_logging_face.h"
#include "character_set_face.h"
#include "beats_face.h"
+#include "day_one_face.h"
+#include "voltage_face.h"
+#include "stopwatch_face.h"
const watch_face_t watch_faces[] = {
simple_clock_face,
diff --git a/movement/watch_faces/clock/simple_clock_face.c b/movement/watch_faces/clock/simple_clock_face.c
index 9e279d95..72f7713f 100644
--- a/movement/watch_faces/clock/simple_clock_face.c
+++ b/movement/watch_faces/clock/simple_clock_face.c
@@ -28,7 +28,6 @@ bool simple_clock_face_loop(movement_event_t event, movement_settings_t *setting
switch (event.event_type) {
case EVENT_ACTIVATE:
case EVENT_TICK:
- case EVENT_TIMEOUT:
case EVENT_LOW_ENERGY_UPDATE:
date_time = watch_rtc_get_date_time();
previous_date_time = *((uint32_t *)context);
diff --git a/movement/watch_faces/complications/beats_face.c b/movement/watch_faces/complications/beats_face.c
index 73a82719..95a9aaef 100644
--- a/movement/watch_faces/complications/beats_face.c
+++ b/movement/watch_faces/complications/beats_face.c
@@ -26,6 +26,7 @@ bool beats_face_loop(movement_event_t event, movement_settings_t *settings, void
watch_date_time date_time;
switch (event.event_type) {
+ case EVENT_ACTIVATE:
case EVENT_TICK:
date_time = watch_rtc_get_date_time();
beats = clock2beats(date_time.unit.hour, date_time.unit.minute, date_time.unit.second, event.subsecond, UTC_OFFSET);
@@ -34,6 +35,7 @@ bool beats_face_loop(movement_event_t event, movement_settings_t *settings, void
watch_display_string(buf, 0);
break;
case EVENT_LOW_ENERGY_UPDATE:
+ if (!watch_tick_animation_is_running()) watch_start_tick_animation(432);
date_time = watch_rtc_get_date_time();
beats = clock2beats(date_time.unit.hour, date_time.unit.minute, date_time.unit.second, event.subsecond, UTC_OFFSET);
sprintf(buf, "bt %4d ", (int)beats);
diff --git a/movement/watch_faces/complications/day_one_face.c b/movement/watch_faces/complications/day_one_face.c
new file mode 100644
index 00000000..146f3f6f
--- /dev/null
+++ b/movement/watch_faces/complications/day_one_face.c
@@ -0,0 +1,177 @@
+#include <stdlib.h>
+#include <string.h>
+#include "day_one_face.h"
+#include "watch.h"
+
+uint32_t _day_one_face_juliandaynum(uint16_t year, uint16_t month, uint16_t day) {
+ // from here: https://en.wikipedia.org/wiki/Julian_day#Julian_day_number_calculation
+ return (1461 * (year + 4800 + (month - 14) / 12)) / 4 + (367 * (month - 2 - 12 * ((month - 14) / 12))) / 12 - (3 * ((year + 4900 + (month - 14) / 12) / 100))/4 + day - 32075;
+}
+
+void _day_one_face_update(day_one_state_t state) {
+ char buf[14];
+ watch_date_time date_time = watch_rtc_get_date_time();
+ uint32_t julian_date = _day_one_face_juliandaynum(date_time.unit.year + WATCH_RTC_REFERENCE_YEAR, date_time.unit.month, date_time.unit.day);
+ uint32_t julian_birthdate = _day_one_face_juliandaynum(state.birth_year, state.birth_month, state.birth_day);
+ sprintf(buf, "DA %6ld", julian_date - julian_birthdate);
+ watch_display_string(buf, 0);
+}
+
+void day_one_face_setup(movement_settings_t *settings, void ** context_ptr) {
+ (void) settings;
+ if (*context_ptr == NULL) {
+ *context_ptr = malloc(sizeof(day_one_state_t));
+ memset(*context_ptr, 0, sizeof(day_one_state_t));
+ movement_birthdate_t movement_birthdate = (movement_birthdate_t) watch_get_backup_data(2);
+ if (movement_birthdate.reg == 0) {
+ // if birth date is totally blank, set a reasonable starting date. this works well for anyone under 63, but
+ // you can keep pressing to go back to 1900; just pass the current year. also picked this date because if you
+ // set it to 1959-01-02, it counts up from the launch of Luna-1, the first spacecraft to leave the well.
+ movement_birthdate.bit.year = 1959;
+ movement_birthdate.bit.month = 1;
+ movement_birthdate.bit.day = 1;
+ watch_store_backup_data(movement_birthdate.reg, 2);
+ }
+ }
+}
+
+void day_one_face_activate(movement_settings_t *settings, void *context) {
+ (void) settings;
+ day_one_state_t *state = (day_one_state_t *)context;
+
+ // stash the current year, useful in birthday setting mode.
+ watch_date_time date_time = watch_rtc_get_date_time();
+ state->current_year = date_time.unit.year + WATCH_RTC_REFERENCE_YEAR;
+ // reset the current page to 0, display days alive.
+ state->current_page = 0;
+
+ // fetch the user's birth date from the birthday register.
+ movement_birthdate_t movement_birthdate = (movement_birthdate_t) watch_get_backup_data(2);
+ state->birth_year = movement_birthdate.bit.year;
+ state->birth_month = movement_birthdate.bit.month;
+ state->birth_day = movement_birthdate.bit.day;
+}
+
+bool day_one_face_loop(movement_event_t event, movement_settings_t *settings, void *context) {
+ (void) settings;
+ day_one_state_t *state = (day_one_state_t *)context;
+
+ const uint8_t days_in_month[12] = {31, 29, 31, 30, 31, 30, 30, 31, 30, 31, 30, 31};
+ char buf[6];
+
+ switch (event.event_type) {
+ case EVENT_ACTIVATE:
+ _day_one_face_update(*state);
+ break;
+ case EVENT_LOW_ENERGY_UPDATE:
+ case EVENT_TICK:
+ if (state->current_page != 0) {
+ // if in settings mode, update whatever the current page is
+ switch (state->current_page) {
+ case 1:
+ watch_display_string("YR ", 0);
+ if (event.subsecond % 2) {
+ sprintf(buf, "%4d", state->birth_year);
+ watch_display_string(buf, 4);
+ }
+ break;
+ case 2:
+ watch_display_string("MO ", 0);
+ if (event.subsecond % 2) {
+ sprintf(buf, "%2d", state->birth_month);
+ watch_display_string(buf, 4);
+ }
+ break;
+ case 3:
+ watch_display_string("DA ", 0);
+ if (event.subsecond % 2) {
+ sprintf(buf, "%2d", state->birth_day);
+ watch_display_string(buf, 6);
+ }
+ break;
+ }
+ } else {
+ // otherwise, check if we have to update. the display only needs to change at midnight!
+ watch_date_time date_time = watch_rtc_get_date_time();
+ if (date_time.unit.hour == 0 && date_time.unit.minute == 0 && date_time.unit.second == 0) {
+ _day_one_face_update(*state);
+ }
+ }
+ break;
+ case EVENT_MODE_BUTTON_UP:
+ movement_move_to_next_face();
+ break;
+ case EVENT_LIGHT_BUTTON_DOWN:
+ // only illuminate if we're in display mode
+ if (state->current_page == 0) movement_illuminate_led();
+ break;
+ case EVENT_LIGHT_BUTTON_UP:
+ // otherwise use the light button to advance settings pages.
+ if (state->current_page != 0) {
+ // go to next setting page...
+ state->current_page = (state->current_page + 1) % 4;
+ if (state->current_page == 0) {
+ // ...unless we've been pushed back to display mode.
+ movement_request_tick_frequency(1);
+ // force display since it normally won't update til midnight.
+ _day_one_face_update(*state);
+ }
+ }
+ break;
+ case EVENT_ALARM_BUTTON_UP:
+ // if we are on a settings page, increment whatever value we're setting.
+ if (state->current_page != 0) {
+ state->birthday_changed = true;
+ switch (state->current_page) {
+ case 1:
+ state->birth_year = state->birth_year + 1;
+ if (state->birth_year > state->current_year) state->birth_year = 1900;
+ break;
+ case 2:
+ state->birth_month = (state->birth_month % 12) + 1;
+ break;
+ case 3:
+ state->birth_day = state->birth_day + 1;
+ if (state->birth_day == 0 || state->birth_day > days_in_month[state->birth_month - 1]) {
+ state->birth_day = 1;
+ }
+ break;
+ }
+ }
+ break;
+ case EVENT_ALARM_LONG_PRESS:
+ // if we aren't already in settings mode, put us there.
+ if (state->current_page == 0) {
+ state->current_page++;
+ movement_request_tick_frequency(4);
+ }
+ break;
+ case EVENT_TIMEOUT:
+ // return home if we're on a settings page (this saves our changes when we resign).
+ if (state->current_page != 0) {
+ movement_move_to_face(0);
+ }
+ default:
+ break;
+ }
+
+ return true;
+}
+
+void day_one_face_resign(movement_settings_t *settings, void *context) {
+ (void) settings;
+ day_one_state_t *state = (day_one_state_t *)context;
+
+ movement_request_tick_frequency(1);
+
+ // if the user changed their birth date, store it to the birth date register
+ if (state->birthday_changed) {
+ day_one_state_t *state = (day_one_state_t *)context;
+ movement_birthdate_t movement_birthdate = (movement_birthdate_t) watch_get_backup_data(2);
+ movement_birthdate.bit.year = state->birth_year;
+ movement_birthdate.bit.month = state->birth_month;
+ movement_birthdate.bit.day = state->birth_day;
+ watch_store_backup_data(movement_birthdate.reg, 2);
+ state->birthday_changed = false;
+ }
+}
diff --git a/movement/watch_faces/complications/day_one_face.h b/movement/watch_faces/complications/day_one_face.h
new file mode 100644
index 00000000..06c7816e
--- /dev/null
+++ b/movement/watch_faces/complications/day_one_face.h
@@ -0,0 +1,31 @@
+#ifndef DAY_ONE_FACE_H_
+#define DAY_ONE_FACE_H_
+
+#include "movement.h"
+
+// The Day One face is designed to count upwards from the wearer's date of birth. It also functions as an
+// interface for setting the birth date register, which other watch faces can use for various purposes.
+
+typedef struct {
+ uint8_t current_page;
+ uint16_t current_year;
+ uint16_t birth_year;
+ uint8_t birth_month;
+ uint8_t birth_day;
+ bool birthday_changed;
+} day_one_state_t;
+
+void day_one_face_setup(movement_settings_t *settings, void ** context_ptr);
+void day_one_face_activate(movement_settings_t *settings, void *context);
+bool day_one_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
+void day_one_face_resign(movement_settings_t *settings, void *context);
+
+static const watch_face_t day_one_face = {
+ day_one_face_setup,
+ day_one_face_activate,
+ day_one_face_loop,
+ day_one_face_resign,
+ NULL
+};
+
+#endif // DAY_ONE_FACE_H_
diff --git a/movement/watch_faces/complications/stopwatch_face.c b/movement/watch_faces/complications/stopwatch_face.c
new file mode 100644
index 00000000..d1d1ee73
--- /dev/null
+++ b/movement/watch_faces/complications/stopwatch_face.c
@@ -0,0 +1,76 @@
+#include <stdlib.h>
+#include <string.h>
+#include "stopwatch_face.h"
+#include "watch.h"
+
+void stopwatch_face_setup(movement_settings_t *settings, void ** context_ptr) {
+ (void) settings;
+ if (*context_ptr == NULL) *context_ptr = malloc(sizeof(stopwatch_state_t));
+}
+
+void stopwatch_face_activate(movement_settings_t *settings, void *context) {
+ (void) settings;
+ memset(context, 0, sizeof(stopwatch_state_t));
+}
+
+bool stopwatch_face_loop(movement_event_t event, movement_settings_t *settings, void *context) {
+ (void) settings;
+
+ stopwatch_state_t *stopwatch_state = (stopwatch_state_t *)context;
+ char buf[14];
+
+ switch (event.event_type) {
+ case EVENT_ACTIVATE:
+ watch_set_colon();
+ stopwatch_state->running = false;
+ watch_display_string("st 00000", 0);
+ break;
+ case EVENT_TICK:
+ if (stopwatch_state->running) {
+ stopwatch_state->seconds++;
+ if (stopwatch_state->seconds == 60) {
+ stopwatch_state->minutes++;
+ stopwatch_state->seconds = 0;
+ }
+ if (stopwatch_state->minutes == 60) {
+ stopwatch_state->hours++;
+ stopwatch_state->minutes = 0;
+ }
+ }
+
+ sprintf(buf, "st%2d%02d%02d", stopwatch_state->hours, stopwatch_state->minutes, stopwatch_state->seconds);
+ watch_display_string(buf, 0);
+ break;
+ case EVENT_MODE_BUTTON_UP:
+ movement_move_to_next_face();
+ break;
+ case EVENT_LIGHT_BUTTON_DOWN:
+ movement_illuminate_led();
+ if (!stopwatch_state->running) {
+ stopwatch_state->seconds = 0;
+ stopwatch_state->minutes = 0;
+ stopwatch_state->hours = 0;
+ watch_display_string("st 00000", 0);
+ }
+ break;
+ case EVENT_ALARM_BUTTON_DOWN:
+ stopwatch_state->running = !stopwatch_state->running;
+ break;
+ case EVENT_TIMEOUT:
+ // explicitly ignore the timeout event so we stay on screen
+ break;
+ case EVENT_LOW_ENERGY_UPDATE:
+ stopwatch_state->running = false;
+ watch_set_indicator(WATCH_INDICATOR_BELL);
+ break;
+ default:
+ break;
+ }
+
+ return true;
+}
+
+void stopwatch_face_resign(movement_settings_t *settings, void *context) {
+ (void) settings;
+ (void) context;
+} \ No newline at end of file
diff --git a/movement/watch_faces/complications/stopwatch_face.h b/movement/watch_faces/complications/stopwatch_face.h
new file mode 100644
index 00000000..537c01ce
--- /dev/null
+++ b/movement/watch_faces/complications/stopwatch_face.h
@@ -0,0 +1,26 @@
+#ifndef STOPWATCH_FACE_H_
+#define STOPWATCH_FACE_H_
+
+#include "movement.h"
+
+typedef struct {
+ bool running;
+ uint8_t seconds;
+ uint8_t minutes;
+ uint8_t hours;
+} stopwatch_state_t;
+
+void stopwatch_face_setup(movement_settings_t *settings, void ** context_ptr);
+void stopwatch_face_activate(movement_settings_t *settings, void *context);
+bool stopwatch_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
+void stopwatch_face_resign(movement_settings_t *settings, void *context);
+
+static const watch_face_t stopwatch_face = {
+ stopwatch_face_setup,
+ stopwatch_face_activate,
+ stopwatch_face_loop,
+ stopwatch_face_resign,
+ NULL
+};
+
+#endif // STOPWATCH_FACE_H_ \ No newline at end of file
diff --git a/movement/watch_faces/demos/voltage_face.c b/movement/watch_faces/demos/voltage_face.c
new file mode 100644
index 00000000..98b22c76
--- /dev/null
+++ b/movement/watch_faces/demos/voltage_face.c
@@ -0,0 +1,66 @@
+#include <stdlib.h>
+#include <string.h>
+#include "voltage_face.h"
+#include "watch.h"
+
+void _voltage_face_update_display() {
+ char buf[14];
+ float voltage = (float)watch_get_vcc_voltage() / 1000.0;
+ sprintf(buf, "BA %4.2f V", voltage);
+ // printf("%s\n", buf);
+ watch_display_string(buf, 0);
+}
+
+void voltage_face_setup(movement_settings_t *settings, void ** context_ptr) {
+ (void) settings;
+ (void) context_ptr;
+}
+
+void voltage_face_activate(movement_settings_t *settings, void *context) {
+ (void) settings;
+ (void) context;
+ watch_enable_adc();
+ // if we set the reference voltage here, watch_get_vcc_voltage won't do it over and over
+ watch_set_analog_reference_voltage(ADC_REFERENCE_INTREF);
+}
+
+bool voltage_face_loop(movement_event_t event, movement_settings_t *settings, void *context) {
+ (void) settings;
+ (void) context;
+ watch_date_time date_time;
+ switch (event.event_type) {
+ case EVENT_MODE_BUTTON_UP:
+ movement_move_to_next_face();
+ break;
+ case EVENT_LIGHT_BUTTON_DOWN:
+ movement_illuminate_led();
+ break;
+ case EVENT_ACTIVATE:
+ _voltage_face_update_display();
+ break;
+ case EVENT_TICK:
+ date_time = watch_rtc_get_date_time();
+ if (date_time.unit.second % 5 == 4) {
+ watch_set_indicator(WATCH_INDICATOR_SIGNAL);
+ } else if (date_time.unit.second % 5 == 0) {
+ _voltage_face_update_display();
+ watch_clear_indicator(WATCH_INDICATOR_SIGNAL);
+ }
+ break;
+ case EVENT_TIMEOUT:
+ movement_move_to_face(0);
+ break;
+ default:
+ break;
+ }
+
+ return true;
+}
+
+void voltage_face_resign(movement_settings_t *settings, void *context) {
+ (void) settings;
+ (void) context;
+ // make sure to restore the default in the end.
+ watch_set_analog_reference_voltage(ADC_REFCTRL_REFSEL_INTVCC2_Val);
+ watch_disable_adc();
+}
diff --git a/movement/watch_faces/demos/voltage_face.h b/movement/watch_faces/demos/voltage_face.h
new file mode 100644
index 00000000..da580da5
--- /dev/null
+++ b/movement/watch_faces/demos/voltage_face.h
@@ -0,0 +1,19 @@
+#ifndef VOLTAGE_FACE_H_
+#define VOLTAGE_FACE_H_
+
+#include "movement.h"
+
+void voltage_face_setup(movement_settings_t *settings, void ** context_ptr);
+void voltage_face_activate(movement_settings_t *settings, void *context);
+bool voltage_face_loop(movement_event_t event, movement_settings_t *settings, void *context);
+void voltage_face_resign(movement_settings_t *settings, void *context);
+
+static const watch_face_t voltage_face = {
+ voltage_face_setup,
+ voltage_face_activate,
+ voltage_face_loop,
+ voltage_face_resign,
+ NULL
+};
+
+#endif // VOLTAGE_FACE_H_ \ No newline at end of file
diff --git a/utils/flash_watch_pyruler/bootloader.h b/utils/flash_watch_pyruler/bootloader.h
index d71c7731..d0fc834b 100644
--- a/utils/flash_watch_pyruler/bootloader.h
+++ b/utils/flash_watch_pyruler/bootloader.h
@@ -16,19 +16,19 @@ static const uint8_t binfile[] = {
0x85, 0x02, 0x00, 0x00, 0x85, 0x02, 0x00, 0x00, 0x85, 0x02, 0x00, 0x00,
0x85, 0x02, 0x00, 0x00, 0x85, 0x02, 0x00, 0x00, 0x85, 0x02, 0x00, 0x00,
0x85, 0x02, 0x00, 0x00, 0x85, 0x02, 0x00, 0x00, 0x85, 0x02, 0x00, 0x00,
- 0x07, 0x4b, 0x1a, 0x00, 0x19, 0x7d, 0xc9, 0x07, 0xfc, 0xd5, 0x20, 0x21,
- 0xff, 0x31, 0x19, 0x83, 0x04, 0x49, 0x40, 0x08, 0xd8, 0x61, 0x19, 0x80,
- 0x13, 0x7d, 0xdb, 0x07, 0xfc, 0xd5, 0x70, 0x47, 0x00, 0x40, 0x00, 0x41,
+ 0x07, 0x4b, 0x1a, 0x7d, 0xd2, 0x07, 0xfc, 0xd5, 0x20, 0x22, 0xff, 0x32,
+ 0x1a, 0x83, 0x05, 0x4a, 0x40, 0x08, 0xd8, 0x61, 0x1a, 0x80, 0x1a, 0x7d,
+ 0xd2, 0x07, 0xfc, 0xd5, 0x70, 0x47, 0xc0, 0x46, 0x00, 0x40, 0x00, 0x41,
0x02, 0xa5, 0xff, 0xff, 0x70, 0xb5, 0x80, 0x25, 0x04, 0x00, 0xed, 0x02,
0xac, 0x42, 0x00, 0xd3, 0x70, 0xbd, 0x20, 0x00, 0x01, 0x34, 0xff, 0xf7,
0xe1, 0xff, 0xff, 0x34, 0xf6, 0xe7, 0x00, 0x23, 0x30, 0xb5, 0x9a, 0x42,
0x00, 0xd1, 0x30, 0xbd, 0x9c, 0x00, 0x0d, 0x59, 0x01, 0x33, 0x05, 0x51,
- 0xf7, 0xe7, 0x00, 0x00, 0xf0, 0xb5, 0x80, 0x25, 0x10, 0x4b, 0x11, 0x4e,
- 0x5c, 0x68, 0x11, 0x4f, 0xac, 0x43, 0x5c, 0x60, 0x00, 0x2a, 0x00, 0xd1,
- 0xf0, 0xbd, 0x14, 0x00, 0x10, 0x2a, 0x00, 0xd9, 0x10, 0x24, 0x12, 0x1b,
- 0x1e, 0x80, 0x1d, 0x7d, 0xed, 0x07, 0xfc, 0xd5, 0xa4, 0x00, 0xa4, 0x46,
- 0x00, 0x24, 0x0d, 0x59, 0x05, 0x51, 0x04, 0x34, 0x64, 0x45, 0xfa, 0xd1,
- 0x00, 0x19, 0x09, 0x19, 0x1f, 0x80, 0x1c, 0x7d, 0xe4, 0x07, 0xfc, 0xd5,
+ 0xf7, 0xe7, 0x00, 0x00, 0xf0, 0xb5, 0x80, 0x25, 0x10, 0x4c, 0x11, 0x4e,
+ 0x63, 0x68, 0x11, 0x4f, 0xab, 0x43, 0x63, 0x60, 0x00, 0x2a, 0x00, 0xd1,
+ 0xf0, 0xbd, 0x13, 0x00, 0x10, 0x2a, 0x00, 0xd9, 0x10, 0x23, 0xd2, 0x1a,
+ 0x26, 0x80, 0x25, 0x7d, 0xed, 0x07, 0xfc, 0xd5, 0x9b, 0x00, 0x9c, 0x46,
+ 0x00, 0x23, 0xcd, 0x58, 0xc5, 0x50, 0x04, 0x33, 0x63, 0x45, 0xfa, 0xd1,
+ 0xc0, 0x18, 0xc9, 0x18, 0x27, 0x80, 0x23, 0x7d, 0xdb, 0x07, 0xfc, 0xd5,
0xe4, 0xe7, 0xc0, 0x46, 0x00, 0x40, 0x00, 0x41, 0x44, 0xa5, 0xff, 0xff,
0x04, 0xa5, 0xff, 0xff, 0x80, 0x22, 0x70, 0xb5, 0x00, 0x23, 0x04, 0x00,
0x0d, 0x00, 0x52, 0x00, 0xe9, 0x58, 0xe0, 0x58, 0x81, 0x42, 0x03, 0xd1,
@@ -55,620 +55,616 @@ static const uint8_t binfile[] = {
0x00, 0x14, 0x00, 0x40, 0x20, 0x60, 0x80, 0x00, 0x80, 0xbb, 0x01, 0x04,
0x06, 0x01, 0x01, 0x00, 0x00, 0x08, 0x00, 0x40, 0x00, 0xed, 0x00, 0xe0,
0x10, 0xe0, 0x00, 0xe0, 0xe7, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20,
- 0x10, 0xb5, 0x00, 0xf0, 0xf7, 0xf8, 0x10, 0xbd, 0xfe, 0xe7, 0xfe, 0xe7,
- 0x1e, 0x4a, 0x1f, 0x4b, 0x70, 0xb5, 0x1f, 0x49, 0x9a, 0x42, 0x31, 0xd1,
- 0x00, 0x21, 0x1e, 0x4b, 0x1e, 0x4a, 0x93, 0x42, 0x2f, 0xd3, 0xff, 0x22,
- 0x82, 0x20, 0x1d, 0x4b, 0x03, 0x21, 0x93, 0x43, 0x1c, 0x4a, 0x0c, 0x25,
+ 0x10, 0xb5, 0x00, 0xf0, 0x01, 0xf9, 0x10, 0xbd, 0xfe, 0xe7, 0xfe, 0xe7,
+ 0x23, 0x49, 0x24, 0x48, 0x70, 0xb5, 0x81, 0x42, 0x0a, 0xd0, 0x23, 0x4b,
+ 0xc4, 0x1e, 0x00, 0x22, 0xa3, 0x42, 0x03, 0xd3, 0x03, 0x33, 0x1a, 0x1a,
+ 0x92, 0x08, 0x92, 0x00, 0x01, 0xf0, 0x30, 0xfc, 0x1e, 0x48, 0x1f, 0x4b,
+ 0xc1, 0x1e, 0x00, 0x22, 0x99, 0x42, 0x03, 0xd8, 0x03, 0x33, 0x1a, 0x1a,
+ 0x92, 0x08, 0x92, 0x00, 0x00, 0x21, 0x01, 0xf0, 0x2c, 0xfc, 0xff, 0x22,
+ 0x82, 0x20, 0x19, 0x4b, 0x03, 0x21, 0x93, 0x43, 0x18, 0x4a, 0x0c, 0x25,
0x93, 0x60, 0x02, 0x22, 0x08, 0x24, 0x30, 0x26, 0xc0, 0x05, 0xc3, 0x78,
0x8b, 0x43, 0x13, 0x43, 0xc3, 0x70, 0xc3, 0x78, 0xab, 0x43, 0x23, 0x43,
- 0xc3, 0x70, 0x16, 0x4b, 0x98, 0x7b, 0xb0, 0x43, 0x06, 0x00, 0x20, 0x20,
+ 0xc3, 0x70, 0x12, 0x4b, 0x98, 0x7b, 0xb0, 0x43, 0x06, 0x00, 0x20, 0x20,
0x30, 0x43, 0x98, 0x73, 0x98, 0x7b, 0xa8, 0x43, 0x04, 0x43, 0x9c, 0x73,
- 0x98, 0x7b, 0x88, 0x43, 0x02, 0x43, 0x9a, 0x73, 0x80, 0x23, 0x0f, 0x4a,
- 0x51, 0x68, 0x0b, 0x43, 0x53, 0x60, 0x00, 0xf0, 0x99, 0xfe, 0xfe, 0xe7,
- 0x01, 0xca, 0x01, 0xc3, 0x8b, 0x42, 0xfb, 0xd3, 0xca, 0xe7, 0x02, 0xc3,
- 0xcb, 0xe7, 0xc0, 0x46, 0x6c, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20,
- 0xd0, 0x01, 0x00, 0x20, 0xd0, 0x01, 0x00, 0x20, 0xdc, 0x0d, 0x00, 0x20,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x00, 0xe0, 0x00, 0x80, 0x00, 0x41,
- 0x00, 0x40, 0x00, 0x41, 0xf7, 0xb5, 0x13, 0x4d, 0x01, 0x90, 0x6b, 0x88,
- 0x00, 0x2b, 0x18, 0xd1, 0x08, 0x27, 0x38, 0x00, 0x1a, 0x02, 0x92, 0xb2,
- 0x14, 0xb2, 0xa4, 0x46, 0x66, 0x46, 0x54, 0x00, 0xa2, 0xb2, 0x00, 0x2e,
- 0x02, 0xda, 0x0c, 0x4a, 0x54, 0x40, 0xa2, 0xb2, 0x01, 0x38, 0x80, 0xb2,
- 0x00, 0x28, 0xf1, 0xd1, 0x58, 0x00, 0x2a, 0x52, 0x80, 0x22, 0x01, 0x33,
- 0x52, 0x00, 0x93, 0x42, 0xe7, 0xd1, 0x01, 0x9a, 0x0b, 0x0a, 0x53, 0x40,
- 0x5b, 0x00, 0xe8, 0x5a, 0x09, 0x02, 0x48, 0x40, 0x80, 0xb2, 0xfe, 0xbd,
- 0xd0, 0x01, 0x00, 0x20, 0x21, 0x10, 0x00, 0x00, 0x07, 0x4b, 0x1b, 0x68,
- 0x58, 0x43, 0x07, 0x4b, 0x1a, 0x78, 0x95, 0x23, 0x00, 0x2a, 0x00, 0xd1,
- 0x12, 0x33, 0x01, 0x22, 0x43, 0x43, 0x9a, 0x42, 0x00, 0xd3, 0x70, 0x47,
- 0x01, 0x32, 0xfa, 0xe7, 0x00, 0x00, 0x00, 0x20, 0xd0, 0x03, 0x00, 0x20,
- 0x70, 0xb5, 0x05, 0x00, 0x1c, 0x24, 0x00, 0x20, 0x0f, 0x26, 0x0b, 0x00,
- 0xe3, 0x40, 0x33, 0x40, 0x00, 0x2a, 0x09, 0xd1, 0x00, 0x2b, 0x07, 0xd1,
- 0x00, 0x2c, 0x0b, 0xd0, 0x00, 0x28, 0x09, 0xd1, 0x04, 0x3c, 0x23, 0x1d,
- 0xf1, 0xd1, 0x70, 0xbd, 0x09, 0x2b, 0x03, 0xdd, 0x37, 0x33, 0x2b, 0x54,
- 0x01, 0x30, 0xf5, 0xe7, 0x30, 0x33, 0xfa, 0xe7, 0x05, 0x4b, 0x06, 0x4a,
- 0x1a, 0x60, 0xbf, 0xf3, 0x4f, 0x8f, 0x05, 0x4b, 0x05, 0x4a, 0xda, 0x60,
- 0xbf, 0xf3, 0x4f, 0x8f, 0xfe, 0xe7, 0xc0, 0x46, 0xfc, 0x7f, 0x00, 0x20,
- 0xef, 0x69, 0x26, 0xf0, 0x00, 0xed, 0x00, 0xe0, 0x04, 0x00, 0xfa, 0x05,
- 0x10, 0xb5, 0x0b, 0x4a, 0x13, 0x68, 0x00, 0x2b, 0x0e, 0xd1, 0x0a, 0x49,
- 0x11, 0x60, 0x0a, 0x49, 0x0a, 0x68, 0x01, 0x32, 0x0a, 0x60, 0x09, 0x49,
- 0x08, 0x68, 0x00, 0x28, 0x06, 0xd0, 0x82, 0x42, 0x04, 0xd3, 0x0b, 0x60,
- 0xff, 0xf7, 0xd8, 0xff, 0x01, 0x3b, 0x13, 0x60, 0x10, 0xbd, 0xc0, 0x46,
- 0xdc, 0x03, 0x00, 0x20, 0xdc, 0x05, 0x00, 0x00, 0x08, 0x0a, 0x00, 0x20,
- 0x0c, 0x0a, 0x00, 0x20, 0x05, 0x4b, 0x06, 0x4a, 0x1a, 0x60, 0xbf, 0xf3,
+ 0x98, 0x7b, 0x88, 0x43, 0x02, 0x43, 0x9a, 0x73, 0x80, 0x23, 0x0b, 0x4a,
+ 0x51, 0x68, 0x0b, 0x43, 0x53, 0x60, 0x00, 0xf0, 0x77, 0xfe, 0xfe, 0xe7,
+ 0x38, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0xd0, 0x01, 0x00, 0x20,
+ 0xd0, 0x01, 0x00, 0x20, 0xdc, 0x0d, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0xed, 0x00, 0xe0, 0x00, 0x80, 0x00, 0x41, 0x00, 0x40, 0x00, 0x41,
+ 0xf7, 0xb5, 0x13, 0x4d, 0x01, 0x90, 0x6b, 0x88, 0x00, 0x2b, 0x18, 0xd1,
+ 0x08, 0x27, 0x38, 0x00, 0x1a, 0x02, 0x92, 0xb2, 0x14, 0xb2, 0xa4, 0x46,
+ 0x66, 0x46, 0x54, 0x00, 0xa2, 0xb2, 0x00, 0x2e, 0x02, 0xda, 0x0c, 0x4a,
+ 0x54, 0x40, 0xa2, 0xb2, 0x01, 0x38, 0x80, 0xb2, 0x00, 0x28, 0xf1, 0xd1,
+ 0x58, 0x00, 0x2a, 0x52, 0x80, 0x22, 0x01, 0x33, 0x52, 0x00, 0x93, 0x42,
+ 0xe7, 0xd1, 0x01, 0x9a, 0x0b, 0x0a, 0x53, 0x40, 0x58, 0x00, 0x28, 0x5a,
+ 0x09, 0x02, 0x48, 0x40, 0x80, 0xb2, 0xfe, 0xbd, 0xd0, 0x01, 0x00, 0x20,
+ 0x21, 0x10, 0x00, 0x00, 0x07, 0x4b, 0x1b, 0x68, 0x58, 0x43, 0x07, 0x4b,
+ 0x1a, 0x78, 0x95, 0x23, 0x00, 0x2a, 0x00, 0xd1, 0x12, 0x33, 0x01, 0x22,
+ 0x43, 0x43, 0x9a, 0x42, 0x00, 0xd3, 0x70, 0x47, 0x01, 0x32, 0xfa, 0xe7,
+ 0x00, 0x00, 0x00, 0x20, 0xd0, 0x03, 0x00, 0x20, 0x70, 0xb5, 0x05, 0x00,
+ 0x1c, 0x24, 0x00, 0x20, 0x0f, 0x26, 0x0b, 0x00, 0xe3, 0x40, 0x33, 0x40,
+ 0x00, 0x2a, 0x09, 0xd1, 0x00, 0x2b, 0x07, 0xd1, 0x00, 0x2c, 0x0b, 0xd0,
+ 0x00, 0x28, 0x09, 0xd1, 0x04, 0x3c, 0x23, 0x1d, 0xf1, 0xd1, 0x70, 0xbd,
+ 0x09, 0x2b, 0x03, 0xdd, 0x37, 0x33, 0x2b, 0x54, 0x01, 0x30, 0xf5, 0xe7,
+ 0x30, 0x33, 0xfa, 0xe7, 0x05, 0x4b, 0x06, 0x4a, 0x1a, 0x60, 0xbf, 0xf3,
0x4f, 0x8f, 0x05, 0x4b, 0x05, 0x4a, 0xda, 0x60, 0xbf, 0xf3, 0x4f, 0x8f,
- 0xfe, 0xe7, 0xc0, 0x46, 0xfc, 0x7f, 0x00, 0x20, 0xef, 0x69, 0x16, 0xf0,
- 0x00, 0xed, 0x00, 0xe0, 0x04, 0x00, 0xfa, 0x05, 0x01, 0x22, 0x10, 0xb5,
- 0x19, 0x4b, 0x1a, 0x49, 0x1a, 0x70, 0x1a, 0x4a, 0x13, 0x68, 0x01, 0x33,
- 0x13, 0x60, 0x0a, 0x68, 0x00, 0x2a, 0x0c, 0xd0, 0x17, 0x48, 0x10, 0x18,
- 0x83, 0x42, 0x03, 0xd1, 0x80, 0x24, 0x16, 0x48, 0x64, 0x03, 0x84, 0x61,
- 0x93, 0x42, 0x01, 0xd1, 0x00, 0x23, 0x0b, 0x60, 0x10, 0xbd, 0x13, 0x48,
- 0xdb, 0xb2, 0x02, 0x78, 0x00, 0x2b, 0x10, 0xd1, 0x80, 0x21, 0x0f, 0x4b,
- 0x49, 0x03, 0x99, 0x61, 0x11, 0x00, 0x0a, 0x39, 0xc9, 0xb2, 0x0e, 0x4b,
- 0xf0, 0x29, 0x02, 0xd9, 0x19, 0x78, 0x49, 0x42, 0x19, 0x70, 0x1b, 0x78,
- 0xd2, 0x18, 0x02, 0x70, 0xe8, 0xe7, 0x93, 0x42, 0xe6, 0xd1, 0x80, 0x22,
- 0x05, 0x4b, 0x52, 0x03, 0x5a, 0x61, 0xe1, 0xe7, 0xd0, 0x03, 0x00, 0x20,
- 0xd8, 0x03, 0x00, 0x20, 0xd4, 0x03, 0x00, 0x20, 0x18, 0xfc, 0xff, 0xff,
- 0x00, 0x60, 0x00, 0x41, 0x05, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x20,
- 0x07, 0x4b, 0x08, 0x4a, 0x1b, 0x68, 0x11, 0x68, 0x99, 0x42, 0x07, 0xd2,
- 0xfa, 0x21, 0xc9, 0x00, 0x5b, 0x18, 0x13, 0x60, 0x80, 0x22, 0x04, 0x4b,
- 0x52, 0x03, 0x5a, 0x61, 0x70, 0x47, 0xc0, 0x46, 0xd4, 0x03, 0x00, 0x20,
- 0xd8, 0x03, 0x00, 0x20, 0x00, 0x60, 0x00, 0x41, 0x80, 0x22, 0x02, 0x4b,
- 0x52, 0x03, 0x9a, 0x60, 0x9a, 0x61, 0x70, 0x47, 0x00, 0x60, 0x00, 0x41,
- 0x70, 0x47, 0x00, 0x00, 0x01, 0x22, 0x70, 0xb5, 0x0f, 0x24, 0x3a, 0x49,
- 0x0b, 0x78, 0x13, 0x43, 0x0b, 0x70, 0x39, 0x4b, 0x18, 0x78, 0xa0, 0x43,
- 0x18, 0x70, 0x06, 0x20, 0x19, 0x78, 0x08, 0x43, 0x36, 0x49, 0x18, 0x70,
- 0x08, 0x78, 0x10, 0x43, 0x08, 0x70, 0x19, 0x78, 0x21, 0x40, 0x19, 0x70,
- 0x60, 0x21, 0x18, 0x78, 0x01, 0x43, 0x19, 0x70, 0x40, 0x21, 0x31, 0x4b,
- 0x19, 0x60, 0x31, 0x4b, 0x30, 0x39, 0x18, 0x69, 0x01, 0x43, 0x19, 0x61,
- 0x99, 0x69, 0x0a, 0x43, 0x9a, 0x61, 0x2e, 0x4a, 0x53, 0x68, 0x5b, 0x07,
- 0xfc, 0xd4, 0x82, 0x23, 0x01, 0x22, 0xdb, 0x05, 0x19, 0x78, 0x0a, 0x43,
- 0x1a, 0x70, 0x9a, 0x78, 0xd2, 0x07, 0xfc, 0xd4, 0x1f, 0x20, 0x28, 0x49,
- 0x0b, 0x68, 0x5b, 0x0b, 0x03, 0x40, 0x83, 0x42, 0x00, 0xd1, 0x05, 0x23,
- 0x82, 0x22, 0xd2, 0x05, 0x14, 0x8d, 0x24, 0x4d, 0x03, 0x40, 0x9b, 0x01,
- 0x2c, 0x40, 0x23, 0x43, 0x13, 0x85, 0x0b, 0x68, 0x9b, 0x0c, 0x03, 0x40,
- 0x1f, 0x2b, 0x00, 0xd1, 0x02, 0x3b, 0x1f, 0x24, 0x10, 0x8d, 0x23, 0x40,
- 0xa0, 0x43, 0x03, 0x43, 0x07, 0x20, 0x13, 0x85, 0x0a, 0x68, 0xd2, 0x0d,
- 0x02, 0x40, 0x82, 0x42, 0x00, 0xd1, 0x03, 0x22, 0x82, 0x23, 0xdb, 0x05,
- 0x19, 0x8d, 0x02, 0x40, 0x16, 0x48, 0x12, 0x03, 0x01, 0x40, 0x0a, 0x43,
- 0x7f, 0x21, 0x1a, 0x85, 0x1a, 0x78, 0x14, 0x48, 0x0a, 0x40, 0x1a, 0x70,
- 0x04, 0x22, 0x19, 0x78, 0x0a, 0x43, 0x0c, 0x21, 0x1a, 0x70, 0x58, 0x62,
- 0x1a, 0x89, 0x8a, 0x43, 0x1a, 0x81, 0x1a, 0x89, 0x0b, 0x39, 0x8a, 0x43,
- 0x1a, 0x81, 0x80, 0x22, 0x00, 0x21, 0x52, 0x00, 0x01, 0xf0, 0x95, 0xfa,
- 0x70, 0xbd, 0xc0, 0x46, 0x58, 0x60, 0x00, 0x41, 0x3c, 0x60, 0x00, 0x41,
- 0x59, 0x60, 0x00, 0x41, 0x98, 0x1c, 0x00, 0x40, 0x00, 0x08, 0x00, 0x40,
- 0x00, 0x1c, 0x00, 0x40, 0x20, 0x60, 0x80, 0x00, 0x3f, 0xf8, 0xff, 0xff,
- 0xff, 0x8f, 0xff, 0xff, 0x54, 0x0a, 0x00, 0x20, 0xf7, 0xb5, 0x1c, 0x00,
- 0x82, 0x23, 0xdb, 0x05, 0x5b, 0x6a, 0x06, 0x00, 0x0f, 0x00, 0x15, 0x00,
- 0x01, 0x93, 0x00, 0x2c, 0x05, 0xd1, 0x44, 0x34, 0x54, 0x43, 0x2d, 0x4b,
- 0xe4, 0x18, 0xff, 0xf7, 0xcb, 0xfe, 0x63, 0x78, 0x22, 0x78, 0x93, 0x42,
- 0x10, 0xd2, 0xd5, 0x1a, 0xbd, 0x42, 0x00, 0xd9, 0x3d, 0x00, 0x00, 0x2e,
- 0x08, 0xd0, 0x21, 0x1d, 0xc9, 0x18, 0x2a, 0x00, 0x30, 0x00, 0x01, 0xf0,
- 0x55, 0xfa, 0x63, 0x78, 0x5b, 0x19, 0x63, 0x70, 0x28, 0x00, 0xfe, 0xbd,
- 0x01, 0x9b, 0xa1, 0x78, 0x6a, 0x01, 0xd3, 0x18, 0x00, 0x29, 0x11, 0xd1,
- 0x21, 0x1d, 0x19, 0x60, 0x59, 0x68, 0x1d, 0x48, 0x89, 0x0b, 0x89, 0x03,
- 0x59, 0x60, 0x59, 0x68, 0x01, 0x40, 0x59, 0x60, 0x1a, 0x49, 0x55, 0x18,
- 0x40, 0x21, 0x28, 0x79, 0x01, 0x43, 0x29, 0x71, 0x01, 0x21, 0xa1, 0x70,
- 0x82, 0x21, 0xc9, 0x05, 0x51, 0x18, 0x01, 0x91, 0x15, 0x49, 0x00, 0x25,
- 0x52, 0x18, 0x12, 0x7a, 0xd2, 0x07, 0xdb, 0xd5, 0x5d, 0x68, 0xa2, 0x78,
- 0xed, 0xb2, 0x25, 0x70, 0x02, 0x2a, 0x04, 0xd1, 0x2a, 0x00, 0x19, 0x68,
- 0x20, 0x1d, 0x01, 0xf0, 0x23, 0xfa, 0xbd, 0x42, 0x00, 0xd9, 0x3d, 0x00,
- 0x00, 0x2e, 0x0c, 0xd0, 0x2a, 0x00, 0x30, 0x00, 0x65, 0x70, 0x21, 0x1d,
- 0x01, 0xf0, 0x18, 0xfa, 0x01, 0x22, 0x01, 0x9b, 0xff, 0x33, 0x1a, 0x72,
- 0x00, 0x23, 0xa3, 0x70, 0xbe, 0xe7, 0x66, 0x70, 0xf6, 0xe7, 0xc0, 0x46,
- 0x54, 0x0b, 0x00, 0x20, 0xff, 0x3f, 0x00, 0xf0, 0x00, 0x01, 0x00, 0x41,
- 0xff, 0x00, 0x00, 0x41, 0x10, 0xb5, 0x00, 0x23, 0xff, 0xf7, 0x8c, 0xff,
- 0x10, 0xbd, 0xf8, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0x16, 0x00, 0x1f, 0x00,
- 0x00, 0x2c, 0x00, 0xd1, 0xf8, 0xbd, 0x21, 0x00, 0x28, 0x00, 0x3b, 0x00,
- 0x32, 0x00, 0xff, 0xf7, 0x7d, 0xff, 0x24, 0x1a, 0x2d, 0x18, 0xf3, 0xe7,
- 0xf8, 0xb5, 0x0d, 0x00, 0x82, 0x21, 0xc9, 0x05, 0x4c, 0x6a, 0x56, 0x01,
- 0x34, 0x19, 0x00, 0x2b, 0x1b, 0xd0, 0x63, 0x69, 0x5b, 0x00, 0x5b, 0x08,
- 0x63, 0x61, 0x20, 0x61, 0x63, 0x69, 0xaa, 0x04, 0x9b, 0x0b, 0x92, 0x0c,
- 0x9b, 0x03, 0x13, 0x43, 0x63, 0x61, 0x63, 0x69, 0x16, 0x4a, 0x17, 0x48,
- 0x13, 0x40, 0x63, 0x61, 0x32, 0x18, 0x02, 0x23, 0x80, 0x21, 0x16, 0x00,
- 0x13, 0x72, 0x91, 0x71, 0x32, 0x7a, 0x1a, 0x42, 0xfc, 0xd0, 0x28, 0x00,
- 0xf8, 0xbd, 0x01, 0x21, 0x63, 0x69, 0x5b, 0x00, 0x5b, 0x0f, 0x03, 0x33,
- 0x99, 0x40, 0xa9, 0x42, 0x09, 0xd8, 0x13, 0x1f, 0x5a, 0x1e, 0x93, 0x41,
- 0x62, 0x69, 0xdb, 0x07, 0x52, 0x00, 0x52, 0x08, 0x1a, 0x43, 0x62, 0x61,
- 0xd5, 0xe7, 0x44, 0x27, 0x57, 0x43, 0x07, 0x4a, 0x04, 0x37, 0xbf, 0x18,
- 0x01, 0x00, 0x2a, 0x00, 0x38, 0x00, 0x01, 0xf0, 0xaf, 0xf9, 0x38, 0x00,
- 0xc9, 0xe7, 0xc0, 0x46, 0xff, 0x3f, 0x00, 0xf0, 0xff, 0x00, 0x00, 0x41,
- 0x54, 0x0b, 0x00, 0x20, 0x10, 0xb5, 0x00, 0x23, 0xff, 0xf7, 0xb2, 0xff,
- 0x10, 0xbd, 0x00, 0x00, 0x10, 0xb5, 0x05, 0x4a, 0x0b, 0x00, 0x11, 0x88,
- 0x99, 0x42, 0x00, 0xd9, 0x19, 0x00, 0x00, 0x22, 0xff, 0xf7, 0xf0, 0xff,
- 0x10, 0xbd, 0xc0, 0x46, 0x02, 0x04, 0x00, 0x20, 0x07, 0xb5, 0x00, 0x22,
- 0x6b, 0x46, 0x11, 0x00, 0xd8, 0x1d, 0xff, 0xf7, 0xe5, 0xff, 0x07, 0xbd,
- 0xf0, 0xb5, 0x82, 0x24, 0x9d, 0xb0, 0xe4, 0x05, 0xff, 0xf7, 0xea, 0xfd,
- 0xa3, 0x8b, 0x08, 0x21, 0x1a, 0x00, 0x0a, 0x40, 0xbc, 0x4e, 0x05, 0x92,
- 0x0b, 0x42, 0x2d, 0xd0, 0x80, 0x23, 0x11, 0x22, 0xc0, 0x20, 0xa1, 0x83,
- 0x38, 0x31, 0xa3, 0x72, 0x72, 0x70, 0xb1, 0x71, 0x73, 0x71, 0xb7, 0x4b,
- 0xb7, 0x4c, 0x5a, 0x68, 0x80, 0x05, 0x22, 0x40, 0x02, 0x43, 0x5a, 0x60,
- 0x5a, 0x69, 0x22, 0x40, 0x10, 0x43, 0xb4, 0x4a, 0x58, 0x61, 0x1a, 0x60,
- 0xb3, 0x4a, 0xb4, 0x48, 0x1a, 0x61, 0x5a, 0x68, 0x10, 0x40, 0x80, 0x22,
- 0x92, 0x02, 0x02, 0x43, 0x5a, 0x60, 0x5a, 0x68, 0x92, 0x0b, 0x92, 0x03,
- 0x5a, 0x60, 0x00, 0x22, 0xae, 0x4b, 0x71, 0x71, 0x1a, 0x70, 0xad, 0x4b,
- 0x18, 0x78, 0x43, 0x1e, 0x98, 0x41, 0xc0, 0xb2, 0x1d, 0xb0, 0xf0, 0xbd,
- 0x10, 0x22, 0x33, 0x7a, 0x94, 0x46, 0x13, 0x42, 0xf3, 0xd0, 0x32, 0x72,
- 0xa7, 0x4a, 0xa7, 0x4d, 0x92, 0x79, 0xa6, 0x4b, 0x02, 0x92, 0xa5, 0x4a,
- 0x02, 0x98, 0xd7, 0x79, 0x9b, 0x88, 0x3a, 0x02, 0x02, 0x43, 0x01, 0x92,
- 0x10, 0xb2, 0xa1, 0x4a, 0x04, 0x90, 0xa0, 0x48, 0x52, 0x7a, 0x00, 0x7a,
- 0x12, 0x02, 0x02, 0x43, 0x10, 0xb2, 0x03, 0x90, 0x9c, 0x48, 0xad, 0x7a,
- 0xc0, 0x7a, 0x00, 0x02, 0x28, 0x43, 0x9b, 0x4d, 0x28, 0x80, 0x40, 0x25,
- 0x9a, 0x48, 0x75, 0x71, 0x83, 0x42, 0x00, 0xd1, 0xb5, 0xe1, 0x36, 0xdc,
- 0x81, 0x20, 0x40, 0x00, 0x83, 0x42, 0x00, 0xd1, 0xca, 0xe1, 0x15, 0xdc,
- 0x82, 0x2b, 0x00, 0xd1, 0x92, 0xe1, 0x06, 0xdc, 0x80, 0x3b, 0x01, 0x2b,
- 0x00, 0xd8, 0x88, 0xe1, 0x20, 0x23, 0xb3, 0x71, 0xbd, 0xe7, 0x80, 0x22,
- 0x52, 0x00, 0x93, 0x42, 0xf8, 0xd0, 0x02, 0x22, 0xff, 0x32, 0x93, 0x42,
- 0xf4, 0xd1, 0xff, 0xf7, 0x77, 0xff, 0xb2, 0xe7, 0xb0, 0x21, 0x89, 0x00,
- 0x8b, 0x42, 0x00, 0xd1, 0x6f, 0xe1, 0x0e, 0xdc, 0xe0, 0x22, 0x52, 0x00,
- 0x93, 0x42, 0xe7, 0xd0, 0xa2, 0x3b, 0x85, 0x4a, 0xff, 0x3b, 0x13, 0x42,
- 0xe2, 0xd1, 0x00, 0x23, 0x08, 0x21, 0x0a, 0x93, 0x0b, 0x93, 0x0a, 0xa8,
- 0xc9, 0xe0, 0xc0, 0x22, 0x92, 0x00, 0x93, 0x42, 0xd8, 0xd0, 0x7f, 0x4a,
- 0xdf, 0xe7, 0x7f, 0x4a, 0x93, 0x42, 0xde, 0xd0, 0x00, 0xdd, 0x9a, 0xe0,
- 0x7d, 0x4a, 0x93, 0x42, 0x15, 0xdc, 0x01, 0x3a, 0x93, 0x42, 0x00, 0xdb,
- 0xb0, 0xe0, 0x7b, 0x4a, 0x93, 0x42, 0xe4, 0xd0, 0x60, 0x32, 0xff, 0x32,
- 0x93, 0x42, 0xc3, 0xd1, 0xff, 0xf7, 0x46, 0xff, 0x80, 0x23, 0x04, 0x9a,
- 0x5b, 0x42, 0x13, 0x43, 0x82, 0x22, 0xdb, 0xb2, 0xd2, 0x05, 0x93, 0x72,
- 0x79, 0xe7, 0x88, 0x22, 0x69, 0x48, 0x12, 0x01, 0x93, 0x42, 0x00, 0xd1,
- 0x96, 0xe0, 0x80, 0x32, 0x93, 0x42, 0xaf, 0xd1, 0x04, 0x9b, 0x30, 0x27,
- 0x03, 0x70, 0xff, 0xf7, 0x2f, 0xff, 0xa0, 0x23, 0x03, 0x22, 0x5b, 0x00,
- 0xe2, 0x54, 0xc0, 0x22, 0x5b, 0x4b, 0x5c, 0x49, 0x58, 0x6c, 0x92, 0x05,
- 0x08, 0x40, 0x10, 0x43, 0x58, 0x64, 0x46, 0x20, 0xff, 0x30, 0x25, 0x54,
- 0x64, 0x48, 0x80, 0x26, 0x18, 0x64, 0x90, 0x20, 0x40, 0x00, 0x27, 0x54,
- 0x58, 0x6b, 0x08, 0x40, 0x10, 0x43, 0x58, 0x63, 0x92, 0x20, 0x40, 0x00,
- 0x26, 0x54, 0x5f, 0x48, 0x18, 0x63, 0xb0, 0x20, 0x40, 0x00, 0x25, 0x54,
- 0x58, 0x6f, 0x08, 0x40, 0x58, 0x67, 0xb2, 0x20, 0x40, 0x00, 0x26, 0x54,
- 0x3c, 0x30, 0x7d, 0x3e, 0x26, 0x54, 0xfc, 0x38, 0x84, 0x46, 0x9c, 0x44,
- 0x60, 0x46, 0x06, 0x68, 0x0e, 0x40, 0x16, 0x43, 0x06, 0x60, 0xa6, 0x26,
- 0xff, 0x36, 0xa5, 0x55, 0x1e, 0x00, 0x53, 0x48, 0xa0, 0x36, 0x30, 0x60,
- 0xc0, 0x26, 0x76, 0x00, 0xa7, 0x55, 0x1f, 0x00, 0x94, 0x37, 0x3e, 0x68,
- 0x80, 0x20, 0x0e, 0x40, 0x16, 0x43, 0x3e, 0x60, 0xc2, 0x26, 0x76, 0x00,
- 0xa0, 0x55, 0x1e, 0x00, 0x4b, 0x4f, 0x90, 0x36, 0x37, 0x60, 0xe0, 0x26,
- 0x44, 0x27, 0x76, 0x00, 0xa7, 0x55, 0x04, 0x36, 0xa5, 0x55, 0xa0, 0x55,
- 0xc0, 0x19, 0x84, 0x46, 0x9c, 0x44, 0x60, 0x46, 0x06, 0x68, 0x0e, 0x40,
- 0x16, 0x43, 0x06, 0x60, 0xd4, 0x20, 0x84, 0x46, 0x9c, 0x44, 0x60, 0x46,
- 0x06, 0x68, 0x0e, 0x40, 0x16, 0x43, 0x06, 0x60, 0xf0, 0x26, 0x80, 0x20,
- 0x76, 0x00, 0xa7, 0x55, 0x04, 0x36, 0xa5, 0x55, 0xa0, 0x55, 0x1c, 0x00,
- 0xe4, 0x34, 0x20, 0x68, 0xf4, 0x33, 0x08, 0x40, 0x10, 0x43, 0x20, 0x60,
- 0x18, 0x68, 0x01, 0x40, 0x0a, 0x43, 0x1a, 0x60, 0xf7, 0xe6, 0x36, 0x4a,
- 0x93, 0x42, 0x00, 0xd1, 0x2d, 0xe1, 0x0a, 0xdc, 0x34, 0x4a, 0x93, 0x42,
- 0x00, 0xd1, 0x38, 0xe7, 0x33, 0x4a, 0x34, 0x49, 0x13, 0x40, 0x8b, 0x42,
- 0x00, 0xd1, 0x32, 0xe7, 0x26, 0xe7, 0x32, 0x4a, 0x93, 0x42, 0x00, 0xd1,
- 0x2d, 0xe7, 0x31, 0x4a, 0x93, 0x42, 0x00, 0xd0, 0x1e, 0xe7, 0x00, 0x23,
- 0x0a, 0xa8, 0x03, 0x80, 0x01, 0x21, 0x06, 0xe0, 0x80, 0x23, 0x01, 0x9a,
- 0x5b, 0x00, 0x9a, 0x42, 0x04, 0xd1, 0x12, 0x21, 0x2a, 0x48, 0xff, 0xf7,
- 0x87, 0xfe, 0xd0, 0xe6, 0x80, 0x23, 0x01, 0x9a, 0x9b, 0x00, 0x9a, 0x42,
- 0x02, 0xd1, 0x99, 0x21, 0x26, 0x48, 0xf4, 0xe7, 0x03, 0x2f, 0x78, 0xd1,
- 0x02, 0x9b, 0x03, 0x2b, 0x00, 0xd9, 0x01, 0xe7, 0x0a, 0xac, 0x48, 0x22,
- 0x00, 0x21, 0x20, 0x00, 0x01, 0xf0, 0x1b, 0xf8, 0x02, 0x9b, 0x67, 0x70,
- 0x00, 0x2b, 0x3f, 0xd1, 0x04, 0x33, 0x23, 0x70, 0x1d, 0x4b, 0x63, 0x80,
- 0x20, 0x00, 0x21, 0x78, 0xdd, 0xe7, 0xc0, 0x46, 0xff, 0x00, 0x00, 0x41,
- 0x54, 0x0a, 0x00, 0x20, 0xff, 0xff, 0xff, 0x8f, 0x14, 0x0a, 0x00, 0x20,
- 0x58, 0x0b, 0x00, 0x20, 0xff, 0x3f, 0x00, 0xf0, 0xe0, 0x03, 0x00, 0x20,
- 0x10, 0x0a, 0x00, 0x20, 0x02, 0x04, 0x00, 0x20, 0x02, 0x03, 0x00, 0x00,
+ 0xfe, 0xe7, 0xc0, 0x46, 0xfc, 0x7f, 0x00, 0x20, 0xef, 0x69, 0x26, 0xf0,
+ 0x00, 0xed, 0x00, 0xe0, 0x04, 0x00, 0xfa, 0x05, 0x10, 0xb5, 0x0b, 0x4a,
+ 0x13, 0x68, 0x00, 0x2b, 0x0e, 0xd1, 0x0a, 0x49, 0x11, 0x60, 0x0a, 0x49,
+ 0x0a, 0x68, 0x01, 0x32, 0x0a, 0x60, 0x09, 0x49, 0x08, 0x68, 0x00, 0x28,
+ 0x06, 0xd0, 0x82, 0x42, 0x04, 0xd3, 0x0b, 0x60, 0xff, 0xf7, 0xd8, 0xff,
+ 0x01, 0x3b, 0x13, 0x60, 0x10, 0xbd, 0xc0, 0x46, 0xe4, 0x03, 0x00, 0x20,
+ 0xdc, 0x05, 0x00, 0x00, 0xe0, 0x03, 0x00, 0x20, 0xd8, 0x03, 0x00, 0x20,
+ 0x05, 0x4b, 0x06, 0x4a, 0x1a, 0x60, 0xbf, 0xf3, 0x4f, 0x8f, 0x05, 0x4b,
+ 0x05, 0x4a, 0xda, 0x60, 0xbf, 0xf3, 0x4f, 0x8f, 0xfe, 0xe7, 0xc0, 0x46,
+ 0xfc, 0x7f, 0x00, 0x20, 0xef, 0x69, 0x16, 0xf0, 0x00, 0xed, 0x00, 0xe0,
+ 0x04, 0x00, 0xfa, 0x05, 0x01, 0x22, 0x10, 0xb5, 0x19, 0x4b, 0x1a, 0x49,
+ 0x1a, 0x70, 0x1a, 0x4a, 0x13, 0x68, 0x01, 0x33, 0x13, 0x60, 0x0a, 0x68,
+ 0x00, 0x2a, 0x0c, 0xd0, 0x17, 0x48, 0x10, 0x18, 0x83, 0x42, 0x03, 0xd1,
+ 0x80, 0x24, 0x16, 0x48, 0x64, 0x03, 0x84, 0x61, 0x93, 0x42, 0x01, 0xd1,
+ 0x00, 0x23, 0x0b, 0x60, 0x10, 0xbd, 0x13, 0x48, 0xdb, 0xb2, 0x02, 0x78,
+ 0x00, 0x2b, 0x10, 0xd1, 0x80, 0x21, 0x0f, 0x4b, 0x49, 0x03, 0x99, 0x61,
+ 0x11, 0x00, 0x0a, 0x39, 0xc9, 0xb2, 0x0e, 0x4b, 0xf0, 0x29, 0x02, 0xd9,
+ 0x19, 0x78, 0x49, 0x42, 0x19, 0x70, 0x1b, 0x78, 0xd2, 0x18, 0x02, 0x70,
+ 0xe8, 0xe7, 0x93, 0x42, 0xe6, 0xd1, 0x80, 0x22, 0x05, 0x4b, 0x52, 0x03,
+ 0x5a, 0x61, 0xe1, 0xe7, 0xd0, 0x03, 0x00, 0x20, 0xdc, 0x03, 0x00, 0x20,
+ 0xd4, 0x03, 0x00, 0x20, 0x18, 0xfc, 0xff, 0xff, 0x00, 0x60, 0x00, 0x41,
+ 0x05, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x20, 0x07, 0x4b, 0x08, 0x4a,
+ 0x1b, 0x68, 0x11, 0x68, 0x99, 0x42, 0x07, 0xd2, 0xfa, 0x21, 0xc9, 0x00,
+ 0x5b, 0x18, 0x13, 0x60, 0x80, 0x22, 0x04, 0x4b, 0x52, 0x03, 0x5a, 0x61,
+ 0x70, 0x47, 0xc0, 0x46, 0xd4, 0x03, 0x00, 0x20, 0xdc, 0x03, 0x00, 0x20,
+ 0x00, 0x60, 0x00, 0x41, 0x80, 0x22, 0x02, 0x4b, 0x52, 0x03, 0x9a, 0x60,
+ 0x9a, 0x61, 0x70, 0x47, 0x00, 0x60, 0x00, 0x41, 0x70, 0x47, 0x00, 0x00,
+ 0x01, 0x22, 0x70, 0xb5, 0x0f, 0x24, 0x3a, 0x49, 0x0b, 0x78, 0x13, 0x43,
+ 0x0b, 0x70, 0x39, 0x4b, 0x18, 0x78, 0xa0, 0x43, 0x18, 0x70, 0x06, 0x20,
+ 0x19, 0x78, 0x08, 0x43, 0x36, 0x49, 0x18, 0x70, 0x08, 0x78, 0x10, 0x43,
+ 0x08, 0x70, 0x19, 0x78, 0x21, 0x40, 0x19, 0x70, 0x60, 0x21, 0x18, 0x78,
+ 0x01, 0x43, 0x19, 0x70, 0x40, 0x21, 0x31, 0x4b, 0x19, 0x60, 0x31, 0x4b,
+ 0x30, 0x39, 0x18, 0x69, 0x01, 0x43, 0x19, 0x61, 0x99, 0x69, 0x0a, 0x43,
+ 0x9a, 0x61, 0x2e, 0x4a, 0x53, 0x68, 0x5b, 0x07, 0xfc, 0xd4, 0x82, 0x23,
+ 0x01, 0x22, 0xdb, 0x05, 0x19, 0x78, 0x0a, 0x43, 0x1a, 0x70, 0x9a, 0x78,
+ 0xd2, 0x07, 0xfc, 0xd4, 0x1f, 0x20, 0x28, 0x4a, 0x13, 0x68, 0x5b, 0x0b,
+ 0x03, 0x40, 0x83, 0x42, 0x00, 0xd1, 0x05, 0x23, 0x82, 0x21, 0xc9, 0x05,
+ 0x0c, 0x8d, 0x24, 0x4d, 0x03, 0x40, 0x9b, 0x01, 0x2c, 0x40, 0x23, 0x43,
+ 0x0b, 0x85, 0x13, 0x68, 0x9b, 0x0c, 0x03, 0x40, 0x1f, 0x2b, 0x00, 0xd1,
+ 0x02, 0x3b, 0x1f, 0x24, 0x08, 0x8d, 0x23, 0x40, 0xa0, 0x43, 0x03, 0x43,
+ 0x07, 0x20, 0x0b, 0x85, 0x12, 0x68, 0xd2, 0x0d, 0x02, 0x40, 0x82, 0x42,
+ 0x00, 0xd1, 0x03, 0x22, 0x82, 0x23, 0xdb, 0x05, 0x19, 0x8d, 0x02, 0x40,
+ 0x16, 0x48, 0x12, 0x03, 0x01, 0x40, 0x0a, 0x43, 0x7f, 0x21, 0x1a, 0x85,
+ 0x1a, 0x78, 0x14, 0x48, 0x0a, 0x40, 0x1a, 0x70, 0x04, 0x22, 0x19, 0x78,
+ 0x0a, 0x43, 0x0c, 0x21, 0x1a, 0x70, 0x58, 0x62, 0x1a, 0x89, 0x8a, 0x43,
+ 0x1a, 0x81, 0x1a, 0x89, 0x0b, 0x39, 0x8a, 0x43, 0x1a, 0x81, 0x80, 0x22,
+ 0x00, 0x21, 0x52, 0x00, 0x01, 0xf0, 0x71, 0xfa, 0x70, 0xbd, 0xc0, 0x46,
+ 0x58, 0x60, 0x00, 0x41, 0x3c, 0x60, 0x00, 0x41, 0x59, 0x60, 0x00, 0x41,
+ 0x98, 0x1c, 0x00, 0x40, 0x00, 0x08, 0x00, 0x40, 0x00, 0x1c, 0x00, 0x40,
+ 0x20, 0x60, 0x80, 0x00, 0x3f, 0xf8, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff,
+ 0x74, 0x06, 0x00, 0x20, 0xf7, 0xb5, 0x1c, 0x00, 0x82, 0x23, 0xdb, 0x05,
+ 0x5b, 0x6a, 0x06, 0x00, 0x0f, 0x00, 0x15, 0x00, 0x01, 0x93, 0x00, 0x2c,
+ 0x05, 0xd1, 0x44, 0x34, 0x54, 0x43, 0x2d, 0x4b, 0xe4, 0x18, 0xff, 0xf7,
+ 0xcb, 0xfe, 0x63, 0x78, 0x22, 0x78, 0x93, 0x42, 0x10, 0xd2, 0xd5, 0x1a,
+ 0xbd, 0x42, 0x00, 0xd9, 0x3d, 0x00, 0x00, 0x2e, 0x08, 0xd0, 0x21, 0x1d,
+ 0xc9, 0x18, 0x2a, 0x00, 0x30, 0x00, 0x01, 0xf0, 0x31, 0xfa, 0x63, 0x78,
+ 0x5b, 0x19, 0x63, 0x70, 0x28, 0x00, 0xfe, 0xbd, 0x01, 0x9b, 0xa1, 0x78,
+ 0x6a, 0x01, 0xd3, 0x18, 0x00, 0x29, 0x11, 0xd1, 0x21, 0x1d, 0x19, 0x60,
+ 0x59, 0x68, 0x1d, 0x48, 0x89, 0x0b, 0x89, 0x03, 0x59, 0x60, 0x59, 0x68,
+ 0x01, 0x40, 0x59, 0x60, 0x1a, 0x49, 0x55, 0x18, 0x40, 0x21, 0x28, 0x79,
+ 0x01, 0x43, 0x29, 0x71, 0x01, 0x21, 0xa1, 0x70, 0x82, 0x21, 0xc9, 0x05,
+ 0x51, 0x18, 0x01, 0x91, 0x15, 0x49, 0x00, 0x25, 0x52, 0x18, 0x12, 0x7a,
+ 0xd2, 0x07, 0xdb, 0xd5, 0x5d, 0x68, 0xa2, 0x78, 0xed, 0xb2, 0x25, 0x70,
+ 0x02, 0x2a, 0x04, 0xd1, 0x2a, 0x00, 0x19, 0x68, 0x20, 0x1d, 0x01, 0xf0,
+ 0xff, 0xf9, 0xbd, 0x42, 0x00, 0xd9, 0x3d, 0x00, 0x00, 0x2e, 0x0c, 0xd0,
+ 0x2a, 0x00, 0x30, 0x00, 0x65, 0x70, 0x21, 0x1d, 0x01, 0xf0, 0xf4, 0xf9,
+ 0x01, 0x22, 0x01, 0x9b, 0xff, 0x33, 0x1a, 0x72, 0x00, 0x23, 0xa3, 0x70,
+ 0xbe, 0xe7, 0x66, 0x70, 0xf6, 0xe7, 0xc0, 0x46, 0x30, 0x04, 0x00, 0x20,
+ 0xff, 0x3f, 0x00, 0xf0, 0x00, 0x01, 0x00, 0x41, 0xff, 0x00, 0x00, 0x41,
+ 0x10, 0xb5, 0x00, 0x23, 0xff, 0xf7, 0x8c, 0xff, 0x10, 0xbd, 0xf8, 0xb5,
+ 0x05, 0x00, 0x0c, 0x00, 0x16, 0x00, 0x1f, 0x00, 0x00, 0x2c, 0x00, 0xd1,
+ 0xf8, 0xbd, 0x21, 0x00, 0x28, 0x00, 0x3b, 0x00, 0x32, 0x00, 0xff, 0xf7,
+ 0x7d, 0xff, 0x24, 0x1a, 0x2d, 0x18, 0xf3, 0xe7, 0xf8, 0xb5, 0x0d, 0x00,
+ 0x82, 0x21, 0xc9, 0x05, 0x4c, 0x6a, 0x56, 0x01, 0x34, 0x19, 0x00, 0x2b,
+ 0x1b, 0xd0, 0x63, 0x69, 0x5b, 0x00, 0x5b, 0x08, 0x63, 0x61, 0x20, 0x61,
+ 0x63, 0x69, 0xaa, 0x04, 0x9b, 0x0b, 0x92, 0x0c, 0x9b, 0x03, 0x13, 0x43,
+ 0x63, 0x61, 0x63, 0x69, 0x16, 0x4a, 0x17, 0x48, 0x13, 0x40, 0x63, 0x61,
+ 0x32, 0x18, 0x02, 0x23, 0x80, 0x21, 0x16, 0x00, 0x13, 0x72, 0x91, 0x71,
+ 0x32, 0x7a, 0x1a, 0x42, 0xfc, 0xd0, 0x28, 0x00, 0xf8, 0xbd, 0x01, 0x21,
+ 0x63, 0x69, 0x5b, 0x00, 0x5b, 0x0f, 0x03, 0x33, 0x99, 0x40, 0xa9, 0x42,
+ 0x09, 0xd8, 0x04, 0x3a, 0x53, 0x1e, 0x9a, 0x41, 0x63, 0x69, 0xd1, 0x07,
+ 0x5b, 0x00, 0x5a, 0x08, 0x0a, 0x43, 0x62, 0x61, 0xd5, 0xe7, 0x44, 0x27,
+ 0x57, 0x43, 0x07, 0x4a, 0x04, 0x37, 0xbf, 0x18, 0x01, 0x00, 0x2a, 0x00,
+ 0x38, 0x00, 0x01, 0xf0, 0x8b, 0xf9, 0x38, 0x00, 0xc9, 0xe7, 0xc0, 0x46,
+ 0xff, 0x3f, 0x00, 0xf0, 0xff, 0x00, 0x00, 0x41, 0x30, 0x04, 0x00, 0x20,
+ 0x10, 0xb5, 0x00, 0x23, 0xff, 0xf7, 0xb2, 0xff, 0x10, 0xbd, 0x00, 0x00,
+ 0x10, 0xb5, 0x05, 0x4a, 0x0b, 0x00, 0x11, 0x88, 0x99, 0x42, 0x00, 0xd9,
+ 0x19, 0x00, 0x00, 0x22, 0xff, 0xf7, 0xf0, 0xff, 0x10, 0xbd, 0xc0, 0x46,
+ 0x74, 0x07, 0x00, 0x20, 0x07, 0xb5, 0x00, 0x22, 0x6b, 0x46, 0x11, 0x00,
+ 0xd8, 0x1d, 0xff, 0xf7, 0xe5, 0xff, 0x07, 0xbd, 0xf0, 0xb5, 0x82, 0x24,
+ 0x9b, 0xb0, 0xe4, 0x05, 0xff, 0xf7, 0xea, 0xfd, 0xa3, 0x8b, 0x08, 0x21,
+ 0x1a, 0x00, 0x0a, 0x40, 0x03, 0x92, 0xb5, 0x4a, 0x0b, 0x42, 0x2e, 0xd0,
+ 0x80, 0x23, 0x40, 0x20, 0xa1, 0x83, 0xa3, 0x72, 0xc0, 0x24, 0x09, 0x31,
+ 0x51, 0x70, 0x90, 0x71, 0x53, 0x71, 0xb0, 0x4b, 0xb0, 0x4d, 0x59, 0x68,
+ 0xa4, 0x05, 0x29, 0x40, 0x21, 0x43, 0x59, 0x60, 0x59, 0x69, 0x29, 0x40,
+ 0x0c, 0x43, 0xad, 0x49, 0x5c, 0x61, 0x04, 0x31, 0x19, 0x60, 0xac, 0x49,
+ 0xac, 0x4c, 0x19, 0x61, 0x59, 0x68, 0x0c, 0x40, 0x80, 0x21, 0x89, 0x02,
+ 0x21, 0x43, 0x59, 0x60, 0x59, 0x68, 0x89, 0x0b, 0x89, 0x03, 0x59, 0x60,
+ 0x50, 0x71, 0x00, 0x22, 0xa6, 0x4b, 0x1a, 0x70, 0xa5, 0x4b, 0x18, 0x78,
+ 0x43, 0x1e, 0x98, 0x41, 0xc0, 0xb2, 0x1b, 0xb0, 0xf0, 0xbd, 0x10, 0x20,
+ 0x13, 0x7a, 0x03, 0x42, 0xf4, 0xd0, 0x9d, 0x4d, 0x10, 0x72, 0x6d, 0x89,
+ 0x9b, 0x48, 0xac, 0x46, 0x66, 0x46, 0x80, 0x79, 0x9d, 0x4d, 0x02, 0x90,
+ 0x98, 0x48, 0x98, 0x4b, 0xc7, 0x88, 0xc0, 0x79, 0x2e, 0x80, 0x40, 0x25,
+ 0x01, 0x90, 0x9b, 0x88, 0x94, 0x48, 0x99, 0x4e, 0x00, 0x89, 0x55, 0x71,
+ 0xb3, 0x42, 0x00, 0xd1, 0xb1, 0xe1, 0x36, 0xdc, 0x81, 0x24, 0x64, 0x00,
+ 0xa3, 0x42, 0x00, 0xd1, 0xc1, 0xe1, 0x15, 0xdc, 0x82, 0x2b, 0x00, 0xd1,
+ 0x8f, 0xe1, 0x06, 0xdc, 0x80, 0x3b, 0x01, 0x2b, 0x00, 0xd8, 0x85, 0xe1,
+ 0x20, 0x23, 0x93, 0x71, 0xca, 0xe7, 0x80, 0x21, 0x49, 0x00, 0x8b, 0x42,
+ 0xf8, 0xd0, 0x02, 0x21, 0xff, 0x31, 0x8b, 0x42, 0xf4, 0xd1, 0xff, 0xf7,
+ 0x83, 0xff, 0xbf, 0xe7, 0xb0, 0x21, 0x89, 0x00, 0x8b, 0x42, 0x00, 0xd1,
+ 0x6c, 0xe1, 0x0e, 0xdc, 0x01, 0x39, 0xff, 0x39, 0x8b, 0x42, 0xe7, 0xd0,
+ 0xa2, 0x3b, 0x83, 0x49, 0xff, 0x3b, 0x0b, 0x42, 0xe2, 0xd1, 0x00, 0x23,
+ 0x08, 0x21, 0x08, 0x93, 0x09, 0x93, 0x08, 0xa8, 0xc6, 0xe0, 0xc0, 0x21,
+ 0x89, 0x00, 0x8b, 0x42, 0xd8, 0xd0, 0x7d, 0x49, 0xdf, 0xe7, 0x7d, 0x48,
+ 0x83, 0x42, 0xde, 0xd0, 0x00, 0xdd, 0x98, 0xe0, 0x7b, 0x49, 0x8b, 0x42,
+ 0x14, 0xdc, 0x01, 0x39, 0x8b, 0x42, 0x00, 0xdb, 0xae, 0xe0, 0x79, 0x49,
+ 0x8b, 0x42, 0xe4, 0xd0, 0x60, 0x31, 0xff, 0x31, 0x8b, 0x42, 0xc3, 0xd1,
+ 0xff, 0xf7, 0x52, 0xff, 0x80, 0x23, 0x82, 0x22, 0x5b, 0x42, 0x3b, 0x43,
+ 0xdb, 0xb2, 0xd2, 0x05, 0x93, 0x72, 0x87, 0xe7, 0x88, 0x21, 0x69, 0x48,
+ 0x09, 0x01, 0x8b, 0x42, 0x00, 0xd1, 0x95, 0xe0, 0x80, 0x31, 0x8b, 0x42,
+ 0xb0, 0xd1, 0x07, 0x70, 0xff, 0xf7, 0x3e, 0xff, 0xa0, 0x23, 0x03, 0x22,
+ 0x5b, 0x00, 0xe2, 0x54, 0xc0, 0x22, 0x5c, 0x4b, 0x5c, 0x49, 0x58, 0x6c,
+ 0x92, 0x05, 0x08, 0x40, 0x10, 0x43, 0x58, 0x64, 0x46, 0x20, 0xff, 0x30,
+ 0x25, 0x54, 0x64, 0x48, 0x30, 0x27, 0x18, 0x64, 0x90, 0x20, 0x40, 0x00,
+ 0x27, 0x54, 0x58, 0x6b, 0x80, 0x26, 0x08, 0x40, 0x10, 0x43, 0x58, 0x63,
+ 0x92, 0x20, 0x40, 0x00, 0x26, 0x54, 0x5e, 0x48, 0x18, 0x63, 0xb0, 0x20,
+ 0x40, 0x00, 0x25, 0x54, 0x58, 0x6f, 0x08, 0x40, 0x58, 0x67, 0xb2, 0x20,
+ 0x40, 0x00, 0x26, 0x54, 0x3c, 0x30, 0x7d, 0x3e, 0x26, 0x54, 0xfc, 0x38,
+ 0x84, 0x46, 0x9c, 0x44, 0x60, 0x46, 0x06, 0x68, 0x0e, 0x40, 0x16, 0x43,
+ 0x06, 0x60, 0xa6, 0x26, 0xff, 0x36, 0xa5, 0x55, 0x1e, 0x00, 0x52, 0x48,
+ 0xa0, 0x36, 0x30, 0x60, 0xc0, 0x26, 0x76, 0x00, 0xa7, 0x55, 0x1f, 0x00,
+ 0x94, 0x37, 0x3e, 0x68, 0x80, 0x20, 0x0e, 0x40, 0x16, 0x43, 0x3e, 0x60,
+ 0xc2, 0x26, 0x76, 0x00, 0xa0, 0x55, 0x1e, 0x00, 0x4a, 0x4f, 0x90, 0x36,
+ 0x37, 0x60, 0xe0, 0x26, 0x44, 0x27, 0x76, 0x00, 0xa7, 0x55, 0x04, 0x36,
+ 0xa5, 0x55, 0xa0, 0x55, 0xc0, 0x19, 0x84, 0x46, 0x9c, 0x44, 0x60, 0x46,
+ 0x06, 0x68, 0x0e, 0x40, 0x16, 0x43, 0x06, 0x60, 0xd4, 0x20, 0x84, 0x46,
+ 0x9c, 0x44, 0x60, 0x46, 0x06, 0x68, 0x0e, 0x40, 0x16, 0x43, 0x06, 0x60,
+ 0xf0, 0x26, 0x80, 0x20, 0x76, 0x00, 0xa7, 0x55, 0x04, 0x36, 0xa5, 0x55,
+ 0xa0, 0x55, 0x1c, 0x00, 0xe4, 0x34, 0x20, 0x68, 0xf4, 0x33, 0x08, 0x40,
+ 0x10, 0x43, 0x20, 0x60, 0x18, 0x68, 0x01, 0x40, 0x0a, 0x43, 0x1a, 0x60,
+ 0x06, 0xe7, 0x35, 0x48, 0x83, 0x42, 0x00, 0xd1, 0x24, 0xe1, 0x0a, 0xdc,
+ 0x33, 0x49, 0x8b, 0x42, 0x00, 0xd1, 0x3a, 0xe7, 0x32, 0x49, 0x33, 0x48,
+ 0x0b, 0x40, 0x83, 0x42, 0x00, 0xd1, 0x34, 0xe7, 0x28, 0xe7, 0x31, 0x49,
+ 0x8b, 0x42, 0x00, 0xd1, 0x2f, 0xe7, 0x30, 0x49, 0x8b, 0x42, 0x00, 0xd0,
+ 0x20, 0xe7, 0x00, 0x23, 0x08, 0xa8, 0x03, 0x80, 0x01, 0x21, 0x05, 0xe0,
+ 0x80, 0x23, 0x5b, 0x00, 0x9f, 0x42, 0x04, 0xd1, 0x12, 0x21, 0x2a, 0x48,
+ 0xff, 0xf7, 0x96, 0xfe, 0xe0, 0xe6, 0x80, 0x23, 0x9b, 0x00, 0x9f, 0x42,
+ 0x02, 0xd1, 0x99, 0x21, 0x26, 0x48, 0xf5, 0xe7, 0x01, 0x9b, 0x03, 0x2b,
+ 0x75, 0xd1, 0x02, 0x9b, 0x03, 0x2b, 0x00, 0xd9, 0x04, 0xe7, 0x08, 0xac,
+ 0x48, 0x22, 0x00, 0x21, 0x20, 0x00, 0x01, 0xf0, 0x06, 0xf8, 0x01, 0x9b,
+ 0x63, 0x70, 0x02, 0x9b, 0x00, 0x2b, 0x3b, 0xd1, 0x09, 0x22, 0x04, 0x33,
+ 0x23, 0x70, 0xa2, 0x70, 0xe3, 0x70, 0x20, 0x00, 0x21, 0x78, 0xdb, 0xe7,
+ 0xff, 0x00, 0x00, 0x41, 0x74, 0x06, 0x00, 0x20, 0xff, 0xff, 0xff, 0x8f,
+ 0xe8, 0x03, 0x00, 0x20, 0x34, 0x04, 0x00, 0x20, 0xff, 0x3f, 0x00, 0xf0,
+ 0x2c, 0x04, 0x00, 0x20, 0x74, 0x07, 0x00, 0x20, 0x02, 0x03, 0x00, 0x00,
0xff, 0xfe, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x21, 0x09, 0x00, 0x00,
- 0x81, 0x06, 0x00, 0x00, 0xa1, 0x03, 0x00, 0x00, 0xe0, 0x0b, 0x00, 0x20,
- 0x9c, 0x0b, 0x00, 0x20, 0xac, 0x0c, 0x00, 0x20, 0x68, 0x0c, 0x00, 0x20,
+ 0x81, 0x06, 0x00, 0x00, 0xa1, 0x03, 0x00, 0x00, 0xbc, 0x04, 0x00, 0x20,
+ 0x78, 0x04, 0x00, 0x20, 0x88, 0x05, 0x00, 0x20, 0x44, 0x05, 0x00, 0x20,
0xa1, 0x21, 0x00, 0x00, 0x21, 0x20, 0x00, 0x00, 0xff, 0xfe, 0xff, 0xff,
0x21, 0x0a, 0x00, 0x00, 0x21, 0x22, 0x00, 0x00, 0xa1, 0xfe, 0x00, 0x00,
- 0xa4, 0x1b, 0x00, 0x00, 0x44, 0x00, 0x00, 0x20, 0x09, 0x04, 0x00, 0x00,
- 0x06, 0xae, 0x32, 0x00, 0x59, 0x4b, 0x23, 0xcb, 0x23, 0xc2, 0x00, 0x25,
- 0x2f, 0x00, 0x1b, 0x68, 0x13, 0x60, 0xab, 0x00, 0x56, 0x4a, 0xf3, 0x58,
- 0xd0, 0x19, 0x19, 0x68, 0x01, 0x22, 0xff, 0xf7, 0xf3, 0xfb, 0x01, 0x35,
- 0x3f, 0x18, 0x04, 0x2d, 0xf3, 0xd1, 0x00, 0x23, 0x50, 0x4a, 0xd3, 0x55,
- 0x50, 0x4b, 0x51, 0x4a, 0x9b, 0x79, 0x9b, 0x00, 0x9d, 0x58, 0x28, 0x00,
- 0x00, 0xf0, 0xbf, 0xff, 0x23, 0x00, 0x01, 0x30, 0x40, 0x00, 0x20, 0x70,
- 0x2a, 0x78, 0x02, 0x33, 0x01, 0x35, 0x00, 0x2a, 0x9a, 0xd0, 0x1a, 0x70,
- 0xf8, 0xe7, 0x0f, 0x2f, 0x02, 0xd1, 0x39, 0x21, 0x47, 0x48, 0x74, 0xe7,
- 0x21, 0x2f, 0x02, 0xd1, 0x09, 0x21, 0x46, 0x48, 0x6f, 0xe7, 0x22, 0x2f,
- 0x00, 0xd0, 0x7f, 0xe6, 0x21, 0x21, 0x44, 0x48, 0x69, 0xe7, 0x07, 0x2a,
- 0x00, 0xd0, 0x79, 0xe6, 0xaa, 0x21, 0x42, 0x48, 0x63, 0xe7, 0x05, 0x9b,
- 0x0a, 0xa8, 0x02, 0x21, 0x03, 0x80, 0x5e, 0xe7, 0x0a, 0x42, 0x00, 0xd0,
- 0x6e, 0xe6, 0x0f, 0x21, 0x50, 0x23, 0x0a, 0x40, 0x03, 0x99, 0x08, 0x32,
- 0x52, 0x01, 0x19, 0x42, 0x07, 0xd0, 0x82, 0x23, 0xdb, 0x05, 0xd2, 0x18,
- 0x93, 0x79, 0x9b, 0x06, 0xdb, 0x0f, 0x0a, 0xa8, 0xe9, 0xe7, 0x82, 0x23,
- 0xdb, 0x05, 0xd2, 0x18, 0x93, 0x79, 0xdb, 0x06, 0xf6, 0xe7, 0x0f, 0x20,
- 0x13, 0x00, 0x03, 0x40, 0x02, 0x42, 0x00, 0xd1, 0x52, 0xe6, 0x11, 0x40,
- 0x01, 0x9a, 0x0a, 0x43, 0x00, 0xd0, 0x4d, 0xe6, 0x03, 0x9a, 0x08, 0x33,
- 0x5b, 0x01, 0x12, 0x06, 0x05, 0xd5, 0x82, 0x22, 0xd2, 0x05, 0x9b, 0x18,
- 0x20, 0x22, 0x5a, 0x71, 0x4d, 0xe6, 0x82, 0x22, 0xd2, 0x05, 0x9b, 0x18,
- 0x62, 0x46, 0xf8, 0xe7, 0x0f, 0x20, 0x13, 0x00, 0x03, 0x40, 0x02, 0x42,
- 0x00, 0xd1, 0x37, 0xe6, 0x0a, 0x40, 0x01, 0x99, 0x11, 0x43, 0x00, 0xd0,
- 0x32, 0xe6, 0x03, 0x9a, 0x5b, 0x01, 0x12, 0x06, 0x14, 0xd5, 0x82, 0x22,
- 0x1d, 0x49, 0xd2, 0x05, 0x9a, 0x18, 0x5b, 0x18, 0x20, 0x21, 0xd8, 0x79,
- 0x08, 0x42, 0x00, 0xd1, 0x2f, 0xe6, 0x59, 0x71, 0x1b, 0x7a, 0x2b, 0x42,
- 0x00, 0xd1, 0x2a, 0xe6, 0x13, 0x00, 0x40, 0x22, 0xff, 0x33, 0x1a, 0x72,
- 0x3e, 0x3a, 0xd4, 0xe7, 0x82, 0x22, 0x60, 0x46, 0x12, 0x49, 0xd2, 0x05,
- 0x9a, 0x18, 0x5b, 0x18, 0xd9, 0x79, 0x01, 0x42, 0x00, 0xd1, 0x1a, 0xe6,
- 0x20, 0x21, 0x58, 0x71, 0x1b, 0x7a, 0x0b, 0x42, 0x00, 0xd1, 0x14, 0xe6,
- 0x13, 0x00, 0xff, 0x33, 0x01, 0x22, 0x19, 0x72, 0xbf, 0xe7, 0x0a, 0x48,
- 0xef, 0xe6, 0xc0, 0x46, 0x94, 0x1b, 0x00, 0x00, 0xe1, 0x03, 0x00, 0x20,
- 0x10, 0x0a, 0x00, 0x20, 0xdc, 0x1b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x20,
- 0xe0, 0x00, 0x00, 0x20, 0xb8, 0x1b, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x20,
- 0xff, 0x00, 0x00, 0x41, 0xec, 0x00, 0x00, 0x20, 0x10, 0xb5, 0xff, 0xf7,
- 0xff, 0xfb, 0x00, 0x22, 0x04, 0x4b, 0x1a, 0x70, 0x82, 0x22, 0x02, 0x23,
- 0xd2, 0x05, 0x11, 0x78, 0x0b, 0x43, 0x13, 0x70, 0x10, 0xbd, 0xc0, 0x46,
- 0xe0, 0x03, 0x00, 0x20, 0x10, 0xb5, 0x0c, 0x00, 0x01, 0x22, 0xff, 0xf7,
- 0x49, 0xfd, 0x20, 0x00, 0x10, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x01, 0x22,
- 0xff, 0xf7, 0x42, 0xfd, 0x20, 0x00, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00,
- 0x0d, 0x00, 0xff, 0xf7, 0x57, 0xfd, 0x03, 0x00, 0x00, 0x20, 0x83, 0x42,
- 0x04, 0xd0, 0x02, 0x22, 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xd2, 0xfc,
- 0x70, 0xbd, 0x70, 0xb5, 0x05, 0x00, 0x0c, 0x00, 0xff, 0xf7, 0x48, 0xfd,
- 0x00, 0x28, 0x07, 0xd0, 0x00, 0x23, 0x02, 0x22, 0x21, 0x00, 0x28, 0x00,
- 0xff, 0xf7, 0xc9, 0xfc, 0x20, 0x00, 0x70, 0xbd, 0x04, 0x00, 0xfb, 0xe7,
- 0x30, 0xb5, 0x00, 0x23, 0x20, 0x25, 0x93, 0x42, 0x00, 0xdb, 0x30, 0xbd,
- 0x0c, 0x78, 0x00, 0x2c, 0x03, 0xd0, 0x01, 0x31, 0xc4, 0x54, 0x01, 0x33,
- 0xf5, 0xe7, 0x2c, 0x00, 0xfa, 0xe7, 0x00, 0x00, 0xf8, 0xb5, 0x80, 0x22,
- 0x0c, 0x00, 0x05, 0x00, 0x00, 0x21, 0x20, 0x00, 0x92, 0x00, 0x00, 0xf0,
- 0xb6, 0xfe, 0x00, 0x2d, 0x0c, 0xd1, 0x3e, 0x22, 0x20, 0x00, 0x4b, 0x49,
- 0x00, 0xf0, 0xa6, 0xfe, 0xff, 0x23, 0x55, 0x22, 0x5b, 0x00, 0xe2, 0x54,
- 0x48, 0x4b, 0x92, 0x18, 0xe2, 0x54, 0xf8, 0xbd, 0x7e, 0x2d, 0x25, 0xd8,
- 0x6b, 0x1e, 0x3e, 0x2b, 0x00, 0xd9, 0x3f, 0x3b, 0x00, 0x2b, 0x12, 0xd0,
- 0x80, 0x25, 0x1b, 0x02, 0x58, 0x1c, 0x42, 0x4e, 0xff, 0x30, 0xed, 0x00,
- 0x1a, 0x1f, 0x59, 0x1c, 0xaa, 0x42, 0x03, 0xd2, 0xb3, 0x42, 0x11, 0xd0,
- 0x8b, 0xb2, 0x23, 0x80, 0x0b, 0x00, 0x02, 0x34, 0x81, 0x42, 0xf3, 0xd1,
- 0xe3, 0xe7, 0xf0, 0x22, 0x21, 0x00, 0xff, 0x20, 0x22, 0x70, 0x0a, 0x31,
- 0x62, 0x1c, 0x91, 0x42, 0xe4, 0xd0, 0x10, 0x70, 0x01, 0x32, 0xfa, 0xe7,
- 0x35, 0x4b, 0xec, 0xe7, 0x82, 0x2d, 0x31, 0xd8, 0x7f, 0x2d, 0xd2, 0xd1,
- 0x2f, 0x49, 0x0b, 0x22, 0x20, 0x00, 0x2b, 0x31, 0xff, 0xf7, 0xa6, 0xff,
- 0x80, 0x27, 0x28, 0x23, 0x2f, 0x4e, 0xe3, 0x72, 0x7d, 0x3d, 0x3f, 0x03,
- 0xf0, 0x68, 0x3b, 0x00, 0x20, 0x34, 0x00, 0x28, 0x02, 0xd0, 0x00, 0xf0,
- 0x70, 0xfe, 0x03, 0x00, 0x1a, 0x0a, 0x23, 0x77, 0x62, 0x77, 0x1a, 0x0c,
- 0x1b, 0x0e, 0xe3, 0x77, 0x2b, 0x0a, 0x31, 0x00, 0xa2, 0x77, 0xa5, 0x76,
- 0x0b, 0x22, 0xe3, 0x76, 0x20, 0x00, 0xff, 0xf7, 0x89, 0xff, 0x67, 0x22,
- 0x4d, 0x23, 0x01, 0x35, 0x52, 0x42, 0xad, 0xb2, 0x22, 0x74, 0x63, 0x74,
- 0x22, 0x76, 0x63, 0x76, 0x10, 0x36, 0x05, 0x2d, 0xdc, 0xd1, 0xa2, 0xe7,
- 0x2b, 0x00, 0x83, 0x3b, 0x01, 0x2b, 0x0c, 0xd8, 0x19, 0x4a, 0x1b, 0x01,
- 0xd3, 0x18, 0xdd, 0x68, 0x28, 0x00, 0x00, 0xf0, 0x48, 0xfe, 0x29, 0x00,
- 0x02, 0x00, 0x20, 0x00, 0x00, 0xf0, 0x32, 0xfe, 0x91, 0xe7, 0x80, 0x23,
- 0x85, 0x3d, 0x29, 0x02, 0xdb, 0x02, 0x99, 0x42, 0x00, 0xd3, 0x8a, 0xe7,
- 0x10, 0x4b, 0x11, 0x4a, 0x23, 0x60, 0x11, 0x4b, 0x20, 0x00, 0x63, 0x60,
- 0xfe, 0x23, 0x5b, 0x00, 0xe2, 0x50, 0x80, 0x23, 0xdb, 0x00, 0xa3, 0x61,
- 0x80, 0x23, 0x80, 0x22, 0x9b, 0x01, 0xa3, 0x60, 0x0b, 0x4b, 0x52, 0x00,
- 0x65, 0x61, 0xe1, 0x60, 0x22, 0x61, 0xe3, 0x61, 0x20, 0x30, 0xdd, 0xe7,
- 0xec, 0x1b, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0x03, 0x04, 0x00, 0x00,
- 0xff, 0xff, 0x00, 0x00, 0x98, 0x1c, 0x00, 0x00, 0x55, 0x46, 0x32, 0x0a,
- 0x30, 0x6f, 0xb1, 0x0a, 0x57, 0x51, 0x5d, 0x9e, 0x2f, 0x47, 0x29, 0x2c,
- 0x70, 0xb5, 0x16, 0x00, 0x1d, 0x00, 0x0a, 0x68, 0x2f, 0x4b, 0x0c, 0x00,
- 0x9a, 0x42, 0x52, 0xd1, 0x2e, 0x4b, 0x4a, 0x68, 0x9a, 0x42, 0x4e, 0xd1,
- 0xfe, 0x22, 0x52, 0x00, 0x2c, 0x4b, 0x8a, 0x58, 0x9a, 0x42, 0x48, 0xd1,
- 0x8b, 0x68, 0x9a, 0x04, 0x03, 0xd5, 0x2a, 0x4a, 0xc9, 0x69, 0x91, 0x42,
- 0x41, 0xd1, 0xdb, 0x07, 0x12, 0xd4, 0x80, 0x23, 0x22, 0x69, 0x5b, 0x00,
- 0x9a, 0x42, 0x0d, 0xd1, 0xe0, 0x68, 0xc3, 0xb2, 0x00, 0x2b, 0x09, 0xd1,
- 0xf8, 0x22, 0x23, 0x4b, 0x92, 0x02, 0xc3, 0x18, 0x93, 0x42, 0x03, 0xd2,
- 0x21, 0x00, 0x20, 0x31, 0xff, 0xf7, 0xde, 0xf8, 0x00, 0x2d, 0x2b, 0xd0,
- 0xa3, 0x69, 0x00, 0x2b, 0x28, 0xd0, 0x29, 0x68, 0x1c, 0x4a, 0x8b, 0x42,
- 0x06, 0xd0, 0x93, 0x42, 0x01, 0xd8, 0x00, 0x29, 0x01, 0xd0, 0x01, 0x23,
- 0x5b, 0x42, 0x2b, 0x60, 0x63, 0x69, 0x93, 0x42, 0x19, 0xd8, 0x07, 0x22,
- 0x01, 0x21, 0x1a, 0x40, 0x91, 0x40, 0xdb, 0x08, 0xeb, 0x18, 0x1a, 0x7a,
- 0xc8, 0xb2, 0x11, 0x42, 0x04, 0xd1, 0x69, 0x68, 0x02, 0x43, 0x01, 0x31,
- 0x1a, 0x72, 0x69, 0x60, 0x6a, 0x68, 0x2b, 0x68, 0x9a, 0x42, 0x06, 0xd3,
- 0x00, 0x2e, 0x04, 0xd1, 0x0c, 0x4b, 0x1b, 0x68, 0x1e, 0x33, 0x0c, 0x4a,
- 0x13, 0x60, 0x70, 0xbd, 0x00, 0x2e, 0xfc, 0xd1, 0x08, 0x4b, 0x1b, 0x68,
- 0x2d, 0x33, 0xff, 0x33, 0xf5, 0xe7, 0xc0, 0x46, 0x55, 0x46, 0x32, 0x0a,
- 0x57, 0x51, 0x5d, 0x9e, 0x30, 0x6f, 0xb1, 0x0a, 0x2f, 0x47, 0x29, 0x2c,
- 0x00, 0xe0, 0xff, 0xff, 0x63, 0x04, 0x00, 0x00, 0x08, 0x0a, 0x00, 0x20,
- 0x0c, 0x0a, 0x00, 0x20, 0xf8, 0xb5, 0x5a, 0x4e, 0xb2, 0x68, 0x00, 0x2a,
- 0x00, 0xd0, 0xfe, 0xe7, 0x58, 0x4b, 0x1a, 0x70, 0x9a, 0x68, 0x00, 0x2a,
- 0xfc, 0xd1, 0x57, 0x4c, 0x02, 0x32, 0x23, 0x69, 0x93, 0x43, 0x23, 0x61,
- 0xe3, 0x68, 0x5b, 0x07, 0xfc, 0xd5, 0x23, 0x69, 0x53, 0x4a, 0x1a, 0x40,
- 0x80, 0x23, 0x1b, 0x03, 0x13, 0x43, 0x18, 0x22, 0x23, 0x61, 0x23, 0x69,
- 0x93, 0x43, 0x23, 0x61, 0x02, 0x23, 0x22, 0x69, 0x13, 0x43, 0x23, 0x61,
- 0xe3, 0x68, 0xdb, 0x07, 0xfc, 0xd5, 0xe3, 0x68, 0x9b, 0x07, 0xfc, 0xd4,
- 0x4a, 0x4d, 0x2b, 0x78, 0xdb, 0x07, 0x02, 0xd4, 0x2b, 0x78, 0x5b, 0x07,
- 0x05, 0xd5, 0x64, 0x20, 0xff, 0xf7, 0x7c, 0xf9, 0xe3, 0x68, 0x9b, 0x07,
- 0xf9, 0xd4, 0x02, 0x22, 0x23, 0x69, 0x93, 0x43, 0x23, 0x61, 0xe3, 0x68,
- 0x5b, 0x07, 0xfc, 0xd5, 0x18, 0x22, 0x23, 0x69, 0x93, 0x43, 0x1a, 0x00,
- 0x08, 0x23, 0x13, 0x43, 0x23, 0x61, 0x02, 0x23, 0x22, 0x69, 0x13, 0x43,
- 0x23, 0x61, 0xff, 0xf7, 0x37, 0xfa, 0x3b, 0x4b, 0x1f, 0x68, 0x3b, 0x4b,
- 0xfa, 0x18, 0xf8, 0x23, 0x9b, 0x02, 0x9a, 0x42, 0x12, 0xd8, 0x39, 0x4a,
- 0x39, 0x4b, 0x12, 0x68, 0x39, 0x4c, 0x9a, 0x42, 0x32, 0xd1, 0x2a, 0x78,
- 0x38, 0x4b, 0xd2, 0x07, 0x02, 0xd4, 0x22, 0x68, 0x9a, 0x42, 0x2b, 0xd0,
- 0x23, 0x60, 0x36, 0x4b, 0x36, 0x4a, 0x1b, 0x68, 0x32, 0x33, 0x13, 0x60,
- 0xff, 0xf7, 0x4a, 0xf8, 0xbf, 0xf3, 0x5f, 0x8f, 0x62, 0xb6, 0xff, 0xf7,
- 0x1d, 0xfe, 0x40, 0x20, 0xff, 0xf7, 0x1a, 0xfa, 0x80, 0x27, 0x0a, 0x23,
- 0x01, 0x26, 0x2f, 0x4d, 0xff, 0x01, 0x2b, 0x70, 0xff, 0xf7, 0x8c, 0xfb,
- 0x2d, 0x4c, 0x00, 0x28, 0x0a, 0xd0, 0x23, 0x78, 0xda, 0xb2, 0x00, 0x2b,
- 0x05, 0xd1, 0x28, 0x4b, 0x38, 0x00, 0x1a, 0x60, 0xff, 0xf7, 0x06, 0xfa,
- 0x2e, 0x70, 0x26, 0x70, 0x23, 0x78, 0x00, 0x2b, 0x25, 0xd0, 0x00, 0xf0,
- 0xc5, 0xfa, 0xfc, 0xe7, 0x2b, 0x78, 0xdb, 0x07, 0xda, 0x0f, 0x00, 0x2b,
- 0x0d, 0xd0, 0x00, 0x23, 0x80, 0x22, 0x23, 0x60, 0x20, 0x4b, 0x52, 0x03,
- 0x5a, 0x61, 0x80, 0x23, 0x9b, 0x01, 0x1a, 0x68, 0x82, 0xf3, 0x08, 0x88,
- 0xb3, 0x60, 0x38, 0x47, 0xc6, 0xe7, 0x21, 0x68, 0x1b, 0x4b, 0x99, 0x42,
- 0x01, 0xd1, 0x22, 0x60, 0xc0, 0xe7, 0x21, 0x68, 0x12, 0x4a, 0x91, 0x42,
- 0xe7, 0xd0, 0xfa, 0x20, 0x23, 0x60, 0x40, 0x00, 0xff, 0xf7, 0x02, 0xf9,
- 0xe1, 0xe7, 0x23, 0x78, 0x00, 0x2b, 0xc3, 0xd1, 0xff, 0x33, 0xc0, 0x46,
- 0x01, 0x3b, 0x00, 0x2b, 0xfb, 0xd1, 0xbd, 0xe7, 0x00, 0xed, 0x00, 0xe0,
- 0x00, 0x20, 0x00, 0x40, 0x00, 0x18, 0x00, 0x40, 0xff, 0xff, 0xc0, 0xff,
- 0x00, 0x0c, 0x00, 0x40, 0x04, 0x20, 0x00, 0x00, 0x00, 0xe0, 0xff, 0xff,
- 0xa8, 0x20, 0x00, 0x00, 0x7c, 0xb0, 0xee, 0x87, 0xfc, 0x7f, 0x00, 0x20,
- 0xef, 0x69, 0x26, 0xf0, 0x08, 0x0a, 0x00, 0x20, 0x0c, 0x0a, 0x00, 0x20,
- 0x04, 0x00, 0x00, 0x20, 0x04, 0x04, 0x00, 0x20, 0x00, 0x60, 0x00, 0x41,
- 0xef, 0x69, 0x16, 0xf0, 0x10, 0xb5, 0x05, 0x4c, 0x12, 0x22, 0x00, 0x21,
- 0x20, 0x00, 0x00, 0xf0, 0xb6, 0xfc, 0xf0, 0x23, 0x23, 0x70, 0xe6, 0x3b,
- 0xe3, 0x71, 0x10, 0xbd, 0x43, 0x06, 0x00, 0x20, 0xf7, 0xb5, 0x80, 0x27,
+ 0x70, 0x1b, 0x00, 0x00, 0x44, 0x00, 0x00, 0x20, 0x04, 0xae, 0x32, 0x00,
+ 0x56, 0x4b, 0x23, 0xcb, 0x23, 0xc2, 0x00, 0x25, 0x2f, 0x00, 0x1b, 0x68,
+ 0x13, 0x60, 0xab, 0x00, 0x53, 0x4a, 0xf3, 0x58, 0xd0, 0x19, 0x19, 0x68,
+ 0x01, 0x22, 0xff, 0xf7, 0x05, 0xfc, 0x01, 0x35, 0x3f, 0x18, 0x04, 0x2d,
+ 0xf3, 0xd1, 0x00, 0x23, 0x4d, 0x4a, 0xd3, 0x55, 0x4d, 0x4b, 0x4e, 0x4a,
+ 0x9b, 0x79, 0x9b, 0x00, 0x9d, 0x58, 0x28, 0x00, 0x00, 0xf0, 0xad, 0xff,
+ 0x23, 0x00, 0x01, 0x30, 0x40, 0x00, 0x20, 0x70, 0x2a, 0x78, 0x02, 0x33,
+ 0x01, 0x35, 0x00, 0x2a, 0x9f, 0xd0, 0x1a, 0x70, 0xf8, 0xe7, 0x01, 0x9b,
+ 0x0f, 0x2b, 0x02, 0xd1, 0x39, 0x21, 0x44, 0x48, 0x76, 0xe7, 0x01, 0x9b,
+ 0x21, 0x2b, 0x02, 0xd1, 0x09, 0x21, 0x42, 0x48, 0x70, 0xe7, 0x01, 0x9b,
+ 0x22, 0x2b, 0x00, 0xd0, 0x82, 0xe6, 0x21, 0x21, 0x3f, 0x48, 0x69, 0xe7,
+ 0x07, 0x28, 0x00, 0xd0, 0x7c, 0xe6, 0xaa, 0x21, 0x3d, 0x48, 0x63, 0xe7,
+ 0x03, 0x9b, 0x08, 0xa8, 0x02, 0x21, 0x03, 0x80, 0x5e, 0xe7, 0x08, 0x42,
+ 0x00, 0xd0, 0x71, 0xe6, 0x0f, 0x23, 0x50, 0x22, 0x03, 0x40, 0x08, 0x33,
+ 0x5b, 0x01, 0x10, 0x42, 0x07, 0xd0, 0x82, 0x22, 0xd2, 0x05, 0x9b, 0x18,
+ 0x9b, 0x79, 0x9b, 0x06, 0xdb, 0x0f, 0x08, 0xa8, 0xea, 0xe7, 0x82, 0x22,
+ 0xd2, 0x05, 0x9b, 0x18, 0x9b, 0x79, 0xdb, 0x06, 0xf6, 0xe7, 0x0f, 0x24,
+ 0x03, 0x00, 0x23, 0x40, 0x20, 0x42, 0x00, 0xd1, 0x56, 0xe6, 0x01, 0x40,
+ 0x39, 0x43, 0x00, 0xd0, 0x52, 0xe6, 0x82, 0x22, 0x08, 0x33, 0x5b, 0x01,
+ 0xd2, 0x05, 0x9b, 0x18, 0x02, 0x06, 0x02, 0xd5, 0x20, 0x22, 0x5a, 0x71,
+ 0x53, 0xe6, 0x10, 0x22, 0xfb, 0xe7, 0x0f, 0x24, 0x03, 0x00, 0x23, 0x40,
+ 0x20, 0x42, 0x00, 0xd1, 0x40, 0xe6, 0x01, 0x40, 0x39, 0x43, 0x00, 0xd0,
+ 0x3c, 0xe6, 0x5b, 0x01, 0x02, 0x06, 0x14, 0xd5, 0x82, 0x22, 0x1d, 0x49,
+ 0xd2, 0x05, 0x9a, 0x18, 0x5b, 0x18, 0x20, 0x21, 0xd8, 0x79, 0x08, 0x42,
+ 0x00, 0xd1, 0x3a, 0xe6, 0x59, 0x71, 0x1b, 0x7a, 0x2b, 0x42, 0x00, 0xd1,
+ 0x35, 0xe6, 0x13, 0x00, 0x40, 0x22, 0xff, 0x33, 0x1a, 0x72, 0x3e, 0x3a,
+ 0xd9, 0xe7, 0x82, 0x22, 0x10, 0x20, 0x12, 0x49, 0xd2, 0x05, 0x9a, 0x18,
+ 0x5b, 0x18, 0xd9, 0x79, 0x01, 0x42, 0x00, 0xd1, 0x25, 0xe6, 0x58, 0x71,
+ 0x1b, 0x7a, 0x01, 0x18, 0x0b, 0x42, 0x00, 0xd1, 0x1f, 0xe6, 0x13, 0x00,
+ 0xff, 0x33, 0x01, 0x22, 0x19, 0x72, 0xc4, 0xe7, 0x09, 0x48, 0xf7, 0xe6,
+ 0x60, 0x1b, 0x00, 0x00, 0x50, 0x06, 0x00, 0x20, 0xe8, 0x03, 0x00, 0x20,
+ 0xa8, 0x1b, 0x00, 0x00, 0x08, 0x00, 0x00, 0x20, 0xe0, 0x00, 0x00, 0x20,
+ 0x84, 0x1b, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x20, 0xff, 0x00, 0x00, 0x41,
+ 0xec, 0x00, 0x00, 0x20, 0x10, 0xb5, 0xff, 0xf7, 0x17, 0xfc, 0x00, 0x22,
+ 0x04, 0x4b, 0x1a, 0x70, 0x82, 0x22, 0x02, 0x23, 0xd2, 0x05, 0x11, 0x78,
+ 0x0b, 0x43, 0x13, 0x70, 0x10, 0xbd, 0xc0, 0x46, 0x2c, 0x04, 0x00, 0x20,
+ 0x10, 0xb5, 0x0c, 0x00, 0x01, 0x22, 0xff, 0xf7, 0x61, 0xfd, 0x20, 0x00,
+ 0x10, 0xbd, 0x10, 0xb5, 0x0c, 0x00, 0x01, 0x22, 0xff, 0xf7, 0x5a, 0xfd,
+ 0x20, 0x00, 0x10, 0xbd, 0x70, 0xb5, 0x04, 0x00, 0x0d, 0x00, 0xff, 0xf7,
+ 0x6f, 0xfd, 0x03, 0x00, 0x00, 0x20, 0x83, 0x42, 0x04, 0xd0, 0x02, 0x22,
+ 0x29, 0x00, 0x20, 0x00, 0xff, 0xf7, 0xea, 0xfc, 0x70, 0xbd, 0x70, 0xb5,
+ 0x05, 0x00, 0x0c, 0x00, 0xff, 0xf7, 0x60, 0xfd, 0x00, 0x28, 0x07, 0xd0,
+ 0x00, 0x23, 0x02, 0x22, 0x21, 0x00, 0x28, 0x00, 0xff, 0xf7, 0xe1, 0xfc,
+ 0x20, 0x00, 0x70, 0xbd, 0x04, 0x00, 0xfb, 0xe7, 0x30, 0xb5, 0x00, 0x23,
+ 0x20, 0x25, 0x93, 0x42, 0x00, 0xdb, 0x30, 0xbd, 0x0c, 0x78, 0x00, 0x2c,
+ 0x03, 0xd0, 0x01, 0x31, 0xc4, 0x54, 0x01, 0x33, 0xf5, 0xe7, 0x2c, 0x00,
+ 0xfa, 0xe7, 0x00, 0x00, 0xf8, 0xb5, 0x80, 0x22, 0x0c, 0x00, 0x05, 0x00,
+ 0x00, 0x21, 0x20, 0x00, 0x92, 0x00, 0x00, 0xf0, 0xaa, 0xfe, 0x00, 0x2d,
+ 0x0c, 0xd1, 0x3e, 0x22, 0x20, 0x00, 0x4a, 0x49, 0x00, 0xf0, 0x9a, 0xfe,
+ 0xff, 0x23, 0x55, 0x22, 0x5b, 0x00, 0xe2, 0x54, 0x47, 0x4b, 0x92, 0x18,
+ 0xe2, 0x54, 0xf8, 0xbd, 0x7e, 0x2d, 0x23, 0xd8, 0x6e, 0x1e, 0x3e, 0x2e,
+ 0x01, 0xd9, 0x40, 0x3d, 0x2e, 0x00, 0x00, 0x2e, 0x12, 0xd0, 0x80, 0x25,
+ 0x33, 0x02, 0x58, 0x1c, 0x40, 0x4e, 0xff, 0x30, 0xed, 0x00, 0x1a, 0x1f,
+ 0x59, 0x1c, 0xaa, 0x42, 0x03, 0xd2, 0xb3, 0x42, 0x0e, 0xd0, 0x8b, 0xb2,
+ 0x23, 0x80, 0x0b, 0x00, 0x02, 0x34, 0x81, 0x42, 0xf3, 0xd1, 0xe2, 0xe7,
+ 0xf0, 0x23, 0x09, 0x22, 0xff, 0x21, 0x23, 0x70, 0x60, 0x1c, 0x00, 0xf0,
+ 0x78, 0xfe, 0xe4, 0xe7, 0x35, 0x4b, 0xef, 0xe7, 0x82, 0x2d, 0x31, 0xd8,
+ 0x7f, 0x2d, 0xd4, 0xd1, 0x2f, 0x49, 0x0b, 0x22, 0x20, 0x00, 0x2b, 0x31,
+ 0xff, 0xf7, 0xa8, 0xff, 0x80, 0x27, 0x28, 0x23, 0x2f, 0x4e, 0xe3, 0x72,
+ 0x7d, 0x3d, 0x3f, 0x03, 0xf0, 0x68, 0x3b, 0x00, 0x20, 0x34, 0x00, 0x28,
+ 0x02, 0xd0, 0x00, 0xf0, 0x66, 0xfe, 0x03, 0x00, 0x1a, 0x0a, 0x23, 0x77,
+ 0x62, 0x77, 0x1a, 0x0c, 0x1b, 0x0e, 0xe3, 0x77, 0x2b, 0x0a, 0x31, 0x00,
+ 0xa2, 0x77, 0xa5, 0x76, 0x0b, 0x22, 0xe3, 0x76, 0x20, 0x00, 0xff, 0xf7,
+ 0x8b, 0xff, 0x67, 0x22, 0x4d, 0x23, 0x01, 0x35, 0x52, 0x42, 0xad, 0xb2,
+ 0x22, 0x74, 0x63, 0x74, 0x22, 0x76, 0x63, 0x76, 0x10, 0x36, 0x05, 0x2d,
+ 0xdc, 0xd1, 0xa4, 0xe7, 0x2b, 0x00, 0x83, 0x3b, 0x01, 0x2b, 0x0c, 0xd8,
+ 0x19, 0x4a, 0x1b, 0x01, 0xd3, 0x18, 0xdd, 0x68, 0x28, 0x00, 0x00, 0xf0,
+ 0x3e, 0xfe, 0x29, 0x00, 0x02, 0x00, 0x20, 0x00, 0x00, 0xf0, 0x28, 0xfe,
+ 0x93, 0xe7, 0x80, 0x23, 0x85, 0x3d, 0x29, 0x02, 0xdb, 0x02, 0x99, 0x42,
+ 0x00, 0xd3, 0x8c, 0xe7, 0x10, 0x4b, 0x11, 0x4a, 0x23, 0x60, 0x11, 0x4b,
+ 0x20, 0x00, 0x63, 0x60, 0xfe, 0x23, 0x5b, 0x00, 0xe2, 0x50, 0x80, 0x23,
+ 0xdb, 0x00, 0xa3, 0x61, 0x80, 0x23, 0x80, 0x22, 0x9b, 0x01, 0xa3, 0x60,
+ 0x0b, 0x4b, 0x52, 0x00, 0x65, 0x61, 0xe1, 0x60, 0x22, 0x61, 0xe3, 0x61,
+ 0x20, 0x30, 0xdd, 0xe7, 0xb8, 0x1b, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00,
+ 0x03, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x64, 0x1c, 0x00, 0x00,
+ 0x55, 0x46, 0x32, 0x0a, 0x30, 0x6f, 0xb1, 0x0a, 0x57, 0x51, 0x5d, 0x9e,
+ 0x2f, 0x47, 0x29, 0x2c, 0x70, 0xb5, 0x16, 0x00, 0x1d, 0x00, 0x0a, 0x68,
+ 0x2f, 0x4b, 0x0c, 0x00, 0x9a, 0x42, 0x52, 0xd1, 0x2e, 0x4b, 0x4a, 0x68,
+ 0x9a, 0x42, 0x4e, 0xd1, 0xfe, 0x22, 0x52, 0x00, 0x2c, 0x4b, 0x8a, 0x58,
+ 0x9a, 0x42, 0x48, 0xd1, 0x8b, 0x68, 0x9a, 0x04, 0x03, 0xd5, 0x2a, 0x4a,
+ 0xc9, 0x69, 0x91, 0x42, 0x41, 0xd1, 0xdb, 0x07, 0x12, 0xd4, 0x80, 0x23,
+ 0x22, 0x69, 0x5b, 0x00, 0x9a, 0x42, 0x0d, 0xd1, 0xe0, 0x68, 0xc3, 0xb2,
+ 0x00, 0x2b, 0x09, 0xd1, 0xf8, 0x22, 0x23, 0x4b, 0x92, 0x02, 0xc3, 0x18,
+ 0x93, 0x42, 0x03, 0xd2, 0x21, 0x00, 0x20, 0x31, 0xff, 0xf7, 0xee, 0xf8,
+ 0x00, 0x2d, 0x2b, 0xd0, 0xa3, 0x69, 0x00, 0x2b, 0x28, 0xd0, 0x29, 0x68,
+ 0x1c, 0x4a, 0x8b, 0x42, 0x06, 0xd0, 0x93, 0x42, 0x01, 0xd8, 0x00, 0x29,
+ 0x01, 0xd0, 0x01, 0x23, 0x5b, 0x42, 0x2b, 0x60, 0x63, 0x69, 0x93, 0x42,
+ 0x19, 0xd8, 0x07, 0x22, 0x01, 0x21, 0x1a, 0x40, 0x91, 0x40, 0xdb, 0x08,
+ 0xeb, 0x18, 0x1a, 0x7a, 0xc8, 0xb2, 0x11, 0x42, 0x04, 0xd1, 0x69, 0x68,
+ 0x02, 0x43, 0x01, 0x31, 0x1a, 0x72, 0x69, 0x60, 0x6a, 0x68, 0x2b, 0x68,
+ 0x9a, 0x42, 0x06, 0xd3, 0x00, 0x2e, 0x04, 0xd1, 0x0c, 0x4b, 0x1b, 0x68,
+ 0x1e, 0x33, 0x0c, 0x4a, 0x13, 0x60, 0x70, 0xbd, 0x00, 0x2e, 0xfc, 0xd1,
+ 0x08, 0x4b, 0x1b, 0x68, 0x2d, 0x33, 0xff, 0x33, 0xf5, 0xe7, 0xc0, 0x46,
+ 0x55, 0x46, 0x32, 0x0a, 0x57, 0x51, 0x5d, 0x9e, 0x30, 0x6f, 0xb1, 0x0a,
+ 0x2f, 0x47, 0x29, 0x2c, 0x00, 0xe0, 0xff, 0xff, 0x63, 0x04, 0x00, 0x00,
+ 0xe0, 0x03, 0x00, 0x20, 0xd8, 0x03, 0x00, 0x20, 0xf8, 0xb5, 0x5a, 0x4e,
+ 0xb2, 0x68, 0x00, 0x2a, 0x00, 0xd0, 0xfe, 0xe7, 0x58, 0x4b, 0x1a, 0x70,
+ 0x9a, 0x68, 0x00, 0x2a, 0xfc, 0xd1, 0x57, 0x4c, 0x02, 0x32, 0x23, 0x69,
+ 0x93, 0x43, 0x23, 0x61, 0xe3, 0x68, 0x5b, 0x07, 0xfc, 0xd5, 0x23, 0x69,
+ 0x53, 0x4a, 0x1a, 0x40, 0x80, 0x23, 0x1b, 0x03, 0x13, 0x43, 0x18, 0x22,
+ 0x23, 0x61, 0x23, 0x69, 0x93, 0x43, 0x23, 0x61, 0x02, 0x23, 0x22, 0x69,
+ 0x13, 0x43, 0x23, 0x61, 0xe3, 0x68, 0xdb, 0x07, 0xfc, 0xd5, 0xe3, 0x68,
+ 0x9b, 0x07, 0xfc, 0xd4, 0x4a, 0x4d, 0x2b, 0x78, 0xdb, 0x07, 0x02, 0xd4,
+ 0x2b, 0x78, 0x5b, 0x07, 0x05, 0xd5, 0x64, 0x20, 0xff, 0xf7, 0x96, 0xf9,
+ 0xe3, 0x68, 0x9b, 0x07, 0xf9, 0xd4, 0x02, 0x22, 0x23, 0x69, 0x93, 0x43,
+ 0x23, 0x61, 0xe3, 0x68, 0x5b, 0x07, 0xfc, 0xd5, 0x18, 0x22, 0x23, 0x69,
+ 0x93, 0x43, 0x1a, 0x00, 0x08, 0x23, 0x13, 0x43, 0x23, 0x61, 0x02, 0x23,
+ 0x22, 0x69, 0x13, 0x43, 0x23, 0x61, 0xff, 0xf7, 0x51, 0xfa, 0x3b, 0x4b,
+ 0x1f, 0x68, 0x3b, 0x4b, 0xfa, 0x18, 0xf8, 0x23, 0x9b, 0x02, 0x9a, 0x42,
+ 0x12, 0xd8, 0x39, 0x4a, 0x39, 0x4b, 0x12, 0x68, 0x39, 0x4c, 0x9a, 0x42,
+ 0x32, 0xd1, 0x2a, 0x78, 0x38, 0x4b, 0xd2, 0x07, 0x02, 0xd4, 0x22, 0x68,
+ 0x9a, 0x42, 0x2b, 0xd0, 0x23, 0x60, 0x36, 0x4b, 0x36, 0x4a, 0x1b, 0x68,
+ 0x32, 0x33, 0x13, 0x60, 0xff, 0xf7, 0x5a, 0xf8, 0xbf, 0xf3, 0x5f, 0x8f,
+ 0x62, 0xb6, 0xff, 0xf7, 0x1f, 0xfe, 0x40, 0x20, 0xff, 0xf7, 0x34, 0xfa,
+ 0x80, 0x27, 0x0a, 0x23, 0x01, 0x26, 0x2f, 0x4d, 0xff, 0x01, 0x2b, 0x70,
+ 0xff, 0xf7, 0xa6, 0xfb, 0x2d, 0x4c, 0x00, 0x28, 0x0a, 0xd0, 0x23, 0x78,
+ 0xda, 0xb2, 0x00, 0x2b, 0x05, 0xd1, 0x28, 0x4b, 0x38, 0x00, 0x1a, 0x60,
+ 0xff, 0xf7, 0x20, 0xfa, 0x2e, 0x70, 0x26, 0x70, 0x23, 0x78, 0x00, 0x2b,
+ 0x25, 0xd0, 0x00, 0xf0, 0xbf, 0xfa, 0xfc, 0xe7, 0x2b, 0x78, 0xdb, 0x07,
+ 0xda, 0x0f, 0x00, 0x2b, 0x0d, 0xd0, 0x00, 0x23, 0x80, 0x22, 0x23, 0x60,
+ 0x20, 0x4b, 0x52, 0x03, 0x5a, 0x61, 0x80, 0x23, 0x9b, 0x01, 0x1a, 0x68,
+ 0x82, 0xf3, 0x08, 0x88, 0xb3, 0x60, 0x38, 0x47, 0xc6, 0xe7, 0x21, 0x68,
+ 0x1b, 0x4b, 0x99, 0x42, 0x01, 0xd1, 0x22, 0x60, 0xc0, 0xe7, 0x21, 0x68,
+ 0x12, 0x4a, 0x91, 0x42, 0xe7, 0xd0, 0xfa, 0x20, 0x23, 0x60, 0x40, 0x00,
+ 0xff, 0xf7, 0x1c, 0xf9, 0xe1, 0xe7, 0x23, 0x78, 0x00, 0x2b, 0xc3, 0xd1,
+ 0xff, 0x33, 0xc0, 0x46, 0x01, 0x3b, 0x00, 0x2b, 0xfb, 0xd1, 0xbd, 0xe7,
+ 0x00, 0xed, 0x00, 0xe0, 0x00, 0x20, 0x00, 0x40, 0x00, 0x18, 0x00, 0x40,
+ 0xff, 0xff, 0xc0, 0xff, 0x00, 0x0c, 0x00, 0x40, 0x04, 0x20, 0x00, 0x00,
+ 0x00, 0xe0, 0xff, 0xff, 0xa8, 0x20, 0x00, 0x00, 0x7c, 0xb0, 0xee, 0x87,
+ 0xfc, 0x7f, 0x00, 0x20, 0xef, 0x69, 0x26, 0xf0, 0xe0, 0x03, 0x00, 0x20,
+ 0xd8, 0x03, 0x00, 0x20, 0x04, 0x00, 0x00, 0x20, 0x76, 0x07, 0x00, 0x20,
+ 0x00, 0x60, 0x00, 0x41, 0xef, 0x69, 0x16, 0xf0, 0x10, 0xb5, 0x05, 0x4c,
+ 0x12, 0x22, 0x00, 0x21, 0x20, 0x00, 0x00, 0xf0, 0xac, 0xfc, 0xf0, 0x23,
+ 0x23, 0x70, 0xe6, 0x3b, 0xe3, 0x71, 0x10, 0xbd, 0xb3, 0x09, 0x00, 0x20,
+ 0x10, 0xb5, 0xff, 0xf7, 0xef, 0xff, 0x00, 0x22, 0x01, 0x4b, 0x1a, 0x73,
+ 0x10, 0xbd, 0xc0, 0x46, 0x9e, 0x01, 0x00, 0x20, 0xf7, 0xb5, 0x80, 0x27,
0x04, 0x00, 0x16, 0x00, 0x00, 0x25, 0x01, 0x91, 0xbf, 0x00, 0xa3, 0x68,
0xab, 0x42, 0x00, 0xd8, 0xf7, 0xbd, 0x39, 0x00, 0xa2, 0x78, 0x01, 0x9b,
- 0xe0, 0x68, 0xff, 0xf7, 0x94, 0xfa, 0x80, 0x23, 0x5b, 0x01, 0xe8, 0x18,
- 0x01, 0x22, 0x33, 0x00, 0xe1, 0x68, 0xff, 0xf7, 0x8d, 0xfe, 0x01, 0x35,
+ 0xe0, 0x68, 0xff, 0xf7, 0xa4, 0xfa, 0x80, 0x23, 0x5b, 0x01, 0xe8, 0x18,
+ 0x01, 0x22, 0x33, 0x00, 0xe1, 0x68, 0xff, 0xf7, 0x83, 0xfe, 0x01, 0x35,
0xeb, 0xe7, 0x70, 0xb5, 0x13, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x15, 0x00,
- 0x00, 0x20, 0x0a, 0x00, 0x01, 0x21, 0xff, 0xf7, 0x0b, 0xfa, 0x00, 0x23,
+ 0x00, 0x20, 0x0a, 0x00, 0x01, 0x21, 0xff, 0xf7, 0x1b, 0xfa, 0x00, 0x23,
0x98, 0x42, 0x06, 0xd0, 0x2b, 0x00, 0x22, 0x00, 0x1f, 0x21, 0x30, 0x00,
- 0xff, 0xf7, 0x02, 0xfa, 0x01, 0x23, 0x18, 0x00, 0x70, 0xbd, 0x00, 0x00,
- 0x10, 0xb5, 0x04, 0x22, 0x0d, 0x21, 0x02, 0x48, 0xff, 0xf7, 0xc8, 0xfa,
- 0x10, 0xbd, 0xc0, 0x46, 0x9e, 0x01, 0x00, 0x20, 0x10, 0xb5, 0x0b, 0x48,
- 0x0b, 0x49, 0x42, 0x79, 0x03, 0x79, 0x12, 0x02, 0x1a, 0x43, 0x83, 0x79,
- 0x1b, 0x04, 0x1a, 0x43, 0xc3, 0x79, 0x1b, 0x06, 0x13, 0x43, 0x1a, 0x0a,
- 0x0b, 0x71, 0x4a, 0x71, 0x1a, 0x0c, 0x1b, 0x0e, 0x8a, 0x71, 0xcb, 0x71,
- 0xff, 0xf7, 0xe0, 0xff, 0x10, 0xbd, 0xc0, 0x46, 0x24, 0x06, 0x00, 0x20,
+ 0xff, 0xf7, 0x12, 0xfa, 0x01, 0x23, 0x18, 0x00, 0x70, 0xbd, 0x00, 0x00,
+ 0x10, 0xb5, 0x04, 0x22, 0x0d, 0x21, 0x02, 0x48, 0xff, 0xf7, 0xd8, 0xfa,
+ 0x10, 0xbd, 0xc0, 0x46, 0x9e, 0x01, 0x00, 0x20, 0x10, 0xb5, 0x0b, 0x4c,
+ 0x0b, 0x48, 0x61, 0x79, 0x23, 0x79, 0xa2, 0x79, 0x09, 0x02, 0x19, 0x43,
+ 0xe3, 0x79, 0x12, 0x04, 0x11, 0x43, 0x1b, 0x06, 0x0b, 0x43, 0x1a, 0x0a,
+ 0x03, 0x71, 0x42, 0x71, 0x1a, 0x0c, 0x1b, 0x0e, 0x82, 0x71, 0xc3, 0x71,
+ 0xff, 0xf7, 0xe0, 0xff, 0x10, 0xbd, 0xc0, 0x46, 0x94, 0x09, 0x00, 0x20,
0x9e, 0x01, 0x00, 0x20, 0x70, 0xb5, 0x04, 0x22, 0x0d, 0x00, 0xff, 0xf7,
- 0xa3, 0xfa, 0x16, 0x4c, 0x85, 0x42, 0x0f, 0xd0, 0xff, 0xf7, 0x90, 0xff,
- 0x01, 0x23, 0x04, 0x22, 0x23, 0x73, 0x13, 0x4b, 0x9a, 0x70, 0x00, 0x22,
+ 0xb3, 0xfa, 0x15, 0x4c, 0x85, 0x42, 0x0f, 0xd0, 0xff, 0xf7, 0x86, 0xff,
+ 0x01, 0x23, 0x04, 0x22, 0x23, 0x73, 0x12, 0x4b, 0x9a, 0x70, 0x00, 0x22,
0xda, 0x70, 0x1a, 0x71, 0x5a, 0x71, 0x9a, 0x71, 0x1a, 0x73, 0x5a, 0x73,
- 0xff, 0xf7, 0xcc, 0xff, 0xff, 0xf7, 0x80, 0xff, 0x00, 0x23, 0x23, 0x73,
- 0x63, 0x7a, 0x21, 0x7a, 0x1b, 0x02, 0x0b, 0x43, 0xa1, 0x7a, 0x09, 0x04,
- 0x19, 0x43, 0xe3, 0x7a, 0x1b, 0x06, 0x19, 0x43, 0x49, 0x1b, 0x0b, 0x0a,
- 0x21, 0x72, 0x63, 0x72, 0x0b, 0x0c, 0x09, 0x0e, 0xa3, 0x72, 0xe1, 0x72,
- 0xff, 0xf7, 0xb4, 0xff, 0x70, 0xbd, 0xc0, 0x46, 0x9e, 0x01, 0x00, 0x20,
- 0x43, 0x06, 0x00, 0x20, 0x70, 0xb5, 0x18, 0x4c, 0x14, 0x22, 0x05, 0x00,
- 0x00, 0x21, 0x20, 0x00, 0x00, 0xf0, 0x19, 0xfc, 0x15, 0x4a, 0x00, 0x2d,
- 0x1f, 0xd0, 0x21, 0x00, 0x08, 0x23, 0xd0, 0x7d, 0x08, 0x31, 0x3f, 0x26,
- 0x52, 0x7c, 0x32, 0x40, 0x1c, 0x2a, 0x01, 0xd0, 0xb2, 0x42, 0x05, 0xd1,
- 0x0f, 0x4a, 0x0c, 0x33, 0x0a, 0x80, 0x05, 0x22, 0xdb, 0xb2, 0xca, 0x70,
- 0x19, 0x1c, 0x83, 0x42, 0x00, 0xd9, 0x01, 0x1c, 0xc9, 0xb2, 0x00, 0x2d,
- 0x0b, 0xd0, 0x02, 0x3b, 0x9b, 0xb2, 0x1b, 0x02, 0x23, 0x80, 0x20, 0x00,
- 0xff, 0xf7, 0xa0, 0xff, 0x70, 0xbd, 0x04, 0x23, 0xd0, 0x7c, 0x21, 0x1d,
- 0xdf, 0xe7, 0x01, 0x3b, 0x23, 0x70, 0xf4, 0xe7, 0x08, 0x06, 0x00, 0x20,
- 0x24, 0x06, 0x00, 0x20, 0x1c, 0x0a, 0x00, 0x00, 0xf0, 0xb5, 0x04, 0x00,
- 0x00, 0x25, 0x2b, 0x4b, 0x85, 0xb0, 0x59, 0x7c, 0x03, 0xaa, 0xd1, 0x70,
- 0x99, 0x7c, 0x91, 0x70, 0xd9, 0x7c, 0x51, 0x70, 0x19, 0x7d, 0x11, 0x70,
- 0x99, 0x7d, 0x02, 0xaa, 0xd1, 0x70, 0xdb, 0x7d, 0x93, 0x70, 0x53, 0x88,
- 0x01, 0x93, 0x01, 0x9b, 0xab, 0x42, 0x08, 0xd8, 0xff, 0xf7, 0x12, 0xff,
- 0x00, 0x22, 0x20, 0x4b, 0x1a, 0x73, 0xff, 0xf7, 0x57, 0xff, 0x05, 0xb0,
- 0xf0, 0xbd, 0xff, 0xf7, 0x33, 0xfa, 0x00, 0x28, 0xf9, 0xd0, 0x03, 0x9b,
- 0x1b, 0x4f, 0xee, 0x18, 0x00, 0x2c, 0x1f, 0xd0, 0x39, 0x00, 0x30, 0x00,
- 0xff, 0xf7, 0xfc, 0xfc, 0x80, 0x21, 0x04, 0x22, 0x38, 0x00, 0x89, 0x00,
- 0xff, 0xf7, 0x06, 0xfa, 0x13, 0x4a, 0x01, 0x35, 0x51, 0x7a, 0x13, 0x7a,
- 0x09, 0x02, 0x19, 0x43, 0x93, 0x7a, 0x1b, 0x04, 0x19, 0x43, 0xd3, 0x7a,
- 0x1b, 0x06, 0x0b, 0x43, 0x0f, 0x49, 0x5b, 0x18, 0x19, 0x0a, 0x13, 0x72,
- 0x51, 0x72, 0x19, 0x0c, 0x1b, 0x0e, 0x91, 0x72, 0xd3, 0x72, 0xca, 0xe7,
- 0x80, 0x21, 0x23, 0x00, 0x38, 0x00, 0x05, 0x22, 0x89, 0x00, 0xff, 0xf7,
- 0x8e, 0xf9, 0x22, 0x00, 0x39, 0x00, 0x30, 0x00, 0x06, 0x4b, 0xff, 0xf7,
- 0x89, 0xfd, 0xff, 0xf7, 0x65, 0xf8, 0xd9, 0xe7, 0x24, 0x06, 0x00, 0x20,
- 0x9e, 0x01, 0x00, 0x20, 0x08, 0x04, 0x00, 0x20, 0x00, 0xfe, 0xff, 0xff,
- 0x58, 0x06, 0x00, 0x20, 0x7f, 0xb5, 0x00, 0xf0, 0x3f, 0xfb, 0x45, 0x4e,
- 0x00, 0x22, 0x05, 0x21, 0x30, 0x00, 0xff, 0xf7, 0xe8, 0xfe, 0x00, 0x28,
- 0x49, 0xd0, 0x73, 0x7a, 0x35, 0x7a, 0x1b, 0x02, 0x2b, 0x43, 0xb5, 0x7a,
- 0x3f, 0x4c, 0x2d, 0x04, 0x2b, 0x43, 0xf5, 0x7a, 0x2d, 0x06, 0x1d, 0x43,
- 0x2b, 0x0a, 0x63, 0x72, 0x2b, 0x0c, 0xa3, 0x72, 0x2b, 0x0e, 0x25, 0x72,
- 0xe3, 0x72, 0xf0, 0x7b, 0x2f, 0x28, 0x27, 0xd8, 0x19, 0x28, 0x15, 0xd8,
- 0x03, 0x28, 0x27, 0xd0, 0x12, 0x28, 0x2f, 0xd0, 0x00, 0x28, 0x40, 0xd0,
- 0xff, 0xf7, 0x9e, 0xfe, 0x01, 0x23, 0x05, 0x22, 0x23, 0x73, 0x32, 0x4b,
- 0x9a, 0x70, 0x00, 0x22, 0xda, 0x70, 0x1a, 0x71, 0x5a, 0x71, 0x9a, 0x71,
- 0x1a, 0x73, 0x20, 0x32, 0x5a, 0x73, 0x34, 0xe0, 0x1a, 0x38, 0x15, 0x28,
- 0xec, 0xd8, 0x00, 0xf0, 0x2b, 0xfb, 0x28, 0x2c, 0xeb, 0xeb, 0x2c, 0xeb,
- 0xeb, 0xeb, 0xeb, 0x41, 0xeb, 0x33, 0xeb, 0xeb, 0x3b, 0xeb, 0x3f, 0xeb,
- 0xeb, 0xeb, 0xeb, 0x2c, 0x5a, 0x28, 0xdd, 0xd1, 0x01, 0x20, 0x19, 0xe0,
- 0xf3, 0x7c, 0x19, 0x1c, 0x12, 0x2b, 0x00, 0xd9, 0x12, 0x21, 0x20, 0x48,
- 0xc9, 0xb2, 0xff, 0xf7, 0xd9, 0xfe, 0x7f, 0xbd, 0x1e, 0x4c, 0x1f, 0x49,
- 0x20, 0x00, 0x18, 0x22, 0x08, 0x30, 0xff, 0xf7, 0x59, 0xfc, 0xf3, 0x7c,
- 0x19, 0x1c, 0x24, 0x2b, 0x00, 0xd9, 0x24, 0x21, 0x20, 0x00, 0xc9, 0xb2,
- 0xed, 0xe7, 0x00, 0x20, 0xff, 0xf7, 0xfc, 0xfe, 0xeb, 0xe7, 0xff, 0xf7,
- 0x5d, 0xfe, 0x00, 0x23, 0x23, 0x73, 0xff, 0xf7, 0xa3, 0xfe, 0xe4, 0xe7,
+ 0xff, 0xf7, 0xcc, 0xff, 0xff, 0xf7, 0x84, 0xff, 0x63, 0x7a, 0x21, 0x7a,
+ 0x1b, 0x02, 0x0b, 0x43, 0xa1, 0x7a, 0xe2, 0x7a, 0x09, 0x04, 0x12, 0x06,
+ 0x19, 0x43, 0x11, 0x43, 0x49, 0x1b, 0x0b, 0x0a, 0x21, 0x72, 0x63, 0x72,
+ 0x0b, 0x0c, 0x09, 0x0e, 0xa3, 0x72, 0xe1, 0x72, 0xff, 0xf7, 0xb6, 0xff,
+ 0x70, 0xbd, 0xc0, 0x46, 0x9e, 0x01, 0x00, 0x20, 0xb3, 0x09, 0x00, 0x20,
+ 0x70, 0xb5, 0x18, 0x4c, 0x14, 0x22, 0x05, 0x00, 0x00, 0x21, 0x20, 0x00,
+ 0x00, 0xf0, 0x07, 0xfc, 0x15, 0x4a, 0x00, 0x2d, 0x1f, 0xd0, 0x21, 0x00,
+ 0x08, 0x23, 0xd0, 0x7d, 0x08, 0x31, 0x3f, 0x26, 0x52, 0x7c, 0x32, 0x40,
+ 0x1c, 0x2a, 0x01, 0xd0, 0xb2, 0x42, 0x05, 0xd1, 0x0f, 0x4a, 0x0c, 0x33,
+ 0x0a, 0x80, 0x05, 0x22, 0xdb, 0xb2, 0xca, 0x70, 0x19, 0x1c, 0x83, 0x42,
+ 0x00, 0xd9, 0x01, 0x1c, 0xc9, 0xb2, 0x00, 0x2d, 0x0b, 0xd0, 0x02, 0x3b,
+ 0x9b, 0xb2, 0x1b, 0x02, 0x23, 0x80, 0x20, 0x00, 0xff, 0xf7, 0xa2, 0xff,
+ 0x70, 0xbd, 0x04, 0x23, 0xd0, 0x7c, 0x21, 0x1d, 0xdf, 0xe7, 0x01, 0x3b,
+ 0x23, 0x70, 0xf4, 0xe7, 0x78, 0x09, 0x00, 0x20, 0x94, 0x09, 0x00, 0x20,
+ 0x1c, 0x0a, 0x00, 0x00, 0xf0, 0xb5, 0x04, 0x00, 0x00, 0x25, 0x2a, 0x4b,
+ 0x85, 0xb0, 0x59, 0x7c, 0x03, 0xaa, 0xd1, 0x70, 0x99, 0x7c, 0x91, 0x70,
+ 0xd9, 0x7c, 0x51, 0x70, 0x19, 0x7d, 0x11, 0x70, 0x99, 0x7d, 0x02, 0xaa,
+ 0xd1, 0x70, 0xdb, 0x7d, 0x93, 0x70, 0x53, 0x88, 0x01, 0x93, 0x01, 0x9b,
+ 0xab, 0x42, 0x05, 0xd8, 0xff, 0xf7, 0x18, 0xff, 0xff, 0xf7, 0x5c, 0xff,
+ 0x05, 0xb0, 0xf0, 0xbd, 0xff, 0xf7, 0x48, 0xfa, 0x00, 0x28, 0xf9, 0xd0,
+ 0x03, 0x9b, 0x1b, 0x4f, 0xee, 0x18, 0x00, 0x2c, 0x1f, 0xd0, 0x39, 0x00,
+ 0x30, 0x00, 0xff, 0xf7, 0xf9, 0xfc, 0x80, 0x21, 0x04, 0x22, 0x38, 0x00,
+ 0x89, 0x00, 0xff, 0xf7, 0x1b, 0xfa, 0x15, 0x4a, 0x01, 0x35, 0x50, 0x7a,
+ 0x13, 0x7a, 0x91, 0x7a, 0x00, 0x02, 0x18, 0x43, 0xd3, 0x7a, 0x09, 0x04,
+ 0x08, 0x43, 0x1b, 0x06, 0x10, 0x49, 0x03, 0x43, 0x5b, 0x18, 0x19, 0x0a,
+ 0x13, 0x72, 0x51, 0x72, 0x19, 0x0c, 0x1b, 0x0e, 0x91, 0x72, 0xd3, 0x72,
+ 0xcd, 0xe7, 0x80, 0x21, 0x23, 0x00, 0x38, 0x00, 0x05, 0x22, 0x89, 0x00,
+ 0xff, 0xf7, 0xa3, 0xf9, 0x22, 0x00, 0x39, 0x00, 0x30, 0x00, 0x07, 0x4b,
+ 0xff, 0xf7, 0x84, 0xfd, 0xff, 0xf7, 0x7a, 0xf8, 0xd9, 0xe7, 0xc0, 0x46,
+ 0x94, 0x09, 0x00, 0x20, 0x78, 0x07, 0x00, 0x20, 0x9e, 0x01, 0x00, 0x20,
+ 0x00, 0xfe, 0xff, 0xff, 0xc8, 0x09, 0x00, 0x20, 0x7f, 0xb5, 0x00, 0xf0,
+ 0x2f, 0xfb, 0x44, 0x4e, 0x00, 0x22, 0x05, 0x21, 0x30, 0x00, 0xff, 0xf7,
+ 0xec, 0xfe, 0x00, 0x28, 0x49, 0xd0, 0x73, 0x7a, 0x32, 0x7a, 0xb5, 0x7a,
+ 0x1b, 0x02, 0x1a, 0x43, 0xf3, 0x7a, 0x2d, 0x04, 0x1b, 0x06, 0x15, 0x43,
+ 0x3c, 0x4c, 0x1d, 0x43, 0x2b, 0x0a, 0x63, 0x72, 0x2b, 0x0c, 0xa3, 0x72,
+ 0x2b, 0x0e, 0x25, 0x72, 0xe3, 0x72, 0xf0, 0x7b, 0x2f, 0x28, 0x27, 0xd8,
+ 0x19, 0x28, 0x15, 0xd8, 0x03, 0x28, 0x27, 0xd0, 0x12, 0x28, 0x2f, 0xd0,
+ 0x00, 0x28, 0x40, 0xd0, 0xff, 0xf7, 0x98, 0xfe, 0x01, 0x23, 0x05, 0x22,
+ 0x23, 0x73, 0x31, 0x4b, 0x9a, 0x70, 0x00, 0x22, 0xda, 0x70, 0x1a, 0x71,
+ 0x5a, 0x71, 0x9a, 0x71, 0x1a, 0x73, 0x20, 0x32, 0x5a, 0x73, 0x32, 0xe0,
+ 0x1a, 0x38, 0x15, 0x28, 0xec, 0xd8, 0x00, 0xf0, 0x1b, 0xfb, 0x28, 0x2c,
+ 0xeb, 0xeb, 0x2c, 0xeb, 0xeb, 0xeb, 0xeb, 0x3f, 0xeb, 0x31, 0xeb, 0xeb,
+ 0x39, 0xeb, 0x3d, 0xeb, 0xeb, 0xeb, 0xeb, 0x2c, 0x5a, 0x28, 0xdd, 0xd1,
+ 0x01, 0x20, 0x19, 0xe0, 0xf3, 0x7c, 0x19, 0x1c, 0x12, 0x2b, 0x00, 0xd9,
+ 0x12, 0x21, 0x1f, 0x48, 0xc9, 0xb2, 0xff, 0xf7, 0xdd, 0xfe, 0x7f, 0xbd,
+ 0x1d, 0x4c, 0x1e, 0x49, 0x20, 0x00, 0x18, 0x22, 0x08, 0x30, 0xff, 0xf7,
+ 0x55, 0xfc, 0xf3, 0x7c, 0x19, 0x1c, 0x24, 0x2b, 0x00, 0xd9, 0x24, 0x21,
+ 0x20, 0x00, 0xc9, 0xb2, 0xed, 0xe7, 0x00, 0x20, 0xff, 0xf7, 0xfe, 0xfe,
+ 0xeb, 0xe7, 0xff, 0xf7, 0x65, 0xfe, 0xff, 0xf7, 0xa9, 0xfe, 0xe6, 0xe7,
0x80, 0x23, 0x13, 0x48, 0x9b, 0x02, 0x43, 0x60, 0x12, 0x4b, 0x08, 0x21,
- 0x03, 0x60, 0xda, 0xe7, 0x01, 0x20, 0xff, 0xf7, 0x21, 0xff, 0xd8, 0xe7,
+ 0x03, 0x60, 0xdc, 0xe7, 0x01, 0x20, 0xff, 0xf7, 0x25, 0xff, 0xda, 0xe7,
0x00, 0x20, 0xfa, 0xe7, 0x0c, 0x26, 0x0e, 0x49, 0x32, 0x00, 0x01, 0xa8,
- 0x00, 0xf0, 0xf8, 0xfa, 0xb5, 0x42, 0x04, 0xd9, 0x00, 0x23, 0x26, 0x72,
- 0x63, 0x72, 0xa3, 0x72, 0xe3, 0x72, 0x0c, 0x21, 0x01, 0xa8, 0xc4, 0xe7,
- 0x24, 0x06, 0x00, 0x20, 0x9e, 0x01, 0x00, 0x20, 0x43, 0x06, 0x00, 0x20,
- 0xac, 0x01, 0x00, 0x20, 0x83, 0x1b, 0x00, 0x00, 0x1c, 0x06, 0x00, 0x20,
- 0x00, 0x00, 0x3e, 0x7f, 0x26, 0x1d, 0x00, 0x00, 0x72, 0xb6, 0xbf, 0xf3,
+ 0x00, 0xf0, 0xea, 0xfa, 0xb5, 0x42, 0x04, 0xd9, 0x00, 0x23, 0x26, 0x72,
+ 0x63, 0x72, 0xa3, 0x72, 0xe3, 0x72, 0x0c, 0x21, 0x01, 0xa8, 0xc6, 0xe7,
+ 0x94, 0x09, 0x00, 0x20, 0x9e, 0x01, 0x00, 0x20, 0xb3, 0x09, 0x00, 0x20,
+ 0xac, 0x01, 0x00, 0x20, 0x4f, 0x1b, 0x00, 0x00, 0x8c, 0x09, 0x00, 0x20,
+ 0x00, 0x00, 0x3e, 0x7f, 0xef, 0x1c, 0x00, 0x00, 0x72, 0xb6, 0xbf, 0xf3,
0x5f, 0x8f, 0x82, 0x23, 0x03, 0x4a, 0xdb, 0x05, 0x9a, 0x82, 0x9a, 0x83,
0x00, 0x22, 0x02, 0x4b, 0x9a, 0x60, 0x70, 0x47, 0xff, 0x03, 0x00, 0x00,
- 0x00, 0xed, 0x00, 0xe0, 0xf0, 0xb5, 0xc7, 0xb0, 0x0f, 0xaf, 0x04, 0x00,
+ 0x00, 0xed, 0x00, 0xe0, 0xf0, 0xb5, 0xc5, 0xb0, 0x0d, 0xaf, 0x04, 0x00,
0xff, 0xf7, 0xea, 0xff, 0x44, 0x22, 0x00, 0x21, 0x38, 0x00, 0x00, 0xf0,
- 0xcc, 0xfa, 0x98, 0x22, 0x00, 0x21, 0x20, 0xa8, 0x00, 0xf0, 0xc7, 0xfa,
+ 0xbe, 0xfa, 0x98, 0x22, 0x00, 0x21, 0x1e, 0xa8, 0x00, 0xf0, 0xb9, 0xfa,
0x02, 0x23, 0x0f, 0x21, 0xbb, 0x70, 0xa3, 0x78, 0x62, 0x78, 0x0b, 0x40,
- 0xa3, 0x70, 0x63, 0x68, 0x0a, 0x40, 0x08, 0x93, 0x00, 0x23, 0x29, 0x4e,
- 0x07, 0xad, 0xe1, 0x68, 0x28, 0x48, 0x62, 0x70, 0x09, 0x93, 0x01, 0x22,
- 0x2b, 0x73, 0x20, 0xab, 0x07, 0x96, 0xff, 0xf7, 0xa7, 0xfc, 0x39, 0x00,
- 0x20, 0x00, 0x20, 0xaa, 0xff, 0xf7, 0xfc, 0xfd, 0x01, 0x23, 0x0d, 0x21,
- 0x28, 0x00, 0x62, 0x78, 0xff, 0xf7, 0xac, 0xf8, 0x01, 0x96, 0x00, 0x25,
- 0x3a, 0x00, 0xa1, 0x78, 0x07, 0xa8, 0xff, 0xf7, 0x0a, 0xfe, 0x00, 0x28,
- 0x27, 0xd0, 0x01, 0x9b, 0x03, 0xae, 0x03, 0x93, 0x08, 0x9b, 0x23, 0x22,
- 0x73, 0x60, 0x09, 0x9b, 0x00, 0x93, 0xb3, 0x60, 0x00, 0x23, 0x33, 0x73,
- 0x02, 0xab, 0x9b, 0x18, 0x1b, 0x78, 0x00, 0x2b, 0x10, 0xd0, 0x2a, 0x2b,
- 0x1c, 0xd1, 0x02, 0xab, 0x5d, 0x8d, 0x39, 0x00, 0x6d, 0xba, 0x5d, 0x80,
- 0xad, 0xb2, 0xa5, 0x60, 0x20, 0x00, 0x20, 0xaa, 0xff, 0xf7, 0xd0, 0xfd,
- 0xb3, 0x68, 0x6d, 0x02, 0x5d, 0x1b, 0xb5, 0x60, 0x01, 0x23, 0x0d, 0x21,
- 0x30, 0x00, 0x62, 0x78, 0xff, 0xf7, 0x7c, 0xf8, 0xcf, 0xe7, 0x07, 0x4b,
- 0x9d, 0x42, 0x01, 0xd9, 0xfe, 0xf7, 0xb8, 0xfe, 0x01, 0x35, 0xc9, 0xe7,
- 0xfe, 0xf7, 0xe8, 0xfe, 0xee, 0xe7, 0xc0, 0x46, 0x53, 0x42, 0x53, 0x55,
- 0xff, 0x0f, 0x00, 0x00, 0xf8, 0x24, 0x01, 0x00, 0x30, 0xb5, 0xef, 0xf3,
- 0x08, 0x83, 0x05, 0x4c, 0x23, 0x60, 0x03, 0x68, 0x83, 0xf3, 0x08, 0x88,
- 0x45, 0x68, 0xa8, 0x47, 0x23, 0x68, 0x83, 0xf3, 0x08, 0x88, 0x30, 0xbd,
- 0xd0, 0x0d, 0x00, 0x20, 0x07, 0xb5, 0x01, 0x00, 0x01, 0x22, 0x68, 0x46,
- 0xfe, 0xf7, 0x7a, 0xfe, 0x08, 0x21, 0x68, 0x46, 0xff, 0xf7, 0x4c, 0xfb,
- 0x07, 0xbd, 0x00, 0x00, 0xf7, 0xb5, 0x7a, 0x23, 0x00, 0x22, 0x80, 0x4c,
- 0x80, 0x49, 0x22, 0x60, 0x0b, 0x70, 0x00, 0x92, 0x01, 0x93, 0xff, 0xf7,
- 0xb7, 0xfe, 0x7e, 0x4d, 0x40, 0x21, 0x28, 0x00, 0xff, 0xf7, 0x48, 0xfb,
- 0x7c, 0x4b, 0x18, 0x60, 0x00, 0x9b, 0x2b, 0x54, 0x00, 0x28, 0x01, 0xd0,
- 0xfe, 0xf7, 0x04, 0xff, 0x79, 0x4b, 0x00, 0x9a, 0x1d, 0x60, 0x79, 0x4b,
+ 0xa3, 0x70, 0x26, 0x4b, 0x0a, 0x40, 0x05, 0x93, 0x63, 0x68, 0x05, 0xad,
+ 0x06, 0x93, 0x00, 0x23, 0xe1, 0x68, 0x07, 0x93, 0x22, 0x48, 0x62, 0x70,
+ 0x2b, 0x73, 0x01, 0x22, 0x1e, 0xab, 0xff, 0xf7, 0xa3, 0xfc, 0x39, 0x00,
+ 0x20, 0x00, 0x1e, 0xaa, 0xff, 0xf7, 0x02, 0xfe, 0x28, 0x00, 0x01, 0x23,
+ 0x0d, 0x21, 0x62, 0x78, 0xff, 0xf7, 0xc2, 0xf8, 0x00, 0x25, 0x05, 0xae,
+ 0x3a, 0x00, 0x30, 0x00, 0xa1, 0x78, 0xff, 0xf7, 0x10, 0xfe, 0x00, 0x28,
+ 0x1e, 0xd0, 0x14, 0x4b, 0x01, 0xad, 0x01, 0x93, 0x06, 0x9b, 0x6b, 0x60,
+ 0x07, 0x9b, 0xab, 0x60, 0x00, 0x23, 0x2b, 0x73, 0xf3, 0x7b, 0x00, 0x2b,
+ 0xe4, 0xd0, 0x2a, 0x2b, 0x17, 0xd1, 0x6b, 0x46, 0xb2, 0x7d, 0x39, 0x00,
+ 0xda, 0x70, 0xf2, 0x7d, 0x20, 0x00, 0x9a, 0x70, 0x5e, 0x88, 0x1e, 0xaa,
+ 0xa6, 0x60, 0xff, 0xf7, 0xd9, 0xfd, 0xab, 0x68, 0x76, 0x02, 0x9e, 0x1b,
+ 0xae, 0x60, 0xd1, 0xe7, 0x06, 0x4b, 0x9d, 0x42, 0x01, 0xd9, 0xfe, 0xf7,
+ 0xd7, 0xfe, 0x01, 0x35, 0xd1, 0xe7, 0xfe, 0xf7, 0x07, 0xff, 0xc7, 0xe7,
+ 0x53, 0x42, 0x53, 0x55, 0xff, 0x0f, 0x00, 0x00, 0xf8, 0x24, 0x01, 0x00,
+ 0x30, 0xb5, 0xef, 0xf3, 0x08, 0x83, 0x05, 0x4c, 0x23, 0x60, 0x03, 0x68,
+ 0x83, 0xf3, 0x08, 0x88, 0x45, 0x68, 0xa8, 0x47, 0x23, 0x68, 0x83, 0xf3,
+ 0x08, 0x88, 0x30, 0xbd, 0xc0, 0x0a, 0x00, 0x20, 0x07, 0xb5, 0x01, 0x00,
+ 0x01, 0x22, 0x68, 0x46, 0xfe, 0xf7, 0x9a, 0xfe, 0x08, 0x21, 0x68, 0x46,
+ 0xff, 0xf7, 0x54, 0xfb, 0x07, 0xbd, 0x00, 0x00, 0xf8, 0xb5, 0x00, 0x23,
+ 0x7a, 0x22, 0x7f, 0x4c, 0x23, 0x60, 0x7f, 0x4b, 0x1a, 0x70, 0xff, 0xf7,
+ 0xc5, 0xfe, 0x7e, 0x4d, 0x40, 0x21, 0x28, 0x00, 0xff, 0xf7, 0x52, 0xfb,
+ 0x7c, 0x4b, 0x18, 0x60, 0x00, 0x23, 0x2b, 0x54, 0x98, 0x42, 0x01, 0xd0,
+ 0xfe, 0xf7, 0x26, 0xff, 0x00, 0x22, 0x79, 0x4b, 0x1d, 0x60, 0x79, 0x4b,
0x1a, 0x60, 0x78, 0x48, 0x75, 0x4b, 0x02, 0x68, 0x1f, 0x68, 0xba, 0x42,
0xe5, 0xd2, 0x74, 0x4e, 0x31, 0x68, 0x0b, 0x78, 0xff, 0x2b, 0x36, 0xd0,
0x73, 0x4d, 0x23, 0x2b, 0x00, 0xd0, 0xb3, 0xe0, 0x6c, 0x4b, 0x1b, 0x78,
0x53, 0x2b, 0x33, 0xd1, 0x2b, 0x68, 0x01, 0x32, 0x01, 0x31, 0x02, 0x60,
0x31, 0x60, 0xba, 0x1a, 0x9a, 0x42, 0x00, 0xd9, 0x1a, 0x00, 0x6c, 0x4d,
- 0x20, 0x68, 0x2a, 0x60, 0x00, 0xf0, 0x00, 0xfa, 0x67, 0x48, 0x29, 0x68,
+ 0x20, 0x68, 0x2a, 0x60, 0x00, 0xf0, 0xfe, 0xf9, 0x67, 0x48, 0x29, 0x68,
0x03, 0x68, 0x65, 0x4a, 0xcb, 0x18, 0x01, 0x3b, 0x03, 0x60, 0x10, 0x68,
0x4b, 0x1e, 0xc3, 0x18, 0x13, 0x60, 0x63, 0x4b, 0x64, 0x4d, 0x1b, 0x68,
0x29, 0x70, 0xc9, 0xb2, 0x8b, 0x42, 0x03, 0xd9, 0x20, 0x68, 0x59, 0x1a,
- 0xff, 0xf7, 0x13, 0xfb, 0xc0, 0x46, 0x58, 0x4b, 0x01, 0x9a, 0x1a, 0x70,
- 0x5b, 0x4b, 0x00, 0x9a, 0x1a, 0x60, 0x58, 0x4a, 0x13, 0x68, 0x01, 0x33,
+ 0xff, 0xf7, 0x1d, 0xfb, 0xc0, 0x46, 0x7a, 0x22, 0x57, 0x4b, 0x1a, 0x70,
+ 0x00, 0x22, 0x5b, 0x4b, 0x1a, 0x60, 0x58, 0x4a, 0x13, 0x68, 0x01, 0x33,
0x13, 0x60, 0x57, 0x4a, 0x13, 0x68, 0x01, 0x33, 0x13, 0x60, 0xb8, 0xe7,
- 0x52, 0x2b, 0x04, 0xd1, 0x29, 0x68, 0x20, 0x68, 0xff, 0xf7, 0xe7, 0xfa,
+ 0x52, 0x2b, 0x04, 0xd1, 0x29, 0x68, 0x20, 0x68, 0xff, 0xf7, 0xf1, 0xfa,
0xe9, 0xe7, 0x4f, 0x2b, 0x03, 0xd1, 0x2b, 0x68, 0x22, 0x68, 0x13, 0x70,
0xe3, 0xe7, 0x48, 0x2b, 0x03, 0xd1, 0x2b, 0x68, 0x22, 0x68, 0x13, 0x80,
0xdd, 0xe7, 0x57, 0x2b, 0x0a, 0xd1, 0x4e, 0x4b, 0x22, 0x68, 0x9a, 0x42,
- 0x02, 0xd1, 0x4d, 0x48, 0xfe, 0xf7, 0xba, 0xfe, 0x23, 0x68, 0x2a, 0x68,
+ 0x02, 0xd1, 0x4d, 0x48, 0xfe, 0xf7, 0xdc, 0xfe, 0x23, 0x68, 0x2a, 0x68,
0x1a, 0x60, 0xd0, 0xe7, 0x6f, 0x2b, 0x04, 0xd1, 0x01, 0x21, 0x20, 0x68,
- 0xff, 0xf7, 0xc0, 0xfa, 0xc9, 0xe7, 0x68, 0x2b, 0x05, 0xd1, 0x02, 0x21,
+ 0xff, 0xf7, 0xca, 0xfa, 0xc9, 0xe7, 0x68, 0x2b, 0x05, 0xd1, 0x02, 0x21,
0x23, 0x68, 0x1b, 0x88, 0x2b, 0x60, 0x28, 0x00, 0xf4, 0xe7, 0x77, 0x2b,
0x04, 0xd1, 0x23, 0x68, 0x04, 0x21, 0x1b, 0x68, 0x2b, 0x60, 0xf6, 0xe7,
- 0x47, 0x2b, 0x09, 0xd1, 0x28, 0x68, 0xff, 0xf7, 0x45, 0xff, 0x3d, 0x4b,
+ 0x47, 0x2b, 0x09, 0xd1, 0x28, 0x68, 0xff, 0xf7, 0x47, 0xff, 0x3d, 0x4b,
0x1b, 0x78, 0x00, 0x2b, 0xb1, 0xd0, 0x01, 0x21, 0x3b, 0x48, 0xe1, 0xe7,
0x54, 0x2b, 0xac, 0xd0, 0x4e, 0x2b, 0xaa, 0xd0, 0x56, 0x2b, 0x02, 0xd1,
0x2a, 0x21, 0x38, 0x48, 0xd8, 0xe7, 0x58, 0x2b, 0x05, 0xd1, 0x28, 0x68,
- 0xfe, 0xf7, 0x54, 0xfc, 0x03, 0x21, 0x35, 0x48, 0xd0, 0xe7, 0x59, 0x2b,
+ 0xfe, 0xf7, 0x6c, 0xfc, 0x03, 0x21, 0x35, 0x48, 0xd0, 0xe7, 0x59, 0x2b,
0x0d, 0xd1, 0x2a, 0x68, 0x20, 0x68, 0x33, 0x4b, 0x00, 0x2a, 0x03, 0xd1,
0x18, 0x60, 0x03, 0x21, 0x31, 0x48, 0xc5, 0xe7, 0x19, 0x68, 0x92, 0x08,
- 0xfe, 0xf7, 0x5a, 0xfc, 0xf7, 0xe7, 0x5a, 0x2b, 0x8b, 0xd1, 0x2f, 0x68,
+ 0xfe, 0xf7, 0x72, 0xfc, 0xf7, 0xe7, 0x5a, 0x2b, 0x8b, 0xd1, 0x2f, 0x68,
0x00, 0x25, 0x26, 0x68, 0xf7, 0x19, 0xb7, 0x42, 0x09, 0xd1, 0x01, 0x21,
- 0x2a, 0x48, 0xff, 0xf7, 0x77, 0xfa, 0x28, 0x00, 0xff, 0xf7, 0x1e, 0xff,
+ 0x2a, 0x48, 0xff, 0xf7, 0x81, 0xfa, 0x28, 0x00, 0xff, 0xf7, 0x20, 0xff,
0x03, 0x21, 0x28, 0x48, 0xae, 0xe7, 0x29, 0x00, 0x30, 0x78, 0xfe, 0xf7,
- 0x57, 0xfd, 0x01, 0x36, 0x05, 0x00, 0xec, 0xe7, 0x1a, 0x00, 0x30, 0x3a,
+ 0x79, 0xfd, 0x01, 0x36, 0x05, 0x00, 0xec, 0xe7, 0x1a, 0x00, 0x30, 0x3a,
0xd1, 0xb2, 0x09, 0x29, 0x04, 0xd8, 0x2b, 0x68, 0x1b, 0x01, 0x13, 0x43,
0x2b, 0x60, 0x70, 0xe7, 0x1a, 0x00, 0x41, 0x3a, 0x05, 0x2a, 0x03, 0xd8,
0x2a, 0x68, 0x37, 0x3b, 0x12, 0x01, 0xf4, 0xe7, 0x1a, 0x00, 0x61, 0x3a,
0x05, 0x2a, 0x03, 0xd8, 0x2a, 0x68, 0x57, 0x3b, 0x12, 0x01, 0xec, 0xe7,
- 0x2c, 0x2b, 0x03, 0xd1, 0x2b, 0x68, 0x23, 0x60, 0x00, 0x9b, 0xe7, 0xe7,
- 0x02, 0x4a, 0x13, 0x70, 0xfa, 0xe7, 0xc0, 0x46, 0xcc, 0x0d, 0x00, 0x20,
- 0x80, 0x0d, 0x00, 0x20, 0x88, 0x0d, 0x00, 0x20, 0x78, 0x0d, 0x00, 0x20,
- 0x7c, 0x0d, 0x00, 0x20, 0x84, 0x0d, 0x00, 0x20, 0xd4, 0x0d, 0x00, 0x20,
- 0xd8, 0x0d, 0x00, 0x20, 0x74, 0x0d, 0x00, 0x20, 0x0c, 0xed, 0x00, 0xe0,
- 0x40, 0x00, 0x40, 0x00, 0xf0, 0x06, 0x00, 0x20, 0x32, 0x1d, 0x00, 0x00,
- 0x42, 0x1d, 0x00, 0x00, 0x34, 0x1d, 0x00, 0x00, 0xf4, 0x06, 0x00, 0x20,
- 0x38, 0x1d, 0x00, 0x00, 0x3c, 0x1d, 0x00, 0x00, 0x3e, 0x1d, 0x00, 0x00,
+ 0x2c, 0x2b, 0x03, 0xd1, 0x2b, 0x68, 0x23, 0x60, 0x00, 0x23, 0xe7, 0xe7,
+ 0x02, 0x4a, 0x13, 0x70, 0xfa, 0xe7, 0xc0, 0x46, 0xbc, 0x0a, 0x00, 0x20,
+ 0x61, 0x0a, 0x00, 0x20, 0x68, 0x0a, 0x00, 0x20, 0xb4, 0x0a, 0x00, 0x20,
+ 0xb8, 0x0a, 0x00, 0x20, 0xac, 0x0a, 0x00, 0x20, 0x64, 0x0a, 0x00, 0x20,
+ 0xc8, 0x0a, 0x00, 0x20, 0xb0, 0x0a, 0x00, 0x20, 0x0c, 0xed, 0x00, 0xe0,
+ 0x40, 0x00, 0x40, 0x00, 0x60, 0x0a, 0x00, 0x20, 0xfb, 0x1c, 0x00, 0x00,
+ 0x0b, 0x1d, 0x00, 0x00, 0xfd, 0x1c, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x20,
+ 0x01, 0x1d, 0x00, 0x00, 0x05, 0x1d, 0x00, 0x00, 0x07, 0x1d, 0x00, 0x00,
0x03, 0x00, 0xf7, 0xb5, 0x47, 0x33, 0x04, 0x00, 0x1a, 0x78, 0x40, 0x21,
- 0x03, 0x00, 0x00, 0x20, 0xfe, 0xf7, 0x94, 0xfe, 0x00, 0x28, 0x01, 0xd1,
+ 0x03, 0x00, 0x00, 0x20, 0xfe, 0xf7, 0xb6, 0xfe, 0x00, 0x28, 0x01, 0xd1,
0x00, 0x20, 0xfe, 0xbd, 0x00, 0x23, 0x23, 0x70, 0x23, 0x79, 0x01, 0x93,
0x04, 0x23, 0xe3, 0x56, 0x00, 0x2b, 0xf5, 0xdb, 0x3f, 0x26, 0x20, 0x00,
0x01, 0x9f, 0xa5, 0x1d, 0xeb, 0x8f, 0x37, 0x40, 0x48, 0x30, 0xc0, 0x18,
- 0x3a, 0x00, 0x61, 0x1d, 0x00, 0xf0, 0xf2, 0xf8, 0xe8, 0x8f, 0x01, 0x9b,
+ 0x3a, 0x00, 0x61, 0x1d, 0x00, 0xf0, 0xf0, 0xf8, 0xe8, 0x8f, 0x01, 0x9b,
0xc0, 0x19, 0x80, 0xb2, 0xb3, 0x43, 0x01, 0xd1, 0xe8, 0x87, 0xe1, 0xe7,
0x00, 0x23, 0xeb, 0x87, 0xdf, 0xe7, 0xf0, 0xb5, 0x06, 0x00, 0x0c, 0x00,
0x1f, 0x00, 0x93, 0xb0, 0x01, 0x92, 0x3f, 0x25, 0xac, 0x42, 0x03, 0xdc,
0x25, 0x00, 0x00, 0x2f, 0x00, 0xd1, 0x40, 0x37, 0x3b, 0x00, 0x02, 0xaa,
0x2b, 0x43, 0x13, 0x70, 0x02, 0xab, 0x31, 0x00, 0x2a, 0x00, 0x58, 0x1c,
- 0x00, 0xf0, 0xd0, 0xf8, 0x6b, 0x46, 0x40, 0x21, 0x1a, 0x79, 0x02, 0xa8,
- 0x01, 0x23, 0xfe, 0xf7, 0xd9, 0xfe, 0x76, 0x19, 0x64, 0x1b, 0xe4, 0xd1,
+ 0x00, 0xf0, 0xce, 0xf8, 0x6b, 0x46, 0x40, 0x21, 0x1a, 0x79, 0x02, 0xa8,
+ 0x01, 0x23, 0xfe, 0xf7, 0xfb, 0xfe, 0x76, 0x19, 0x64, 0x1b, 0xe4, 0xd1,
0x13, 0xb0, 0xf0, 0xbd, 0x03, 0x00, 0x10, 0xb5, 0x47, 0x33, 0x1a, 0x78,
0x04, 0x31, 0x00, 0x23, 0x48, 0x30, 0xff, 0xf7, 0xd4, 0xff, 0x10, 0xbd,
0xf7, 0xb5, 0x04, 0x00, 0xff, 0xf7, 0xa2, 0xff, 0x00, 0x28, 0x42, 0xd0,
0x23, 0x00, 0x48, 0x33, 0x9a, 0x88, 0xa0, 0x6c, 0x1a, 0x80, 0x00, 0x22,
- 0x01, 0x38, 0x5a, 0x80, 0x08, 0x28, 0x67, 0xd8, 0x00, 0xf0, 0x9e, 0xf8,
- 0x15, 0x05, 0x23, 0x27, 0x25, 0x2a, 0x48, 0x3f, 0x38, 0x00, 0x32, 0x4e,
- 0x30, 0x00, 0x00, 0xf0, 0xb0, 0xf8, 0x05, 0x00, 0x20, 0x00, 0x31, 0x00,
- 0x2a, 0x00, 0x4c, 0x30, 0x00, 0xf0, 0x98, 0xf8, 0x29, 0x00, 0x20, 0x00,
+ 0x01, 0x38, 0x5a, 0x80, 0x08, 0x28, 0x65, 0xd8, 0x00, 0xf0, 0x9c, 0xf8,
+ 0x15, 0x05, 0x23, 0x27, 0x25, 0x2a, 0x48, 0x3f, 0x38, 0x00, 0x31, 0x4e,
+ 0x30, 0x00, 0x00, 0xf0, 0xae, 0xf8, 0x05, 0x00, 0x20, 0x00, 0x31, 0x00,
+ 0x2a, 0x00, 0x4c, 0x30, 0x00, 0xf0, 0x96, 0xf8, 0x29, 0x00, 0x20, 0x00,
0xff, 0xf7, 0xd0, 0xff, 0x21, 0xe0, 0x01, 0x23, 0xe3, 0x64, 0xff, 0x33,
0x23, 0x65, 0x80, 0x23, 0xdb, 0x00, 0x63, 0x65, 0xa0, 0x23, 0x5b, 0x00,
- 0xa3, 0x65, 0x26, 0x4b, 0x14, 0x21, 0xe3, 0x65, 0xed, 0xe7, 0xfe, 0xf7,
- 0xd5, 0xfc, 0x00, 0x21, 0xe9, 0xe7, 0xfe, 0xf7, 0x05, 0xfd, 0xfa, 0xe7,
+ 0xa3, 0x65, 0x25, 0x4b, 0x14, 0x21, 0xe3, 0x65, 0xed, 0xe7, 0xfe, 0xf7,
+ 0xf7, 0xfc, 0x00, 0x21, 0xe9, 0xe7, 0xfe, 0xf7, 0x27, 0xfd, 0xfa, 0xe7,
0x20, 0x00, 0x00, 0x21, 0xff, 0xf7, 0xb6, 0xff, 0x80, 0x23, 0x20, 0x6d,
0x9b, 0x01, 0x98, 0x42, 0x03, 0xd3, 0x21, 0x00, 0x54, 0x31, 0xfe, 0xf7,
- 0x7d, 0xfb, 0xf7, 0xbd, 0x21, 0x00, 0x62, 0x6d, 0x20, 0x6d, 0x58, 0x31,
- 0xfe, 0xf7, 0x41, 0xfb, 0xe5, 0xe7, 0x20, 0x00, 0x65, 0x6d, 0x21, 0x6d,
- 0x2a, 0x00, 0x4c, 0x30, 0xfe, 0xf7, 0x39, 0xfb, 0xa9, 0x00, 0xc8, 0xe7,
- 0x00, 0x26, 0x63, 0x6d, 0x01, 0x93, 0x23, 0x6d, 0x5d, 0x1c, 0xff, 0x35,
- 0x01, 0x9b, 0xb3, 0x42, 0x01, 0xdc, 0x59, 0x00, 0xbd, 0xe7, 0x00, 0x21,
- 0x6f, 0x1e, 0xff, 0x3f, 0x3b, 0x00, 0x18, 0x78, 0xfe, 0xf7, 0x44, 0xfc,
- 0x01, 0x37, 0x01, 0x00, 0xaf, 0x42, 0xf7, 0xd1, 0x23, 0x00, 0x72, 0x00,
- 0x4c, 0x33, 0x01, 0x35, 0x98, 0x52, 0x01, 0x36, 0xff, 0x35, 0xe7, 0xe7,
- 0x01, 0x22, 0x5a, 0x80, 0xbb, 0xe7, 0xc0, 0x46, 0xc8, 0x1c, 0x00, 0x00,
- 0x2f, 0x47, 0x29, 0x2c, 0x07, 0x48, 0x06, 0x22, 0x03, 0x00, 0x10, 0xb5,
- 0x47, 0x33, 0x1a, 0x70, 0xff, 0xf7, 0x78, 0xff, 0x04, 0x48, 0x07, 0x22,
- 0x03, 0x00, 0x47, 0x33, 0x1a, 0x70, 0xff, 0xf7, 0x71, 0xff, 0x10, 0xbd,
- 0xf8, 0x06, 0x00, 0x20, 0x80, 0x08, 0x00, 0x20, 0x10, 0xb5, 0xe2, 0xb0,
- 0x04, 0x00, 0xff, 0xf7, 0x43, 0xfd, 0xc4, 0x22, 0x00, 0x21, 0x68, 0x46,
- 0x52, 0x00, 0x00, 0xf0, 0x24, 0xf8, 0x47, 0x23, 0x6b, 0x44, 0x1c, 0x70,
- 0x68, 0x46, 0xff, 0xf7, 0x5b, 0xff, 0xfb, 0xe7, 0x02, 0xb4, 0x71, 0x46,
- 0x49, 0x08, 0x49, 0x00, 0x09, 0x56, 0x49, 0x00, 0x8e, 0x44, 0x02, 0xbc,
- 0x70, 0x47, 0xc0, 0x46, 0x02, 0xb4, 0x71, 0x46, 0x49, 0x08, 0x49, 0x00,
- 0x09, 0x5c, 0x49, 0x00, 0x8e, 0x44, 0x02, 0xbc, 0x70, 0x47, 0xc0, 0x46,
- 0x00, 0x23, 0x10, 0xb5, 0x9a, 0x42, 0x00, 0xd1, 0x10, 0xbd, 0xcc, 0x5c,
- 0xc4, 0x54, 0x01, 0x33, 0xf8, 0xe7, 0x03, 0x00, 0x82, 0x18, 0x93, 0x42,
- 0x00, 0xd1, 0x70, 0x47, 0x19, 0x70, 0x01, 0x33, 0xf9, 0xe7, 0x00, 0x23,
- 0xc2, 0x5c, 0x01, 0x33, 0x00, 0x2a, 0xfb, 0xd1, 0x58, 0x1e, 0x70, 0x47,
- 0x4f, 0x64, 0x64, 0x6c, 0x79, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66,
- 0x69, 0x63, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x00, 0x53,
- 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x20, 0x57, 0x61, 0x74, 0x63, 0x68, 0x20,
- 0x4d, 0x30, 0x00, 0x00, 0x0c, 0xa0, 0x80, 0x00, 0x40, 0xa0, 0x80, 0x00,
- 0x44, 0xa0, 0x80, 0x00, 0x48, 0xa0, 0x80, 0x00, 0x12, 0x01, 0x10, 0x02,
- 0xef, 0x02, 0x01, 0x40, 0x9a, 0x23, 0x1b, 0x00, 0x01, 0x42, 0x01, 0x02,
- 0x03, 0x01, 0x00, 0x00, 0x06, 0x97, 0xff, 0x09, 0x01, 0xa1, 0x01, 0x15,
- 0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x40, 0x09, 0x01, 0x81, 0x02,
- 0x95, 0x40, 0x09, 0x01, 0x91, 0x02, 0x95, 0x01, 0x09, 0x01, 0xb1, 0x02,
- 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x1b, 0x00, 0x00,
- 0x83, 0x1b, 0x00, 0x00, 0xe1, 0x03, 0x00, 0x20, 0xeb, 0x3c, 0x90, 0x55,
- 0x46, 0x32, 0x20, 0x55, 0x46, 0x32, 0x20, 0x00, 0x02, 0x01, 0x01, 0x00,
- 0x02, 0x40, 0x00, 0x7e, 0x3e, 0xf8, 0x3f, 0x00, 0x01, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x29, 0x42,
- 0x00, 0x42, 0x00, 0x57, 0x41, 0x54, 0x43, 0x48, 0x42, 0x4f, 0x4f, 0x54,
- 0x00, 0x00, 0x46, 0x41, 0x54, 0x31, 0x36, 0x20, 0x20, 0x20, 0x3c, 0x21,
- 0x64, 0x6f, 0x63, 0x74, 0x79, 0x70, 0x65, 0x20, 0x68, 0x74, 0x6d, 0x6c,
- 0x3e, 0x0a, 0x3c, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x3c, 0x62, 0x6f, 0x64,
- 0x79, 0x3e, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x72, 0x65, 0x70, 0x6c,
- 0x61, 0x63, 0x65, 0x28, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
- 0x6f, 0x64, 0x64, 0x6c, 0x79, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69,
- 0x63, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x22, 0x29, 0x3b, 0x0a, 0x3c, 0x2f,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x3c, 0x2f, 0x62, 0x6f, 0x64,
- 0x79, 0x3e, 0x3c, 0x2f, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x0a, 0x00, 0x00,
- 0x49, 0x4e, 0x46, 0x4f, 0x5f, 0x55, 0x46, 0x32, 0x54, 0x58, 0x54, 0x00,
- 0xc8, 0x1c, 0x00, 0x00, 0x49, 0x4e, 0x44, 0x45, 0x58, 0x20, 0x20, 0x20,
- 0x48, 0x54, 0x4d, 0x00, 0x2a, 0x1c, 0x00, 0x00, 0x43, 0x55, 0x52, 0x52,
- 0x45, 0x4e, 0x54, 0x20, 0x55, 0x46, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x55, 0x46, 0x32, 0x20, 0x42, 0x6f, 0x6f, 0x74, 0x6c, 0x6f, 0x61, 0x64,
- 0x65, 0x72, 0x20, 0x76, 0x33, 0x2e, 0x37, 0x2e, 0x30, 0x2d, 0x31, 0x36,
- 0x39, 0x2d, 0x67, 0x62, 0x62, 0x35, 0x34, 0x63, 0x64, 0x38, 0x20, 0x53,
- 0x46, 0x48, 0x57, 0x52, 0x4f, 0x0d, 0x0a, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
- 0x3a, 0x20, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x20, 0x57, 0x61, 0x74,
- 0x63, 0x68, 0x20, 0x4d, 0x30, 0x0d, 0x0a, 0x42, 0x6f, 0x61, 0x72, 0x64,
- 0x2d, 0x49, 0x44, 0x3a, 0x20, 0x4f, 0x53, 0x4f, 0x2d, 0x53, 0x57, 0x41,
- 0x54, 0x2d, 0x41, 0x31, 0x2d, 0x30, 0x30, 0x0d, 0x0a, 0x00, 0x00, 0x00,
- 0x00, 0x08, 0x00, 0x00, 0x3e, 0x80, 0x02, 0x00, 0x02, 0x00, 0x06, 0x00,
- 0x58, 0x0a, 0x0d, 0x00, 0x59, 0x0a, 0x0d, 0x00, 0x5a, 0x00, 0x23, 0x0a,
- 0x0d, 0x00, 0x76, 0x31, 0x2e, 0x31, 0x20, 0x5b, 0x41, 0x72, 0x64, 0x75,
- 0x69, 0x6e, 0x6f, 0x3a, 0x58, 0x59, 0x5a, 0x5d, 0x20, 0x41, 0x75, 0x67,
- 0x20, 0x31, 0x33, 0x20, 0x32, 0x30, 0x32, 0x31, 0x20, 0x31, 0x33, 0x3a,
- 0x34, 0x39, 0x3a, 0x32, 0x36, 0x0a, 0x0d, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0xc8, 0x00, 0x00, 0x05, 0x0f, 0x39, 0x00, 0x02, 0x18, 0x10, 0x05,
- 0x00, 0x38, 0xb6, 0x08, 0x34, 0xa9, 0x09, 0xa0, 0x47, 0x8b, 0xfd, 0xa0,
- 0x76, 0x88, 0x15, 0xb6, 0x65, 0x00, 0x01, 0x01, 0x00, 0x1c, 0x10, 0x05,
- 0x00, 0xdf, 0x60, 0xdd, 0xd8, 0x89, 0x45, 0xc7, 0x4c, 0x9c, 0xd2, 0x65,
- 0x9d, 0x9e, 0x64, 0x8a, 0x9f, 0x00, 0x00, 0x03, 0x06, 0xaa, 0x00, 0x02,
- 0x00, 0x00, 0x00, 0x00, 0x09, 0x02, 0x99, 0x00, 0x05, 0x01, 0x00, 0x80,
- 0xfa, 0x08, 0x0b, 0x00, 0x02, 0x02, 0x02, 0x01, 0x00, 0x09, 0x04, 0x00,
- 0x00, 0x01, 0x02, 0x02, 0x01, 0x00, 0x05, 0x24, 0x00, 0x10, 0x01, 0x04,
- 0x24, 0x02, 0x06, 0x05, 0x24, 0x06, 0x00, 0x01, 0x05, 0x24, 0x01, 0x03,
- 0x01, 0x07, 0x05, 0x83, 0x03, 0x08, 0x00, 0xff, 0x09, 0x04, 0x01, 0x00,
- 0x02, 0x0a, 0x00, 0x00, 0x00, 0x07, 0x05, 0x81, 0x02, 0x40, 0x00, 0x00,
- 0x07, 0x05, 0x02, 0x02, 0x40, 0x00, 0x00, 0x09, 0x04, 0x02, 0x00, 0x02,
- 0x08, 0x06, 0x50, 0x00, 0x07, 0x05, 0x84, 0x02, 0x40, 0x00, 0x00, 0x07,
- 0x05, 0x05, 0x02, 0x40, 0x00, 0x00, 0x09, 0x04, 0x03, 0x00, 0x02, 0x03,
- 0x00, 0x00, 0x00, 0x09, 0x21, 0x00, 0x01, 0x00, 0x01, 0x22, 0x21, 0x00,
- 0x07, 0x05, 0x86, 0x03, 0x40, 0x00, 0x01, 0x07, 0x05, 0x06, 0x03, 0x40,
- 0x00, 0x01, 0x09, 0x04, 0x04, 0x00, 0x02, 0xff, 0x2a, 0x01, 0x00, 0x07,
- 0x05, 0x87, 0x03, 0x40, 0x00, 0x01, 0x07, 0x05, 0x07, 0x03, 0x40, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x09, 0x04, 0x03, 0x00, 0x02, 0x03, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x00, 0xc2, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x06, 0xaa, 0x00, 0x08, 0x00,
- 0x02, 0x00, 0x04, 0x00, 0xa0, 0x00, 0x14, 0x00, 0x03, 0x00, 0x57, 0x49,
- 0x4e, 0x55, 0x53, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x84, 0x00, 0x04, 0x00, 0x07, 0x00, 0x2a, 0x00, 0x44, 0x00,
- 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x49, 0x00,
- 0x6e, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x61, 0x00,
- 0x63, 0x00, 0x65, 0x00, 0x47, 0x00, 0x55, 0x00, 0x49, 0x00, 0x44, 0x00,
- 0x73, 0x00, 0x00, 0x00, 0x50, 0x00, 0x7b, 0x00, 0x39, 0x00, 0x32, 0x00,
- 0x43, 0x00, 0x45, 0x00, 0x36, 0x00, 0x34, 0x00, 0x36, 0x00, 0x32, 0x00,
- 0x2d, 0x00, 0x39, 0x00, 0x43, 0x00, 0x37, 0x00, 0x37, 0x00, 0x2d, 0x00,
- 0x34, 0x00, 0x36, 0x00, 0x46, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x39, 0x00,
- 0x33, 0x00, 0x33, 0x00, 0x42, 0x00, 0x2d, 0x00, 0x33, 0x00, 0x31, 0x00,
- 0x43, 0x00, 0x42, 0x00, 0x39, 0x00, 0x43, 0x00, 0x35, 0x00, 0x42, 0x00,
- 0x42, 0x00, 0x33, 0x00, 0x42, 0x00, 0x39, 0x00, 0x7d, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x53, 0x42, 0x53, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x02, 0x02, 0x20, 0x00, 0x00, 0x00,
+ 0x95, 0xfb, 0xf7, 0xbd, 0x21, 0x00, 0x62, 0x6d, 0x20, 0x6d, 0x58, 0x31,
+ 0xfe, 0xf7, 0x59, 0xfb, 0xe5, 0xe7, 0x20, 0x00, 0x65, 0x6d, 0x21, 0x6d,
+ 0x2a, 0x00, 0x4c, 0x30, 0xfe, 0xf7, 0x51, 0xfb, 0xa9, 0x00, 0xc8, 0xe7,
+ 0x00, 0x26, 0x63, 0x6d, 0x27, 0x6d, 0x01, 0x93, 0x01, 0x9b, 0xb3, 0x42,
+ 0x01, 0xdc, 0x59, 0x00, 0xbf, 0xe7, 0x3d, 0x00, 0x00, 0x21, 0x2b, 0x00,
+ 0x18, 0x78, 0xfe, 0xf7, 0x69, 0xfc, 0x7b, 0x1c, 0x01, 0x35, 0xff, 0x33,
+ 0x01, 0x00, 0x9d, 0x42, 0xf5, 0xd1, 0x23, 0x00, 0x72, 0x00, 0x4c, 0x33,
+ 0x2f, 0x00, 0x98, 0x52, 0x01, 0x36, 0xe7, 0xe7, 0x01, 0x22, 0x5a, 0x80,
+ 0xbd, 0xe7, 0xc0, 0x46, 0x94, 0x1c, 0x00, 0x00, 0x2f, 0x47, 0x29, 0x2c,
+ 0x07, 0x48, 0x06, 0x22, 0x03, 0x00, 0x10, 0xb5, 0x47, 0x33, 0x1a, 0x70,
+ 0xff, 0xf7, 0x7a, 0xff, 0x04, 0x48, 0x07, 0x22, 0x03, 0x00, 0x47, 0x33,
+ 0x1a, 0x70, 0xff, 0xf7, 0x73, 0xff, 0x10, 0xbd, 0xcc, 0x0a, 0x00, 0x20,
+ 0x54, 0x0c, 0x00, 0x20, 0x10, 0xb5, 0xe2, 0xb0, 0x04, 0x00, 0xff, 0xf7,
+ 0x51, 0xfd, 0xc4, 0x22, 0x00, 0x21, 0x68, 0x46, 0x52, 0x00, 0x00, 0xf0,
+ 0x24, 0xf8, 0x47, 0x23, 0x6b, 0x44, 0x1c, 0x70, 0x68, 0x46, 0xff, 0xf7,
+ 0x5d, 0xff, 0xfb, 0xe7, 0x02, 0xb4, 0x71, 0x46, 0x49, 0x08, 0x49, 0x00,
+ 0x09, 0x56, 0x49, 0x00, 0x8e, 0x44, 0x02, 0xbc, 0x70, 0x47, 0xc0, 0x46,
+ 0x02, 0xb4, 0x71, 0x46, 0x49, 0x08, 0x49, 0x00, 0x09, 0x5c, 0x49, 0x00,
+ 0x8e, 0x44, 0x02, 0xbc, 0x70, 0x47, 0xc0, 0x46, 0x00, 0x23, 0x10, 0xb5,
+ 0x9a, 0x42, 0x00, 0xd1, 0x10, 0xbd, 0xcc, 0x5c, 0xc4, 0x54, 0x01, 0x33,
+ 0xf8, 0xe7, 0x03, 0x00, 0x82, 0x18, 0x93, 0x42, 0x00, 0xd1, 0x70, 0x47,
+ 0x19, 0x70, 0x01, 0x33, 0xf9, 0xe7, 0x00, 0x23, 0xc2, 0x5c, 0x01, 0x33,
+ 0x00, 0x2a, 0xfb, 0xd1, 0x58, 0x1e, 0x70, 0x47, 0x4f, 0x64, 0x64, 0x6c,
+ 0x79, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x4f,
+ 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x00, 0x53, 0x65, 0x6e, 0x73, 0x6f,
+ 0x72, 0x20, 0x57, 0x61, 0x74, 0x63, 0x68, 0x20, 0x4d, 0x30, 0x00, 0x00,
+ 0x0c, 0xa0, 0x80, 0x00, 0x40, 0xa0, 0x80, 0x00, 0x44, 0xa0, 0x80, 0x00,
+ 0x48, 0xa0, 0x80, 0x00, 0x12, 0x01, 0x10, 0x02, 0xef, 0x02, 0x01, 0x40,
+ 0x09, 0x12, 0x50, 0x21, 0x01, 0x42, 0x01, 0x02, 0x03, 0x01, 0x00, 0x00,
+ 0x06, 0x97, 0xff, 0x09, 0x01, 0xa1, 0x01, 0x15, 0x00, 0x26, 0xff, 0x00,
+ 0x75, 0x08, 0x95, 0x40, 0x09, 0x01, 0x81, 0x02, 0x95, 0x40, 0x09, 0x01,
+ 0x91, 0x02, 0x95, 0x01, 0x09, 0x01, 0xb1, 0x02, 0xc0, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x38, 0x1b, 0x00, 0x00, 0x4f, 0x1b, 0x00, 0x00,
+ 0x50, 0x06, 0x00, 0x20, 0xeb, 0x3c, 0x90, 0x55, 0x46, 0x32, 0x20, 0x55,
+ 0x46, 0x32, 0x20, 0x00, 0x02, 0x01, 0x01, 0x00, 0x02, 0x40, 0x00, 0x7e,
+ 0x3e, 0xf8, 0x3f, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x29, 0x42, 0x00, 0x42, 0x00, 0x57,
+ 0x41, 0x54, 0x43, 0x48, 0x42, 0x4f, 0x4f, 0x54, 0x00, 0x00, 0x46, 0x41,
+ 0x54, 0x31, 0x36, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x64, 0x6f, 0x63, 0x74,
+ 0x79, 0x70, 0x65, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x0a, 0x3c, 0x68,
+ 0x74, 0x6d, 0x6c, 0x3e, 0x3c, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x3c, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x28,
+ 0x22, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x6f, 0x64, 0x64, 0x6c,
+ 0x79, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x2e, 0x6f, 0x72,
+ 0x67, 0x2f, 0x22, 0x29, 0x3b, 0x0a, 0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x3e, 0x3c, 0x2f, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x3c, 0x2f,
+ 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x0a, 0x00, 0x00, 0x49, 0x4e, 0x46, 0x4f,
+ 0x5f, 0x55, 0x46, 0x32, 0x54, 0x58, 0x54, 0x00, 0x94, 0x1c, 0x00, 0x00,
+ 0x49, 0x4e, 0x44, 0x45, 0x58, 0x20, 0x20, 0x20, 0x48, 0x54, 0x4d, 0x00,
+ 0xf6, 0x1b, 0x00, 0x00, 0x43, 0x55, 0x52, 0x52, 0x45, 0x4e, 0x54, 0x20,
+ 0x55, 0x46, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x46, 0x32, 0x20,
+ 0x42, 0x6f, 0x6f, 0x74, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x20, 0x76,
+ 0x33, 0x2e, 0x37, 0x2e, 0x30, 0x2d, 0x31, 0x37, 0x30, 0x2d, 0x67, 0x66,
+ 0x39, 0x32, 0x65, 0x37, 0x64, 0x63, 0x20, 0x53, 0x46, 0x48, 0x57, 0x52,
+ 0x4f, 0x0d, 0x0a, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x3a, 0x20, 0x53, 0x65,
+ 0x6e, 0x73, 0x6f, 0x72, 0x20, 0x57, 0x61, 0x74, 0x63, 0x68, 0x20, 0x4d,
+ 0x30, 0x0d, 0x0a, 0x42, 0x6f, 0x61, 0x72, 0x64, 0x2d, 0x49, 0x44, 0x3a,
+ 0x20, 0x4f, 0x53, 0x4f, 0x2d, 0x53, 0x57, 0x41, 0x54, 0x2d, 0x41, 0x31,
+ 0x0d, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x3e, 0x80, 0x02,
+ 0x00, 0x02, 0x00, 0x06, 0x00, 0x58, 0x0a, 0x0d, 0x00, 0x59, 0x0a, 0x0d,
+ 0x00, 0x5a, 0x00, 0x23, 0x0a, 0x0d, 0x00, 0x76, 0x31, 0x2e, 0x31, 0x20,
+ 0x5b, 0x41, 0x72, 0x64, 0x75, 0x69, 0x6e, 0x6f, 0x3a, 0x58, 0x59, 0x5a,
+ 0x5d, 0x20, 0x4e, 0x6f, 0x76, 0x20, 0x31, 0x31, 0x20, 0x32, 0x30, 0x32,
+ 0x31, 0x20, 0x30, 0x36, 0x3a, 0x33, 0x37, 0x3a, 0x30, 0x35, 0x0a, 0x0d,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0xc8, 0x00, 0x00,
+ 0x05, 0x0f, 0x39, 0x00, 0x02, 0x18, 0x10, 0x05, 0x00, 0x38, 0xb6, 0x08,
+ 0x34, 0xa9, 0x09, 0xa0, 0x47, 0x8b, 0xfd, 0xa0, 0x76, 0x88, 0x15, 0xb6,
+ 0x65, 0x00, 0x01, 0x01, 0x00, 0x1c, 0x10, 0x05, 0x00, 0xdf, 0x60, 0xdd,
+ 0xd8, 0x89, 0x45, 0xc7, 0x4c, 0x9c, 0xd2, 0x65, 0x9d, 0x9e, 0x64, 0x8a,
+ 0x9f, 0x00, 0x00, 0x03, 0x06, 0xaa, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
+ 0x09, 0x02, 0x99, 0x00, 0x05, 0x01, 0x00, 0x80, 0xfa, 0x08, 0x0b, 0x00,
+ 0x02, 0x02, 0x02, 0x01, 0x00, 0x09, 0x04, 0x00, 0x00, 0x01, 0x02, 0x02,
+ 0x01, 0x00, 0x05, 0x24, 0x00, 0x10, 0x01, 0x04, 0x24, 0x02, 0x06, 0x05,
+ 0x24, 0x06, 0x00, 0x01, 0x05, 0x24, 0x01, 0x03, 0x01, 0x07, 0x05, 0x83,
+ 0x03, 0x08, 0x00, 0xff, 0x09, 0x04, 0x01, 0x00, 0x02, 0x0a, 0x00, 0x00,
+ 0x00, 0x07, 0x05, 0x81, 0x02, 0x40, 0x00, 0x00, 0x07, 0x05, 0x02, 0x02,
+ 0x40, 0x00, 0x00, 0x09, 0x04, 0x02, 0x00, 0x02, 0x08, 0x06, 0x50, 0x00,
+ 0x07, 0x05, 0x84, 0x02, 0x40, 0x00, 0x00, 0x07, 0x05, 0x05, 0x02, 0x40,
+ 0x00, 0x00, 0x09, 0x04, 0x03, 0x00, 0x02, 0x03, 0x00, 0x00, 0x00, 0x09,
+ 0x21, 0x00, 0x01, 0x00, 0x01, 0x22, 0x21, 0x00, 0x07, 0x05, 0x86, 0x03,
+ 0x40, 0x00, 0x01, 0x07, 0x05, 0x06, 0x03, 0x40, 0x00, 0x01, 0x09, 0x04,
+ 0x04, 0x00, 0x02, 0xff, 0x2a, 0x01, 0x00, 0x07, 0x05, 0x87, 0x03, 0x40,
+ 0x00, 0x01, 0x07, 0x05, 0x07, 0x03, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x09, 0x04, 0x03, 0x00, 0x02, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x00, 0xc2, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x06, 0xaa, 0x00, 0x08, 0x00, 0x02, 0x00, 0x04, 0x00,
+ 0xa0, 0x00, 0x14, 0x00, 0x03, 0x00, 0x57, 0x49, 0x4e, 0x55, 0x53, 0x42,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00,
+ 0x04, 0x00, 0x07, 0x00, 0x2a, 0x00, 0x44, 0x00, 0x65, 0x00, 0x76, 0x00,
+ 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x74, 0x00,
+ 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00,
+ 0x47, 0x00, 0x55, 0x00, 0x49, 0x00, 0x44, 0x00, 0x73, 0x00, 0x00, 0x00,
+ 0x50, 0x00, 0x7b, 0x00, 0x39, 0x00, 0x32, 0x00, 0x43, 0x00, 0x45, 0x00,
+ 0x36, 0x00, 0x34, 0x00, 0x36, 0x00, 0x32, 0x00, 0x2d, 0x00, 0x39, 0x00,
+ 0x43, 0x00, 0x37, 0x00, 0x37, 0x00, 0x2d, 0x00, 0x34, 0x00, 0x36, 0x00,
+ 0x46, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x39, 0x00, 0x33, 0x00, 0x33, 0x00,
+ 0x42, 0x00, 0x2d, 0x00, 0x33, 0x00, 0x31, 0x00, 0x43, 0x00, 0x42, 0x00,
+ 0x39, 0x00, 0x43, 0x00, 0x35, 0x00, 0x42, 0x00, 0x42, 0x00, 0x33, 0x00,
+ 0x42, 0x00, 0x39, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x42,
+ 0x53, 0x55, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x80, 0x02, 0x02, 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, 0x31, 0x2e, 0x30, 0x30,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x31, 0x2e, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
@@ -683,8 +679,12 @@ static const uint8_t binfile[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf1, 0x1a, 0x00, 0x00,
- 0xa1, 0x15, 0x00, 0x00, 0xc8, 0x1c, 0x00, 0x00
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xbd, 0x1a, 0x00, 0x00,
+ 0x89, 0x15, 0x00, 0x00, 0x94, 0x1c, 0x00, 0x00
};
#endif
diff --git a/watch-library/watch/watch_adc.c b/watch-library/watch/watch_adc.c
index 90980a88..4aff86e6 100644
--- a/watch-library/watch/watch_adc.c
+++ b/watch-library/watch/watch_adc.c
@@ -138,6 +138,35 @@ void watch_set_analog_sampling_length(uint8_t cycles) {
_watch_sync_adc();
}
+void watch_set_analog_reference_voltage(watch_adc_reference_voltage reference) {
+ ADC->CTRLA.bit.ENABLE = 0;
+
+ if (reference == ADC_REFERENCE_INTREF) SUPC->VREF.bit.VREFOE = 1;
+ else SUPC->VREF.bit.VREFOE = 0;
+
+ ADC->REFCTRL.bit.REFSEL = reference;
+ ADC->CTRLA.bit.ENABLE = 1;
+ _watch_sync_adc();
+ // throw away one measurement after reference change (the channel doesn't matter).
+ _watch_get_analog_value(ADC_INPUTCTRL_MUXPOS_SCALEDCOREVCC);
+}
+
+uint16_t watch_get_vcc_voltage() {
+ // stash the previous reference so we can restore it when we're done.
+ uint8_t oldref = ADC->REFCTRL.bit.REFSEL;
+
+ // if we weren't already using the internal reference voltage, select it now.
+ if (oldref != ADC_REFERENCE_INTREF) watch_set_analog_reference_voltage(ADC_REFERENCE_INTREF);
+
+ // get the data
+ uint32_t raw_val = _watch_get_analog_value(ADC_INPUTCTRL_MUXPOS_SCALEDIOVCC_Val);
+
+ // restore the old reference, if needed.
+ if (oldref != ADC_REFERENCE_INTREF) watch_set_analog_reference_voltage(oldref);
+
+ return (uint16_t)((raw_val * 1000) / (1024 * 1 << ADC->AVGCTRL.bit.SAMPLENUM));
+}
+
inline void watch_disable_analog_input(const uint8_t pin) {
gpio_set_pin_function(pin, GPIO_PIN_FUNCTION_OFF);
}
diff --git a/watch-library/watch/watch_adc.h b/watch-library/watch/watch_adc.h
index c9b6ad2a..a4f9edad 100644
--- a/watch-library/watch/watch_adc.h
+++ b/watch-library/watch/watch_adc.h
@@ -94,6 +94,53 @@ void watch_set_analog_num_samples(uint16_t samples);
**/
void watch_set_analog_sampling_length(uint8_t cycles);
+typedef enum {
+ ADC_REFERENCE_INTREF = ADC_REFCTRL_REFSEL_INTREF_Val,
+ ADC_REFERENCE_VCC_DIV1POINT6 = ADC_REFCTRL_REFSEL_INTVCC0_Val,
+ ADC_REFERENCE_VCC_DIV2 = ADC_REFCTRL_REFSEL_INTVCC1_Val,
+ ADC_REFERENCE_VCC = ADC_REFCTRL_REFSEL_INTVCC2_Val,
+} watch_adc_reference_voltage;
+
+
+/** @brief Selects the reference voltage to use for analog readings. Default is ADC_REFERENCE_VCC.
+ * @param reference One of ADC_REFERENCE_VCC, ADC_REFERENCE_VCC_DIV1POINT6, ADC_REFERENCE_VCC_DIV2
+ * or ADC_REFERENCE_INTREF.
+ * @details In order to turn an analog voltage into a 16-bit integer, the ADC needs to compare the
+ * measured voltage to a reference point. For example, if you were powering the watch with
+ * VCC == 3.0V and you had two 10K resistors connected in series from 3V to GND, you could
+ * expect to get 3 volts when you measure the top of the voltage divider, 0 volts at the
+ * bottom, and 1.5 volts in the middle. If you read these values uising a reference voltage
+ * of ADC_REFERENCE_VCC, the top value would be about 65535, the bottom about 0, and the
+ * middle about 32768. However! If we used ADC_REFERENCE_VCC_DIV2 as our reference, we would
+ * expect to get 65535 both at the top and the middle, because the largest value the ADC can
+ * measure in this configutation is 1.5V (VCC / 2).
+ *
+ * By changing the reference voltage from ADC_REFERENCE_VCC to ADC_REFERENCE_VCC_DIV1POINT6
+ * or ADC_REFERENCE_VCC_DIV2, you can get more resolution when measuring small voltages (i.e.
+ * a phototransistor circuit in low light).
+ *
+ * There is also a special reference voltage called ADC_REFERENCE_INTREF. The SAM L22's
+ * Supply Controller provides a selectable voltage reference (by default, 1.024 V) that you
+ * can select as a reference voltage for ADC conversions. Unlike the three references we
+ * talked about in the last paragraph, this reference voltage does not depend on VCC, which
+ * makes it very useful for measuring the battery voltage (since you can't really compare
+ * VCC to itself). You can change the INTREF voltage to 2.048 or 4.096 V by poking at the
+ * supply controller's VREF register, but the watch library does not support this use case.
+ **/
+void watch_set_analog_reference_voltage(watch_adc_reference_voltage reference);
+
+/** @brief Returns the voltage of the VCC supply in millivolts (i.e. 3000 mV == 3.0 V). If running on
+ * a coin cell, this will be the battery voltage.
+ * @details Unlike other ADC functions, this function does not return a raw value from the ADC, but
+ * rather scales it to an actual number of millivolts. This is because the ADC doesn't let
+ * us measure VCC per se; it instead lets us measure VCC / 4, and we choose to measure it
+ * against the internal reference voltage of 1.024 V. In short, the ADC gives us a number
+ * that's complicated to deal with, so we just turn it into a useful number for you :)
+ * @note This function depends on INTREF being 1.024V. If you have changed it by poking at the supply
+ * controller's VREF.SEL bits, this function will return inaccurate values.
+ */
+uint16_t watch_get_vcc_voltage();
+
/** @brief Disables the analog circuitry on the selected pin.
* @param pin One of pins A0-A4.
*/